diff --git a/winutil-test.ps1 b/winutil-test.ps1
index 25348b98..9f50a2de 100644
--- a/winutil-test.ps1
+++ b/winutil-test.ps1
@@ -1,1748 +1,255 @@
<#
.NOTES
- Author : Chris Titus @christitustech
- GitHub : https://github.com/ChrisTitusTech
- Version 0.0.2
- Muilti-Thread and Runspaces addition
+ Author : @DeveloperDurp
+ GitHub : https://github.com/DeveloperDurp
+ Version 0.0.1
#>
-
-#CREATE HASHTABLE AND RUNSPACE FOR GUI
-$syncHash = [hashtable]::Synchronized(@{})
-$newRunspace =[runspacefactory]::CreateRunspace()
-$newRunspace.ApartmentState = "STA"
-$newRunspace.ThreadOptions = "ReuseThread"
-$newRunspace.Open()
-$newRunspace.SessionStateProxy.SetVariable("syncHash",$syncHash)
-$code = {
-
- #Build the GUI
- [xml]$xaml = @"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+#region Header
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ #region Load .Net framwork
-
-
-
+ [Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null
+ Add-Type -AssemblyName System.Windows.Forms
+ Add-Type -AssemblyName PresentationFramework
+ [System.Windows.Forms.Application]::EnableVisualStyles()
-
-
-
-
-
-
+ #endregion Load .Net framework
-
-
-
-
+ #Hiding Console Window
+ <#
+ Add-Type -Name Window -Namespace Console -MemberDefinition '
+ [DllImport("Kernel32.dll")]
+ public static extern IntPtr GetConsoleWindow();
-
-
-
-
-
-
+ [DllImport("user32.dll")]
+ public static extern bool ShowWindow(IntPtr hWnd, Int32 nCmdShow);
+ '
+ $consolePtr = [Console.Window]::GetConsoleWindow()
+ [Console.Window]::ShowWindow($consolePtr, 0) > $Null
+ #>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+#endregion Header
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+#region Functions
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ #Instead of running the whole form in a run space I like to have it call the additional runspaces as
+ #I have found additional complexity when running forms outside of the main thread
+ function Invoke-Button {
+ Param ([string]$Button)
+ Switch -Wildcard ($Button){
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-"@
-
-$inputXML = $inputXML -replace 'mc:Ignorable="d"','' -replace "x:N",'N' -replace '^
- Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
+ "*InstallProgram_Button*"{Invoke-Runspace $InstallScript}
}
-
-#===========================================================================
-# Store Form Objects In PowerShell
-#===========================================================================
-
-$xaml.SelectNodes("//*[@Name]") | %{Set-Variable -Name "$syncHash.$($_.Name)" -Value $syncHash.FindName($_.Name)}
-
-#===========================================================================
-# Function for Updating GUI elements
-#===========================================================================
-
-Function Update-Window {
- Param (
- $Control,
- $Property,
- $Value,
- [switch]$AppendContent
- )
-
- # This is kind of a hack, there may be a better way to do this
- If ($Property -eq "Close") {
- $syncHash.Window.Dispatcher.invoke([action]{$syncHash.Window.Close()},"Normal")
- Return
- }
-
- # This updates the control based on the parameters passed to the function
- $syncHash.$Control.Dispatcher.Invoke([action]{
- # This bit is only really meaningful for the TextBox control, which might be useful for logging progress steps
- If ($PSBoundParameters['AppendContent']) {
- $syncHash.$Control.AppendText($Value)
- } Else {
- $syncHash.$Control.$Property = $Value
- }
- }, "Normal")
- }
-
-
-
-#### Example of Declaring GUI elements
-#$syncHash.TextBox = $syncHash.window.FindName("Textbox")
-#$syncHash.Button = $syncHash.Window.FindName("Button")
-
-#### EAMPLE of GUI Updates using Multi-threads
-#update-window -Control ProgressBar -Property Value -Value 25
-#update-window -Control TextBox -property text -value $x -AppendContent
-#Update-Window -Control ProcesstextBlock -Property ForeGround -Value White
-#===========================================================================
-# Navigation Controls
-#===========================================================================
-
-$syncHash.Tab1BT.Add_Click({
- $syncHash.TabNav.Items[0].IsSelected = $true
- $syncHash.TabNav.Items[1].IsSelected = $false
- $syncHash.TabNav.Items[2].IsSelected = $false
- $syncHash.TabNav.Items[3].IsSelected = $false
-})
-$syncHash.Tab2BT.Add_Click({
- $syncHash.TabNav.Items[0].IsSelected = $false
- $syncHash.TabNav.Items[1].IsSelected = $true
- $syncHash.TabNav.Items[2].IsSelected = $false
- $syncHash.TabNav.Items[3].IsSelected = $false
- })
-$syncHash.Tab3BT.Add_Click({
- $syncHash.TabNav.Items[0].IsSelected = $false
- $syncHash.TabNav.Items[1].IsSelected = $false
- $syncHash.TabNav.Items[2].IsSelected = $true
- $syncHash.TabNav.Items[3].IsSelected = $false
- })
-$syncHash.Tab4BT.Add_Click({
- $syncHash.TabNav.Items[0].IsSelected = $false
- $syncHash.TabNav.Items[1].IsSelected = $false
- $syncHash.TabNav.Items[2].IsSelected = $false
- $syncHash.TabNav.Items[3].IsSelected = $true
- })
-
-#===========================================================================
-# Install Tab1
-#===========================================================================
-$syncHash.install.Add_Click({
- $wingetinstall = New-Object System.Collections.Generic.List[System.Object]
- If ( $syncHash.Installadobe.IsChecked -eq $true ) {
- $wingetinstall.Add("Adobe.Acrobat.Reader.64-bit")
- $syncHash.Installadobe.IsChecked = $false
- }
- If ( $syncHash.Installadvancedip.IsChecked -eq $true ) {
- $wingetinstall.Add("Famatech.AdvancedIPScanner")
- $syncHash.Installadvancedip.IsChecked = $false
- }
- If ( $syncHash.Installatom.IsChecked -eq $true ) {
- $wingetinstall.Add("GitHub.Atom")
- $syncHash.Installatom.IsChecked = $false
- }
- If ( $syncHash.Installaudacity.IsChecked -eq $true ) {
- $wingetinstall.Add("Audacity.Audacity")
- $syncHash.Installaudacity.IsChecked = $false
- }
- If ( $syncHash.Installautohotkey.IsChecked -eq $true ) {
- $wingetinstall.Add("Lexikos.AutoHotkey")
- $syncHash.Installautohotkey.IsChecked = $false
- }
- If ( $syncHash.Installbrave.IsChecked -eq $true ) {
- $wingetinstall.Add("BraveSoftware.BraveBrowser")
- $syncHash.Installbrave.IsChecked = $false
- }
- If ( $syncHash.Installchrome.IsChecked -eq $true ) {
- $wingetinstall.Add("Google.Chrome")
- $syncHash.Installchrome.IsChecked = $false
- }
- If ( $syncHash.Installdiscord.IsChecked -eq $true ) {
- $wingetinstall.Add("Discord.Discord")
- $syncHash.Installdiscord.IsChecked = $false
- }
- If ( $syncHash.Installesearch.IsChecked -eq $true ) {
- $wingetinstall.Add("voidtools.Everything --source winget")
- $syncHash.Installesearch.IsChecked = $false
- }
- If ( $syncHash.Installetcher.IsChecked -eq $true ) {
- $wingetinstall.Add("Balena.Etcher")
- $syncHash.Installetcher.IsChecked = $false
- }
- If ( $syncHash.Installfirefox.IsChecked -eq $true ) {
- $wingetinstall.Add("Mozilla.Firefox")
- $syncHash.Installfirefox.IsChecked = $false
- }
- If ( $syncHash.Installgimp.IsChecked -eq $true ) {
- $wingetinstall.Add("GIMP.GIMP")
- $syncHash.Installgimp.IsChecked = $false
- }
- If ( $syncHash.Installgithubdesktop.IsChecked -eq $true ) {
- $wingetinstall.Add("Git.Git")
- $wingetinstall.Add("GitHub.GitHubDesktop")
- $syncHash.Installgithubdesktop.IsChecked = $false
- }
- If ( $syncHash.Installimageglass.IsChecked -eq $true ) {
- $wingetinstall.Add("DuongDieuPhap.ImageGlass")
- $syncHash.Installimageglass.IsChecked = $false
- }
- If ( $syncHash.Installjava8.IsChecked -eq $true ) {
- $wingetinstall.Add("AdoptOpenJDK.OpenJDK.8")
- $syncHash.Installjava8.IsChecked = $false
- }
- If ( $syncHash.Installjava16.IsChecked -eq $true ) {
- $wingetinstall.Add("AdoptOpenJDK.OpenJDK.16")
- $syncHash.Installjava16.IsChecked = $false
- }
- If ( $syncHash.Installjava18.IsChecked -eq $true ) {
- $wingetinstall.Add("Oracle.JDK.18")
- $syncHash.Installjava18.IsChecked = $false
- }
- If ( $syncHash.Installjetbrains.IsChecked -eq $true ) {
- $wingetinstall.Add("JetBrains.Toolbox")
- $syncHash.Installjetbrains.IsChecked = $false
- }
-
- If ( $syncHash.Installmpc.IsChecked -eq $true ) {
- $wingetinstall.Add("clsid2.mpc-hc")
- $syncHash.Installmpc.IsChecked = $false
- }
- If ( $syncHash.Installnodejs.IsChecked -eq $true ) {
- $wingetinstall.Add("OpenJS.NodeJS")
- $syncHash.Installnodejs.IsChecked = $false
- }
- If ( $syncHash.Installnodejslts.IsChecked -eq $true ) {
- $wingetinstall.Add("OpenJS.NodeJS.LTS")
- $syncHash.Installnodejslts.IsChecked = $false
- }
- If ( $syncHash.Installnotepadplus.IsChecked -eq $true ) {
- $wingetinstall.Add("Notepad++.Notepad++")
- $syncHash.Installnotepadplus.IsChecked = $false
- }
- If ( $syncHash.Installpowertoys.IsChecked -eq $true ) {
- $wingetinstall.Add("Microsoft.PowerToys")
- $syncHash.Installpowertoys.IsChecked = $false
- }
- If ( $syncHash.Installputty.IsChecked -eq $true ) {
- $wingetinstall.Add("PuTTY.PuTTY")
- $syncHash.Installputty.IsChecked = $false
- }
- If ( $syncHash.Installpython3.IsChecked -eq $true ) {
- $wingetinstall.Add("Python.Python.3")
- $syncHash.Installpython3.IsChecked = $false
- }
- If ( $syncHash.Installsevenzip.IsChecked -eq $true ) {
- $wingetinstall.Add("7zip.7zip")
- $syncHash.Installsevenzip.IsChecked = $false
- }
- If ( $syncHash.Installsharex.IsChecked -eq $true ) {
- $wingetinstall.Add("ShareX.ShareX")
- $syncHash.Installsharex.IsChecked = $false
- }
- If ( $syncHash.Installsublime.IsChecked -eq $true ) {
- $wingetinstall.Add("SublimeHQ.SublimeText.4")
- $syncHash.Installsublime.IsChecked = $false
- }
- If ( $syncHash.Installsumatra.IsChecked -eq $true ) {
- $wingetinstall.Add("SumatraPDF.SumatraPDF")
- $syncHash.Installsumatra.IsChecked = $false
- }
- If ( $syncHash.Installterminal.IsChecked -eq $true ) {
- $wingetinstall.Add("Microsoft.WindowsTerminal")
- $syncHash.Installterminal.IsChecked = $false
- }
- If ( $syncHash.Installttaskbar.IsChecked -eq $true ) {
- $wingetinstall.Add("TranslucentTB.TranslucentTB")
- $syncHash.Installttaskbar.IsChecked = $false
- }
- If ( $syncHash.Installvlc.IsChecked -eq $true ) {
- $wingetinstall.Add("VideoLAN.VLC")
- $syncHash.Installvlc.IsChecked = $false
- }
- If ( $syncHash.Installvscode.IsChecked -eq $true ) {
- $wingetinstall.Add("Git.Git")
- $wingetinstall.Add("Microsoft.VisualStudioCode --source winget")
- $syncHash.Installvscode.IsChecked = $false
- }
- If ( $syncHash.Installvscodium.IsChecked -eq $true ) {
- $wingetinstall.Add("Git.Git")
- $wingetinstall.Add("VSCodium.VSCodium")
- $syncHash.Installvscodium.IsChecked = $false
- }
- If ( $syncHash.Installwinscp.IsChecked -eq $true ) {
- $wingetinstall.Add("WinSCP.WinSCP")
- $syncHash.Installputty.IsChecked = $false
- }
- If ( $syncHash.Installanydesk.IsChecked -eq $true ) {
- $wingetinstall.Add("AnyDeskSoftwareGmbH.AnyDesk")
- $syncHash.Installanydesk.IsChecked = $false
- }
- If ( $syncHash.Installbitwarden.IsChecked -eq $true ) {
- $wingetinstall.Add("Bitwarden.Bitwarden")
- $syncHash.Installbitwarden.IsChecked = $false
- }
- If ( $syncHash.Installblender.IsChecked -eq $true ) {
- $wingetinstall.Add("BlenderFoundation.Blender")
- $syncHash.Installblender.IsChecked = $false
- }
- If ( $syncHash.Installchromium.IsChecked -eq $true ) {
- $wingetinstall.Add("eloston.ungoogled-chromium")
- $syncHash.Installchromium.IsChecked = $false
- }
- If ( $syncHash.Installcpuz.IsChecked -eq $true ) {
- $wingetinstall.Add("CPUID.CPU-Z")
- $syncHash.Installcpuz.IsChecked = $false
- }
- If ( $syncHash.Installeartrumpet.IsChecked -eq $true ) {
- $wingetinstall.Add("File-New-Project.EarTrumpet")
- $syncHash.Installeartrumpet.IsChecked = $false
- }
- If ( $syncHash.Installepicgames.IsChecked -eq $true ) {
- $wingetinstall.Add("EpicGames.EpicGamesLauncher")
- $syncHash.Installepicgames.IsChecked = $false
- }
- If ( $syncHash.Installflameshot.IsChecked -eq $true ) {
- $wingetinstall.Add("Flameshot.Flameshot")
- $syncHash.Installflameshot.IsChecked = $false
- }
- If ( $syncHash.Installfoobar.IsChecked -eq $true ) {
- $wingetinstall.Add("PeterPawlowski.foobar2000")
- $syncHash.Installfoobar.IsChecked = $false
- }
- If ( $syncHash.Installgog.IsChecked -eq $true ) {
- $wingetinstall.Add("GOG.Galaxy")
- $syncHash.Installgog.IsChecked = $false
- }
- If ( $syncHash.Installgpuz.IsChecked -eq $true ) {
- $wingetinstall.Add("TechPowerUp.GPU-Z")
- $syncHash.Installgpuz.IsChecked = $false
- }
- If ( $syncHash.Installgreenshot.IsChecked -eq $true ) {
- $wingetinstall.Add("Greenshot.Greenshot")
- $syncHash.Installgreenshot.IsChecked = $false
- }
- If ( $syncHash.Installhandbrake.IsChecked -eq $true ) {
- $wingetinstall.Add("HandBrake.HandBrake")
- $syncHash.Installhandbrake.IsChecked = $false
- }
- If ( $syncHash.Installhexchat.IsChecked -eq $true ) {
- $wingetinstall.Add("HexChat.HexChat")
- $syncHash.Installhexchat.IsChecked = $false
- }
- If ( $syncHash.Installhwinfo.IsChecked -eq $true ) {
- $wingetinstall.Add("REALiX.HWiNFO")
- $syncHash.Installhwinfo.IsChecked = $false
- }
- If ( $syncHash.Installinkscape.IsChecked -eq $true ) {
- $wingetinstall.Add("Inkscape.Inkscape")
- $syncHash.Installinkscape.IsChecked = $false
- }
- If ( $syncHash.Installkeepass.IsChecked -eq $true ) {
- $wingetinstall.Add("KeePassXCTeam.KeePassXC")
- $syncHash.Installkeepass.IsChecked = $false
- }
- If ( $syncHash.Installlibrewolf.IsChecked -eq $true ) {
- $wingetinstall.Add("LibreWolf.LibreWolf")
- $syncHash.Installlibrewolf.IsChecked = $false
- }
- If ( $syncHash.Installmalwarebytes.IsChecked -eq $true ) {
- $wingetinstall.Add("Malwarebytes.Malwarebytes")
- $syncHash.Installmalwarebytes.IsChecked = $false
- }
- If ( $syncHash.Installmatrix.IsChecked -eq $true ) {
- $wingetinstall.Add("Element.Element")
- $syncHash.Installmatrix.IsChecked = $false
- }
- If ( $syncHash.Installmremoteng.IsChecked -eq $true ) {
- $wingetinstall.Add("mRemoteNG.mRemoteNG")
- $syncHash.Installmremoteng.IsChecked = $false
- }
- If ( $syncHash.Installnvclean.IsChecked -eq $true ) {
- $wingetinstall.Add("TechPowerUp.NVCleanstall")
- $syncHash.Installnvclean.IsChecked = $false
- }
- If ( $syncHash.Installobs.IsChecked -eq $true ) {
- $wingetinstall.Add("OBSProject.OBSStudio")
- $syncHash.Installobs.IsChecked = $false
- }
- If ( $syncHash.Installobsidian.IsChecked -eq $true ) {
- $wingetinstall.Add("Obsidian.Obsidian")
- $syncHash.Installobsidian.IsChecked = $false
- }
- If ( $syncHash.Installrevo.IsChecked -eq $true ) {
- $wingetinstall.Add("RevoUninstaller.RevoUninstaller")
- $syncHash.Installrevo.IsChecked = $false
- }
- If ( $syncHash.Installrufus.IsChecked -eq $true ) {
- $wingetinstall.Add("Rufus.Rufus")
- $syncHash.Installrufus.IsChecked = $false
- }
- If ( $syncHash.Installsignal.IsChecked -eq $true ) {
- $wingetinstall.Add("OpenWhisperSystems.Signal")
- $syncHash.Installsignal.IsChecked = $false
- }
- If ( $syncHash.Installskype.IsChecked -eq $true ) {
- $wingetinstall.Add("Microsoft.Skype")
- $syncHash.Installskype.IsChecked = $false
- }
- If ( $syncHash.Installslack.IsChecked -eq $true ) {
- $wingetinstall.Add("SlackTechnologies.Slack")
- $syncHash.Installslack.IsChecked = $false
- }
- If ( $syncHash.Installspotify.IsChecked -eq $true ) {
- $wingetinstall.Add("Spotify.Spotify")
- $syncHash.Installspotify.IsChecked = $false
- }
- If ( $syncHash.Installsteam.IsChecked -eq $true ) {
- $wingetinstall.Add("Valve.Steam")
- $syncHash.Installsteam.IsChecked = $false
- }
- If ( $syncHash.Installteamviewer.IsChecked -eq $true ) {
- $wingetinstall.Add("TeamViewer.TeamViewer")
- $syncHash.Installteamviewer.IsChecked = $false
- }
- If ( $syncHash.Installteams.IsChecked -eq $true ) {
- $wingetinstall.Add("Microsoft.Teams")
- $syncHash.Installteams.IsChecked = $false
- }
-
- If ( $syncHash.Installtreesize.IsChecked -eq $true ) {
- $wingetinstall.Add("JAMSoftware.TreeSize.Free")
- $syncHash.Installtreesize.IsChecked = $false
- }
- If ( $syncHash.Installvisualstudio.IsChecked -eq $true ) {
- $wingetinstall.Add("Microsoft.VisualStudio.2022.Community")
- $syncHash.Installvisualstudio.IsChecked = $false
- }
- If ( $syncHash.Installvivaldi.IsChecked -eq $true ) {
- $wingetinstall.Add("VivaldiTechnologies.Vivaldi")
- $syncHash.Installvivaldi.IsChecked = $false
- }
- If ( $syncHash.Installvoicemeeter.IsChecked -eq $true ) {
- $wingetinstall.Add("VB-Audio.Voicemeeter")
- $syncHash.Installvoicemeeter.IsChecked = $false
- }
- If ( $syncHash.Installwindirstat.IsChecked -eq $true ) {
- $wingetinstall.Add("WinDirStat.WinDirStat")
- $syncHash.Installwindirstat.IsChecked = $false
- }
- If ( $syncHash.Installwireshark.IsChecked -eq $true ) {
- $wingetinstall.Add("WiresharkFoundation.Wireshark")
- $syncHash.Installwireshark.IsChecked = $false
- }
- If ( $syncHash.Installzoom.IsChecked -eq $true ) {
- $wingetinstall.Add("Zoom.Zoom")
- $syncHash.Installzoom.IsChecked = $false
- }
-
- # Install all winget programs in new window
- $wingetinstall.ToArray()
- # Define Output variable
- $wingetResult = New-Object System.Collections.Generic.List[System.Object]
- foreach ( $node in $wingetinstall )
- {
- Start-Process powershell.exe -Verb RunAs -ArgumentList "-command winget install -e --accept-source-agreements --accept-package-agreements --silent $node | Out-Host" -Wait -WindowStyle Maximized
- $wingetResult.Add("Installed $node")
- }
- $wingetResult.ToArray()
- $wingetResult | % { $_ } | Out-Host
- $ButtonType = [System.Windows.MessageBoxButton]::OK
-
- $MessageboxTitle = "Installed Programs "
- $Messageboxbody = ("Done")
-
- $MEssageIcon = [System.Windows.MessageBoxImage]::Information
-
- [System.Windows.MessageBox]::Show($Messageboxbody,$MessageboxTitle,$ButtonType,$messageicon)
-
-})
-
-$syncHash.InstallUpgrade.Add_Click({
- Start-Process powershell.exe -Verb RunAs -ArgumentList "-command winget upgrade --all | Out-Host" -Wait -WindowStyle Maximized
- $ButtonType = [System.Windows.MessageBoxButton]::OK
-
- $MessageboxTitle = "Installed Programs "
- $Messageboxbody = ("Done")
-
- $MEssageIcon = [System.Windows.MessageBoxImage]::Information
-
- [System.Windows.MessageBox]::Show($Messageboxbody,$MessageboxTitle,$ButtonType,$messageicon)
-})
-
-#===========================================================================
-# Tab 2 - Tweaks Buttons
-#===========================================================================
-$syncHash.desktop.Add_Click({
-
- $syncHash.EssTweaksAH.IsChecked = $true
- $syncHash.EssTweaksDeBloat.IsChecked = $false
- $syncHash.EssTweaksDVR.IsChecked = $true
- $syncHash.EssTweaksHiber.IsChecked = $true
- $syncHash.EssTweaksHome.IsChecked = $true
- $syncHash.EssTweaksLoc.IsChecked = $true
- $syncHash.EssTweaksOO.IsChecked = $true
- $syncHash.EssTweaksRP.IsChecked = $true
- $syncHash.EssTweaksServices.IsChecked = $true
- $syncHash.EssTweaksStorage.IsChecked = $true
- $syncHash.EssTweaksTele.IsChecked = $true
- $syncHash.EssTweaksWifi.IsChecked = $true
- $syncHash.MiscTweaksPower.IsChecked = $true
- $syncHash.MiscTweaksNum.IsChecked = $true
- $syncHash.MiscTweaksLapPower.IsChecked = $false
- $syncHash.MiscTweaksLapNum.IsChecked = $false
-})
-
-$syncHash.laptop.Add_Click({
-
- $syncHash.EssTweaksAH.IsChecked = $true
- $syncHash.EssTweaksDeBloat.IsChecked = $false
- $syncHash.EssTweaksDVR.IsChecked = $true
- $syncHash.EssTweaksHiber.IsChecked = $false
- $syncHash.EssTweaksHome.IsChecked = $true
- $syncHash.EssTweaksLoc.IsChecked = $true
- $syncHash.EssTweaksOO.IsChecked = $true
- $syncHash.EssTweaksRP.IsChecked = $true
- $syncHash.EssTweaksServices.IsChecked = $true
- $syncHash.EssTweaksStorage.IsChecked = $true
- $syncHash.EssTweaksTele.IsChecked = $true
- $syncHash.EssTweaksWifi.IsChecked = $true
- $syncHash.MiscTweaksLapPower.IsChecked = $true
- $syncHash.MiscTweaksLapNum.IsChecked = $true
- $syncHash.MiscTweaksPower.IsChecked = $false
- $syncHash.MiscTweaksNum.IsChecked = $false
-})
-
-$syncHash.minimal.Add_Click({
-
- $syncHash.EssTweaksAH.IsChecked = $false
- $syncHash.EssTweaksDeBloat.IsChecked = $false
- $syncHash.EssTweaksDVR.IsChecked = $false
- $syncHash.EssTweaksHiber.IsChecked = $false
- $syncHash.EssTweaksHome.IsChecked = $true
- $syncHash.EssTweaksLoc.IsChecked = $false
- $syncHash.EssTweaksOO.IsChecked = $true
- $syncHash.EssTweaksRP.IsChecked = $true
- $syncHash.EssTweaksServices.IsChecked = $true
- $syncHash.EssTweaksStorage.IsChecked = $false
- $syncHash.EssTweaksTele.IsChecked = $true
- $syncHash.EssTweaksWifi.IsChecked = $false
- $syncHash.MiscTweaksPower.IsChecked = $false
- $syncHash.MiscTweaksNum.IsChecked = $false
- $syncHash.MiscTweaksLapPower.IsChecked = $false
- $syncHash.MiscTweaksLapNum.IsChecked = $false
-})
-
-$syncHash.tweaksbutton.Add_Click({
-
- If ( $syncHash.EssTweaksAH.IsChecked -eq $true ) {
- Write-Host "Disabling Activity History..."
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name "EnableActivityFeed" -Type DWord -Value 0
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name "PublishUserActivities" -Type DWord -Value 0
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name "UploadUserActivities" -Type DWord -Value 0
- $syncHash.EssTweaksAH.IsChecked = $false
}
- If ( $syncHash.EssTweaksDVR.IsChecked -eq $true ) {
- Set-ItemProperty -Path "HKLM:\System\GameConfigStore" -Name "GameDVR_DXGIHonorFSEWindowsCompatible" -Type Hex -Value 00000000
- Set-ItemProperty -Path "HKLM:\System\GameConfigStore" -Name "GameDVR_HonorUserFSEBehaviorMode" -Type Hex -Value 00000000
- Set-ItemProperty -Path "HKLM:\System\GameConfigStore" -Name "GameDVR_EFSEFeatureFlags" -Type Hex -Value 00000000
- Set-ItemProperty -Path "HKLM:\System\GameConfigStore" -Name "GameDVR_Enabled" -Type DWord -Value 00000000
- $syncHash.EssTweaksDVR.IsChecked = $false
+ #You can call this function and pass a "powershell" script so that it can execute it inside a runspace.
+ #Anything executed with this function will be able to interact with the $global:sync variable
+ #Another neat feature you can do with this method is updating the form itself assuming you created the form objects inside the $sync variable
+ function Invoke-Runspace {
+ Param ([string]$commands)
+
+ $Script = [PowerShell]::Create().AddScript($commands)
+
+ $runspace = [RunspaceFactory]::CreateRunspace()
+ $runspace.ApartmentState = "STA"
+ $runspace.ThreadOptions = "ReuseThread"
+ $runspace.Open()
+ $runspace.SessionStateProxy.SetVariable("sync", $global:sync)
+
+ $Script.Runspace = $runspace
+ $Script.BeginInvoke()
}
- If ( $syncHash.EssTweaksHiber.IsChecked -eq $true ) {
- Write-Host "Disabling Hibernation..."
- Set-ItemProperty -Path "HKLM:\System\CurrentControlSet\Control\Session Manager\Power" -Name "HibernteEnabled" -Type Dword -Value 0
- If (!(Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FlyoutMenuSettings")) {
- New-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FlyoutMenuSettings" | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FlyoutMenuSettings" -Name "ShowHibernateOption" -Type Dword -Value 0
- $syncHash.EssTweaksHiber.IsChecked = $false
+ #The prowershell gui scripts I build tend to be very daynamic in nature so I don't like to have a predefined layout like you do.
+ #This is one way for me to make sure things don't go too far down
+ Function Check-Space {
+ Param ([string]$cords)
+ [int]$xint = ($cords -split ";")[0]
+ [int]$yint = ($cords -split ";")[1]
+ [int]$increment = ($cords -split ";")[2]
+
+ if($yint -gt 650){Write-output "$($xint + 225)";10}
+ if($yint -le 650){Write-output "$xint;$($yint + $increment)"}
}
- If ( $syncHash.EssTweaksHome.IsChecked -eq $true ) {
- Write-Host "Allowing Home Groups services..."
- Stop-Service "HomeGroupListener" -WarningAction SilentlyContinue
- Set-Service "HomeGroupListener" -StartupType Manual
- Stop-Service "HomeGroupProvider" -WarningAction SilentlyContinue
- Set-Service "HomeGroupProvider" -StartupType Manual
- $syncHash.EssTweaksHome.IsChecked = $false
- }
- If ( $syncHash.EssTweaksLoc.IsChecked -eq $true ) {
- Write-Host "Disabling Location Tracking..."
- If (!(Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location")) {
- New-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" -Force | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" -Name "Value" -Type String -Value "Deny"
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor\Overrides\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}" -Name "SensorPermissionState" -Type DWord -Value 0
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\lfsvc\Service\Configuration" -Name "Status" -Type DWord -Value 0
- Write-Host "Disabling automatic Maps updates..."
- Set-ItemProperty -Path "HKLM:\SYSTEM\Maps" -Name "AutoUpdateEnabled" -Type DWord -Value 0
- $syncHash.EssTweaksLoc.IsChecked = $false
- }
- If ( $syncHash.EssTweaksOO.IsChecked -eq $true ) {
- Write-Host "Running O&O Shutup with Recommended Settings"
- Import-Module BitsTransfer
- Start-BitsTransfer -Source "https://raw.githubusercontent.com/ChrisTitusTech/win10script/master/ooshutup10.cfg" -Destination ooshutup10.cfg
- Start-BitsTransfer -Source "https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe" -Destination OOSU10.exe
- ./OOSU10.exe ooshutup10.cfg /quiet
- $syncHash.EssTweaksOO.IsChecked = $false
- }
- If ( $syncHash.EssTweaksRP.IsChecked -eq $true ) {
- Write-Host "Creating Restore Point incase something bad happens"
- Enable-ComputerRestore -Drive "C:\"
- Checkpoint-Computer -Description "RestorePoint1" -RestorePointType "MODIFY_SETTINGS"
- $syncHash.EssTweaksRP.IsChecked = $false
- }
- If ( $syncHash.EssTweaksServices.IsChecked -eq $true ) {
- # Service tweaks to Manual
- $services = @(
- "diagnosticshub.standardcollector.service" # Microsoft (R) Diagnostics Hub Standard Collector Service
- "DiagTrack" # Diagnostics Tracking Service
- "DPS"
- "dmwappushservice" # WAP Push Message Routing Service (see known issues)
- "lfsvc" # Geolocation Service
- "MapsBroker" # Downloaded Maps Manager
- "NetTcpPortSharing" # Net.Tcp Port Sharing Service
- "RemoteAccess" # Routing and Remote Access
- "RemoteRegistry" # Remote Registry
- "SharedAccess" # Internet Connection Sharing (ICS)
- "TrkWks" # Distributed Link Tracking Client
- #"WbioSrvc" # Windows Biometric Service (required for Fingerprint reader / facial detection)
- #"WlanSvc" # WLAN AutoConfig
- "WMPNetworkSvc" # Windows Media Player Network Sharing Service
- #"wscsvc" # Windows Security Center Service
- "WSearch" # Windows Search
- "XblAuthManager" # Xbox Live Auth Manager
- "XblGameSave" # Xbox Live Game Save Service
- "XboxNetApiSvc" # Xbox Live Networking Service
- "XboxGipSvc" #Disables Xbox Accessory Management Service
- "ndu" # Windows Network Data Usage Monitor
- "WerSvc" #disables windows error reporting
- #"Spooler" #Disables your printer
- "Fax" #Disables fax
- "fhsvc" #Disables fax histroy
- "gupdate" #Disables google update
- "gupdatem" #Disable another google update
- "stisvc" #Disables Windows Image Acquisition (WIA)
- "AJRouter" #Disables (needed for AllJoyn Router Service)
- "MSDTC" # Disables Distributed Transaction Coordinator
- "WpcMonSvc" #Disables Parental Controls
- "PhoneSvc" #Disables Phone Service(Manages the telephony state on the device)
- "PrintNotify" #Disables Windows printer notifications and extentions
- "PcaSvc" #Disables Program Compatibility Assistant Service
- "WPDBusEnum" #Disables Portable Device Enumerator Service
- #"LicenseManager" #Disable LicenseManager(Windows store may not work properly)
- "seclogon" #Disables Secondary Logon(disables other credentials only password will work)
- "SysMain" #Disables sysmain
- "lmhosts" #Disables TCP/IP NetBIOS Helper
- "wisvc" #Disables Windows Insider program(Windows Insider will not work)
- "FontCache" #Disables Windows font cache
- "RetailDemo" #Disables RetailDemo whic is often used when showing your device
- "ALG" # Disables Application Layer Gateway Service(Provides support for 3rd party protocol plug-ins for Internet Connection Sharing)
- #"BFE" #Disables Base Filtering Engine (BFE) (is a service that manages firewall and Internet Protocol security)
- #"BrokerInfrastructure" #Disables Windows infrastructure service that controls which background tasks can run on the system.
- "SCardSvr" #Disables Windows smart card
- "EntAppSvc" #Disables enterprise application management.
- "BthAvctpSvc" #Disables AVCTP service (if you use Bluetooth Audio Device or Wireless Headphones. then don't disable this)
- #"FrameServer" #Disables Windows Camera Frame Server(this allows multiple clients to access video frames from camera devices.)
- "Browser" #Disables computer browser
- "BthAvctpSvc" #AVCTP service (This is Audio Video Control Transport Protocol service.)
- #"BDESVC" #Disables bitlocker
- "iphlpsvc" #Disables ipv6 but most websites don't use ipv6 they use ipv4
- "edgeupdate" # Disables one of edge update service
- "MicrosoftEdgeElevationService" # Disables one of edge service
- "edgeupdatem" # disbales another one of update service (disables edgeupdatem)
- "SEMgrSvc" #Disables Payments and NFC/SE Manager (Manages payments and Near Field Communication (NFC) based secure elements)
- #"PNRPsvc" # Disables peer Name Resolution Protocol ( some peer-to-peer and collaborative applications, such as Remote Assistance, may not function, Discord will still work)
- #"p2psvc" # Disbales Peer Name Resolution Protocol(nables multi-party communication using Peer-to-Peer Grouping. If disabled, some applications, such as HomeGroup, may not function. Discord will still work)
- #"p2pimsvc" # Disables Peer Networking Identity Manager (Peer-to-Peer Grouping services may not function, and some applications, such as HomeGroup and Remote Assistance, may not function correctly.Discord will still work)
- "PerfHost" #Disables remote users and 64-bit processes to query performance .
- "BcastDVRUserService_48486de" #Disables GameDVR and Broadcast is used for Game Recordings and Live Broadcasts
- "CaptureService_48486de" #Disables ptional screen capture functionality for applications that call the Windows.Graphics.Capture API.
- "cbdhsvc_48486de" #Disables cbdhsvc_48486de (clipboard service it disables)
- #"BluetoothUserService_48486de" #disbales BluetoothUserService_48486de (The Bluetooth user service supports proper functionality of Bluetooth features relevant to each user session.)
- "WpnService" #Disables WpnService (Push Notifications may not work )
- #"StorSvc" #Disables StorSvc (usb external hard drive will not be reconised by windows)
- "RtkBtManServ" #Disables Realtek Bluetooth Device Manager Service
- "QWAVE" #Disables Quality Windows Audio Video Experience (audio and video might sound worse)
- #Hp services
- "HPAppHelperCap"
- "HPDiagsCap"
- "HPNetworkCap"
- "HPSysInfoCap"
- "HpTouchpointAnalyticsService"
- #hyper-v services
- "HvHost"
- "vmickvpexchange"
- "vmicguestinterface"
- "vmicshutdown"
- "vmicheartbeat"
- "vmicvmsession"
- "vmicrdv"
- "vmictimesync"
- # Services which cannot be disabled
- #"WdNisSvc"
- )
-
- foreach ($service in $services) {
- # -ErrorAction SilentlyContinue is so it doesn't write an error to stdout if a service doesn't exist
-
- Write-Host "Setting $service StartupType to Manual"
- Get-Service -Name $service -ErrorAction SilentlyContinue | Set-Service -StartupType Manual
- }
- $syncHash.EssTweaksServices.IsChecked = $false
- }
- If ( $syncHash.EssTweaksStorage.IsChecked -eq $true ) {
- Write-Host "Disabling Storage Sense..."
- Remove-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy" -Recurse -ErrorAction SilentlyContinue
- $syncHash.EssTweaksStorage.IsChecked = $false
- }
- If ( $syncHash.EssTweaksTele.IsChecked -eq $true ) {
- Write-Host "Disabling Telemetry..."
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 0
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 0
- Disable-ScheduledTask -TaskName "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" | Out-Null
- Disable-ScheduledTask -TaskName "Microsoft\Windows\Application Experience\ProgramDataUpdater" | Out-Null
- Disable-ScheduledTask -TaskName "Microsoft\Windows\Autochk\Proxy" | Out-Null
- Disable-ScheduledTask -TaskName "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" | Out-Null
- Disable-ScheduledTask -TaskName "Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" | Out-Null
- Disable-ScheduledTask -TaskName "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" | Out-Null
- Write-Host "Disabling Application suggestions..."
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "ContentDeliveryAllowed" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "OemPreInstalledAppsEnabled" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "PreInstalledAppsEnabled" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "PreInstalledAppsEverEnabled" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SilentInstalledAppsEnabled" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-338387Enabled" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-338388Enabled" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-338389Enabled" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-353698Enabled" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SystemPaneSuggestionsEnabled" -Type DWord -Value 0
- If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent")) {
- New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Force | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Name "DisableWindowsConsumerFeatures" -Type DWord -Value 1
- Write-Host "Disabling Feedback..."
- If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Siuf\Rules")) {
- New-Item -Path "HKCU:\SOFTWARE\Microsoft\Siuf\Rules" -Force | Out-Null
- }
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Siuf\Rules" -Name "NumberOfSIUFInPeriod" -Type DWord -Value 0
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "DoNotShowFeedbackNotifications" -Type DWord -Value 1
- Disable-ScheduledTask -TaskName "Microsoft\Windows\Feedback\Siuf\DmClient" -ErrorAction SilentlyContinue | Out-Null
- Disable-ScheduledTask -TaskName "Microsoft\Windows\Feedback\Siuf\DmClientOnScenarioDownload" -ErrorAction SilentlyContinue | Out-Null
- Write-Host "Disabling Tailored Experiences..."
- If (!(Test-Path "HKCU:\SOFTWARE\Policies\Microsoft\Windows\CloudContent")) {
- New-Item -Path "HKCU:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Force | Out-Null
- }
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Name "DisableTailoredExperiencesWithDiagnosticData" -Type DWord -Value 1
- Write-Host "Disabling Advertising ID..."
- If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo")) {
- New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo" | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo" -Name "DisabledByGroupPolicy" -Type DWord -Value 1
- Write-Host "Disabling Error reporting..."
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\Windows Error Reporting" -Name "Disabled" -Type DWord -Value 1
- Disable-ScheduledTask -TaskName "Microsoft\Windows\Windows Error Reporting\QueueReporting" | Out-Null
- Write-Host "Restricting Windows Update P2P only to local network..."
- If (!(Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config")) {
- New-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" -Name "DODownloadMode" -Type DWord -Value 1
- Write-Host "Stopping and disabling Diagnostics Tracking Service..."
- Stop-Service "DiagTrack" -WarningAction SilentlyContinue
- Set-Service "DiagTrack" -StartupType Disabled
- Write-Host "Stopping and disabling WAP Push Service..."
- Stop-Service "dmwappushservice" -WarningAction SilentlyContinue
- Set-Service "dmwappushservice" -StartupType Disabled
- Write-Host "Enabling F8 boot menu options..."
- bcdedit /set `{current`} bootmenupolicy Legacy | Out-Null
- Write-Host "Disabling Remote Assistance..."
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Remote Assistance" -Name "fAllowToGetHelp" -Type DWord -Value 0
- Write-Host "Stopping and disabling Superfetch service..."
- Stop-Service "SysMain" -WarningAction SilentlyContinue
- Set-Service "SysMain" -StartupType Disabled
+#endregion functions
- # Task Manager Details
- If ((get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name CurrentBuild).CurrentBuild -lt 22557) {
- Write-Host "Showing task manager details..."
- $taskmgr = Start-Process -WindowStyle Hidden -FilePath taskmgr.exe -PassThru
- Do {
- Start-Sleep -Milliseconds 100
- $preferences = Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager" -Name "Preferences" -ErrorAction SilentlyContinue
- } Until ($preferences)
- Stop-Process $taskmgr
- $preferences.Preferences[28] = 0
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\TaskManager" -Name "Preferences" -Type Binary -Value $preferences.Preferences
- } else {Write-Host "Task Manager patch not run in builds 22557+ due to bug"}
+#region Scripts
- Write-Host "Showing file operations details..."
- If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager")) {
- New-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager" | Out-Null
- }
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager" -Name "EnthusiastMode" -Type DWord -Value 1
- Write-Host "Hiding Task View button..."
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ShowTaskViewButton" -Type DWord -Value 0
- Write-Host "Hiding People icon..."
- If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People")) {
- New-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People" | Out-Null
- }
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People" -Name "PeopleBand" -Type DWord -Value 0
-
- Write-Host "Changing default Explorer view to This PC..."
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "LaunchTo" -Type DWord -Value 1
-
- Write-Host "Hiding 3D Objects icon from This PC..."
- Remove-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}" -Recurse -ErrorAction SilentlyContinue
-
- ## Performance Tweaks and More Telemetry
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" -Name "SearchOrderConfig" -Type DWord -Value 00000000
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" -Name "SystemResponsiveness" -Type DWord -Value 0000000a
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" -Name "NetworkThrottlingIndex" -Type DWord -Value 0000000a
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control" -Name "WaitToKillServiceTimeout" -Type DWord -Value 2000
- Set-ItemProperty -Path "HKLM:\Control Panel\Desktop" -Name "MenuShowDelay" -Type DWord -Value 0
- Set-ItemProperty -Path "HKLM:\Control Panel\Desktop" -Name "WaitToKillAppTimeout" -Type DWord -Value 5000
- Set-ItemProperty -Path "HKLM:\Control Panel\Desktop" -Name "HungAppTimeout" -Type DWord -Value 4000
- Set-ItemProperty -Path "HKLM:\Control Panel\Desktop" -Name "AutoEndTasks" -Type DWord -Value 1
- Set-ItemProperty -Path "HKLM:\Control Panel\Desktop" -Name "LowLevelHooksTimeout" -Type DWord -Value 00001000
- Set-ItemProperty -Path "HKLM:\Control Panel\Desktop" -Name "WaitToKillServiceTimeout" -Type DWord -Value 00002000
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" -Name "ClearPageFileAtShutdown" -Type DWord -Value 00000001
- Set-ItemProperty -Path "HKLM:\SYSTEM\ControlSet001\Services\Ndu" -Name "Start" -Type DWord -Value 00000004
- Set-ItemProperty -Path "HKLM:\Control Panel\Mouse" -Name "MouseHoverTime" -Type DWord -Value 00000010
-
-
- # Network Tweaks
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" -Name "IRPStackSize" -Type DWord -Value 20
-
- # Group svchost.exe processes
- $ram = (Get-CimInstance -ClassName Win32_PhysicalMemory | Measure-Object -Property Capacity -Sum).Sum / 1kb
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control" -Name "SvcHostSplitThresholdInKB" -Type DWord -Value $ram -Force
-
- Write-Host "Disable News and Interests"
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Policies\Microsoft\Windows\Windows Feeds" -Name "EnableFeeds" -Type DWord -Value 0
- # Remove "News and Interest" from taskbar
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Feeds" -Name "ShellFeedsTaskbarViewMode" -Type DWord -Value 2
-
- # remove "Meet Now" button from taskbar
-
- If (!(Test-Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer")) {
- New-Item -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Force | Out-Null
+ #This is what you pass to the Invoke-Runspace function. This can interact with the $sync variable and even make changes that the main form will pickup.
+ #IE I could say $global:sync["InstallProgram_Browsers-LibreWolf_Checkbox"].text = "LibreWolf Installed"
+ $InstallScript = {
+ $programstoinstall = @()
+ $global:sync.keys | Where-Object {$_ -like "InstallProgram_*_Checkbox"} | ForEach-Object {
+ if($global:sync["$_"].checked -eq $true){
+ $program = (($_ -split "_")[1] -split "-")[1]
+ $programstoinstall += $program
}
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "HideSCAMeetNow" -Type DWord -Value 1
-
- Write-Host "Removing AutoLogger file and restricting directory..."
- $autoLoggerDir = "$env:PROGRAMDATA\Microsoft\Diagnosis\ETLLogs\AutoLogger"
- If (Test-Path "$autoLoggerDir\AutoLogger-Diagtrack-Listener.etl") {
- Remove-Item "$autoLoggerDir\AutoLogger-Diagtrack-Listener.etl"
}
- icacls $autoLoggerDir /deny SYSTEM:`(OI`)`(CI`)F | Out-Null
-
- Write-Host "Stopping and disabling Diagnostics Tracking Service..."
- Stop-Service "DiagTrack"
- Set-Service "DiagTrack" -StartupType Disabled
- $syncHash.EssTweaksTele.IsChecked = $false
- }
- If ( $syncHash.EssTweaksWifi.IsChecked -eq $true ) {
- Write-Host "Disabling Wi-Fi Sense..."
- If (!(Test-Path "HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting")) {
- New-Item -Path "HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting" -Force | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting" -Name "Value" -Type DWord -Value 0
- Set-ItemProperty -Path "HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowAutoConnectToWiFiSenseHotspots" -Name "Value" -Type DWord -Value 0
- $syncHash.EssTweaksWifi.IsChecked = $false
- }
- If ( $syncHash.MiscTweaksLapPower.IsChecked -eq $true ) {
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling" -Name "PowerThrottlingOff" -Type DWord -Value 00000000
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Power" -Name "HiberbootEnabled" -Type DWord -Value 0000001
- $syncHash.MiscTweaksLapPower.IsChecked = $false
- }
- If ( $syncHash.MiscTweaksLapNum.IsChecked -eq $true ) {
- Write-Host "Disabling NumLock after startup..."
- If (!(Test-Path "HKU:")) {
- New-PSDrive -Name HKU -PSProvider Registry -Root HKEY_USERS | Out-Null
- }
- Set-ItemProperty -Path "HKU:\.DEFAULT\Control Panel\Keyboard" -Name "InitialKeyboardIndicators" -Type DWord -Value 0
- $syncHash.MiscTweaksLapNum.IsChecked = $false
- }
- If ( $syncHash.MiscTweaksPower.IsChecked -eq $true ) {
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling" -Name "PowerThrottlingOff" -Type DWord -Value 00000001
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Power" -Name "HiberbootEnabled" -Type DWord -Value 0000000
- $syncHash.MiscTweaksPower.IsChecked = $false
- }
- If ( $syncHash.MiscTweaksNum.IsChecked -eq $true ) {
- Write-Host "Enabling NumLock after startup..."
- If (!(Test-Path "HKU:")) {
- New-PSDrive -Name HKU -PSProvider Registry -Root HKEY_USERS | Out-Null
- }
- Set-ItemProperty -Path "HKU:\.DEFAULT\Control Panel\Keyboard" -Name "InitialKeyboardIndicators" -Type DWord -Value 2
- $syncHash.MiscTweaksNum.IsChecked = $false
- }
- If ( $syncHash.MiscTweaksExt.IsChecked -eq $true ) {
- Write-Host "Showing known file extensions..."
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideFileExt" -Type DWord -Value 0
- $syncHash.MiscTweaksExt.IsChecked = $false
- }
- If ( $syncHash.MiscTweaksUTC.IsChecked -eq $true ) {
- Write-Host "Setting BIOS time to UTC..."
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" -Name "RealTimeIsUniversal" -Type DWord -Value 1
- $syncHash.MiscTweaksUTC.IsChecked
+
+ [System.Windows.MessageBox]::Show("I will install the following programs $programstoinstall",'Install Programs Button',"OK","Info")
}
- If ( $syncHash.MiscTweaksDisplay.IsChecked -eq $true ) {
- Write-Host "Adjusting visual effects for performance..."
- Set-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name "DragFullWindows" -Type String -Value 0
- Set-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name "MenuShowDelay" -Type String -Value 200
- Set-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name "UserPreferencesMask" -Type Binary -Value ([byte[]](144,18,3,128,16,0,0,0))
- Set-ItemProperty -Path "HKCU:\Control Panel\Desktop\WindowMetrics" -Name "MinAnimate" -Type String -Value 0
- Set-ItemProperty -Path "HKCU:\Control Panel\Keyboard" -Name "KeyboardDelay" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ListviewAlphaSelect" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ListviewShadow" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarAnimations" -Type DWord -Value 0
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects" -Name "VisualFXSetting" -Type DWord -Value 3
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\DWM" -Name "EnableAeroPeek" -Type DWord -Value 0
- Write-Host "Adjusted visual effects for performance"
- $syncHash.MiscTweaksDisplay.IsChecked = false
- }
+#endregion Scripts
- If ( $syncHash.EssTweaksDeBloat.IsChecked -eq $true ) {
- $Bloatware = @(
- #Unnecessary Windows 10 AppX Apps
- "Microsoft.3DBuilder"
- "Microsoft.Microsoft3DViewer"
- "Microsoft.AppConnector"
- "Microsoft.BingFinance"
- "Microsoft.BingNews"
- "Microsoft.BingSports"
- "Microsoft.BingTranslator"
- "Microsoft.BingWeather"
- "Microsoft.BingFoodAndDrink"
- "Microsoft.BingHealthAndFitness"
- "Microsoft.BingTravel"
- "Microsoft.MinecraftUWP"
- "Microsoft.GamingServices"
- # "Microsoft.WindowsReadingList"
- "Microsoft.GetHelp"
- "Microsoft.Getstarted"
- "Microsoft.Messaging"
- "Microsoft.Microsoft3DViewer"
- "Microsoft.MicrosoftSolitaireCollection"
- "Microsoft.NetworkSpeedTest"
- "Microsoft.News"
- "Microsoft.Office.Lens"
- "Microsoft.Office.Sway"
- "Microsoft.Office.OneNote"
- "Microsoft.OneConnect"
- "Microsoft.People"
- "Microsoft.Print3D"
- "Microsoft.SkypeApp"
- "Microsoft.Wallet"
- "Microsoft.Whiteboard"
- "Microsoft.WindowsAlarms"
- "microsoft.windowscommunicationsapps"
- "Microsoft.WindowsFeedbackHub"
- "Microsoft.WindowsMaps"
- "Microsoft.WindowsPhone"
- "Microsoft.WindowsSoundRecorder"
- "Microsoft.XboxApp"
- "Microsoft.ConnectivityStore"
- "Microsoft.CommsPhone"
- "Microsoft.ScreenSketch"
- "Microsoft.Xbox.TCUI"
- "Microsoft.XboxGameOverlay"
- "Microsoft.XboxGameCallableUI"
- "Microsoft.XboxSpeechToTextOverlay"
- "Microsoft.MixedReality.Portal"
- "Microsoft.XboxIdentityProvider"
- "Microsoft.ZuneMusic"
- "Microsoft.ZuneVideo"
- #"Microsoft.YourPhone"
- "Microsoft.Getstarted"
- "Microsoft.MicrosoftOfficeHub"
+$version = "0.0.1"
+$ToolName = "winutil"
+$formwidth = 1170
+$formHeight = 800
- #Sponsored Windows 10 AppX Apps
- #Add sponsored/featured apps to remove in the "*AppName*" format
- "*EclipseManager*"
- "*ActiproSoftwareLLC*"
- "*AdobeSystemsIncorporated.AdobePhotoshopExpress*"
- "*Duolingo-LearnLanguagesforFree*"
- "*PandoraMediaInc*"
- "*CandyCrush*"
- "*BubbleWitch3Saga*"
- "*Wunderlist*"
- "*Flipboard*"
- "*Twitter*"
- "*Facebook*"
- "*Royal Revolt*"
- "*Sway*"
- "*Speed Test*"
- "*Dolby*"
- "*Viber*"
- "*ACGMediaPlayer*"
- "*Netflix*"
- "*OneCalendar*"
- "*LinkedInforWindows*"
- "*HiddenCityMysteryofShadows*"
- "*Hulu*"
- "*HiddenCity*"
- "*AdobePhotoshopExpress*"
- "*HotspotShieldFreeVPN*"
-
- #Optional: Typically not removed but you can if you need to for some reason
- "*Microsoft.Advertising.Xaml*"
- #"*Microsoft.MSPaint*"
- #"*Microsoft.MicrosoftStickyNotes*"
- #"*Microsoft.Windows.Photos*"
- #"*Microsoft.WindowsCalculator*"
- #"*Microsoft.WindowsStore*"
- )
-
- Write-Host "Removing Bloatware"
-
- foreach ($Bloat in $Bloatware) {
- Get-AppxPackage -Name $Bloat| Remove-AppxPackage
- Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like $Bloat | Remove-AppxProvisionedPackage -Online
- Write-Host "Trying to remove $Bloat."
- }
-
- Write-Host "Finished Removing Bloatware Apps"
- $syncHash.EssTweaksDeBloat.IsChecked = $false
- }
-})
-#===========================================================================
-# Undo All
-#===========================================================================
-$syncHash.undoall.Add_Click({
- Write-Host "Creating Restore Point incase something bad happens"
- Enable-ComputerRestore -Drive "C:\"
- Checkpoint-Computer -Description "RestorePoint1" -RestorePointType "MODIFY_SETTINGS"
-
- Write-Host "Enabling Telemetry..."
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 1
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 1
- Write-Host "Enabling Wi-Fi Sense"
- Set-ItemProperty -Path "HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting" -Name "Value" -Type DWord -Value 1
- Set-ItemProperty -Path "HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowAutoConnectToWiFiSenseHotspots" -Name "Value" -Type DWord -Value 1
- Write-Host "Enabling Application suggestions..."
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "ContentDeliveryAllowed" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "OemPreInstalledAppsEnabled" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "PreInstalledAppsEnabled" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "PreInstalledAppsEverEnabled" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SilentInstalledAppsEnabled" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-338387Enabled" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-338388Enabled" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-338389Enabled" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SubscribedContent-353698Enabled" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" -Name "SystemPaneSuggestionsEnabled" -Type DWord -Value 1
- If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent")) {
- Remove-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Recurse -ErrorAction SilentlyContinue
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Name "DisableWindowsConsumerFeatures" -Type DWord -Value 0
- Write-Host "Enabling Activity History..."
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name "EnableActivityFeed" -Type DWord -Value 1
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name "PublishUserActivities" -Type DWord -Value 1
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name "UploadUserActivities" -Type DWord -Value 1
- Write-Host "Enable Location Tracking..."
- If (!(Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location")) {
- Remove-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" -Recurse -ErrorAction SilentlyContinue
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" -Name "Value" -Type String -Value "Allow"
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor\Overrides\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}" -Name "SensorPermissionState" -Type DWord -Value 1
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\lfsvc\Service\Configuration" -Name "Status" -Type DWord -Value 1
- Write-Host "Enabling automatic Maps updates..."
- Set-ItemProperty -Path "HKLM:\SYSTEM\Maps" -Name "AutoUpdateEnabled" -Type DWord -Value 1
- Write-Host "Enabling Feedback..."
- If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Siuf\Rules")) {
- Remove-Item -Path "HKCU:\SOFTWARE\Microsoft\Siuf\Rules" -Recurse -ErrorAction SilentlyContinue
- }
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Siuf\Rules" -Name "NumberOfSIUFInPeriod" -Type DWord -Value 0
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "DoNotShowFeedbackNotifications" -Type DWord -Value 0
- Write-Host "Enabling Tailored Experiences..."
- If (!(Test-Path "HKCU:\SOFTWARE\Policies\Microsoft\Windows\CloudContent")) {
- Remove-Item -Path "HKCU:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Recurse -ErrorAction SilentlyContinue
- }
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Name "DisableTailoredExperiencesWithDiagnosticData" -Type DWord -Value 0
- Write-Host "Disabling Advertising ID..."
- If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo")) {
- Remove-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo" -Recurse -ErrorAction SilentlyContinue
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo" -Name "DisabledByGroupPolicy" -Type DWord -Value 0
- Write-Host "Allow Error reporting..."
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\Windows Error Reporting" -Name "Disabled" -Type DWord -Value 0
- Write-Host "Allowing Diagnostics Tracking Service..."
- Stop-Service "DiagTrack" -WarningAction SilentlyContinue
- Set-Service "DiagTrack" -StartupType Manual
- Write-Host "Allowing WAP Push Service..."
- Stop-Service "dmwappushservice" -WarningAction SilentlyContinue
- Set-Service "dmwappushservice" -StartupType Manual
- Write-Host "Allowing Home Groups services..."
- Stop-Service "HomeGroupListener" -WarningAction SilentlyContinue
- Set-Service "HomeGroupListener" -StartupType Manual
- Stop-Service "HomeGroupProvider" -WarningAction SilentlyContinue
- Set-Service "HomeGroupProvider" -StartupType Manual
- Write-Host "Enabling Storage Sense..."
- New-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy" | Out-Null
- Write-Host "Allowing Superfetch service..."
- Stop-Service "SysMain" -WarningAction SilentlyContinue
- Set-Service "SysMain" -StartupType Manual
- Write-Host "Setting BIOS time to Local Time instead of UTC..."
- Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" -Name "RealTimeIsUniversal" -Type DWord -Value 0
- Write-Host "Enabling Hibernation..."
- Set-ItemProperty -Path "HKLM:\System\CurrentControlSet\Control\Session Manager\Power" -Name "HibernteEnabled" -Type Dword -Value 1
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FlyoutMenuSettings" -Name "ShowHibernateOption" -Type Dword -Value 1
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Personalization" -Name "NoLockScreen" -ErrorAction SilentlyContinue
-
- Write-Host "Hiding file operations details..."
- If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager")) {
- Remove-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager" -Recurse -ErrorAction SilentlyContinue
- }
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\OperationStatusManager" -Name "EnthusiastMode" -Type DWord -Value 0
- Write-Host "Showing Task View button..."
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ShowTaskViewButton" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People" -Name "PeopleBand" -Type DWord -Value 1
-
- Write-Host "Changing default Explorer view to Quick Access..."
- Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "LaunchTo" -Type DWord -Value 1
-
- Write-Host "Unrestricting AutoLogger directory"
- $autoLoggerDir = "$env:PROGRAMDATA\Microsoft\Diagnosis\ETLLogs\AutoLogger"
- icacls $autoLoggerDir /grant:r SYSTEM:`(OI`)`(CI`)F | Out-Null
-
- Write-Host "Enabling and starting Diagnostics Tracking Service"
- Set-Service "DiagTrack" -StartupType Automatic
- Start-Service "DiagTrack"
-
- Write-Host "Hiding known file extensions"
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideFileExt" -Type DWord -Value 1
-
- Write-Host "Reset Local Group Policies to Stock Defaults"
- # cmd /c secedit /configure /cfg %windir%\inf\defltbase.inf /db defltbase.sdb /verbose
- cmd /c RD /S /Q "%WinDir%\System32\GroupPolicyUsers"
- cmd /c RD /S /Q "%WinDir%\System32\GroupPolicy"
- cmd /c gpupdate /force
- # Considered using Invoke-GPUpdate but requires module most people won't have installed
-
- Write-Output "Adjusting visual effects for appearance..."
- Set-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name "DragFullWindows" -Type String -Value 1
- Set-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name "MenuShowDelay" -Type String -Value 400
- Set-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name "UserPreferencesMask" -Type Binary -Value ([byte[]](158,30,7,128,18,0,0,0))
- Set-ItemProperty -Path "HKCU:\Control Panel\Desktop\WindowMetrics" -Name "MinAnimate" -Type String -Value 1
- Set-ItemProperty -Path "HKCU:\Control Panel\Keyboard" -Name "KeyboardDelay" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ListviewAlphaSelect" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ListviewShadow" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarAnimations" -Type DWord -Value 1
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects" -Name "VisualFXSetting" -Type DWord -Value 3
- Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\DWM" -Name "EnableAeroPeek" -Type DWord -Value 1
-
- Write-Host "Restoring Clipboard History..."
- Remove-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Clipboard" -Name "EnableClipboardHistory" -ErrorAction SilentlyContinue
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name "AllowClipboardHistory" -ErrorAction SilentlyContinue
- Write-Host "Done - Reverted to Stock Settings"
-
- Write-Host "Essential Undo Completed"
-})
-#===========================================================================
-# Tab 3 - Config Buttons
-#===========================================================================
-$syncHash.FeatureInstall.Add_Click({
-
- If ( $syncHash.Featuresdotnet.IsChecked -eq $true ) {
- Enable-WindowsOptionalFeature -Online -FeatureName "NetFx4-AdvSrvs" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "NetFx3" -All
- }
- If ( $syncHash.Featureshyperv.IsChecked -eq $true ) {
- Enable-WindowsOptionalFeature -Online -FeatureName "HypervisorPlatform" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Hyper-V-All" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Hyper-V" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Hyper-V-Tools-All" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Hyper-V-Management-PowerShell" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Hyper-V-Hypervisor" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Hyper-V-Services" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Hyper-V-Management-Clients" -All
- cmd /c bcdedit /set hypervisorschedulertype classic
- Write-Host "HyperV is now installed and configured. Please Reboot before using."
- }
- If ( $syncHash.Featureslegacymedia.IsChecked -eq $true ) {
- Enable-WindowsOptionalFeature -Online -FeatureName "WindowsMediaPlayer" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "MediaPlayback" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "DirectPlay" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "LegacyComponents" -All
- }
- If ( $syncHash.Featurewsl.IsChecked -eq $true ) {
- Enable-WindowsOptionalFeature -Online -FeatureName "VirtualMachinePlatform" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Windows-Subsystem-Linux" -All
- Write-Host "WSL is now installed and configured. Please Reboot before using."
- }
- If ( $syncHash.Featurenfs.IsChecked -eq $true ) {
- Enable-WindowsOptionalFeature -Online -FeatureName "ServicesForNFS-ClientOnly" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "ClientForNFS-Infrastructure" -All
- Enable-WindowsOptionalFeature -Online -FeatureName "NFS-Administration" -All
- nfsadmin client stop
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\ClientForNFS\CurrentVersion\Default" -Name "AnonymousUID" -Type DWord -Value 0
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\ClientForNFS\CurrentVersion\Default" -Name "AnonymousGID" -Type DWord -Value 0
- nfsadmin client start
- nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i
- Write-Host "NFS is now setup for user based NFS mounts"
- }
-
-})
-
-$syncHash.Panelcontrol.Add_Click({
- cmd /c control
-})
-$syncHash.Panelnetwork.Add_Click({
-cmd /c ncpa.cpl
-})
-$syncHash.Panelpower.Add_Click({
-cmd /c powercfg.cpl
-})
-$syncHash.Panelsound.Add_Click({
-cmd /c mmsys.cpl
-})
-$syncHash.Panelsystem.Add_Click({
-cmd /c sysdm.cpl
-})
-$syncHash.Paneluser.Add_Click({
-cmd /c "control userpasswords2"
-})
-#===========================================================================
-# Tab 4 - Updates Buttons
-#===========================================================================
-
-$syncHash.Updatesdefault.Add_Click({
-# Source: https://github.com/rgl/windows-vagrant/blob/master/disable-windows-updates.ps1 reversed!
- Set-StrictMode -Version Latest
-$ProgressPreference = 'SilentlyContinue'
-$ErrorActionPreference = 'Stop'
-trap {
- Write-Host
- Write-Host "ERROR: $_"
- Write-Host (($_.ScriptStackTrace -split '\r?\n') -replace '^(.*)$','ERROR: $1')
- Write-Host (($_.Exception.ToString() -split '\r?\n') -replace '^(.*)$','ERROR EXCEPTION: $1')
- Write-Host
- Write-Host 'Sleeping for 60m to give you time to look around the virtual machine before self-destruction...'
- Start-Sleep -Seconds (60*60)
- Exit 1
-}
-
-# disable automatic updates.
-# XXX this does not seem to work anymore.
-# see How to configure automatic updates by using Group Policy or registry settings
-# at https://support.microsoft.com/en-us/help/328010
-function New-Directory($path) {
- $p, $components = $path -split '[\\/]'
- $components | ForEach-Object {
- $p = "$p\$_"
- if (!(Test-Path $p)) {
- New-Item -ItemType Directory $p | Out-Null
- }
- }
- $null
-}
-$auPath = 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU'
-New-Directory $auPath
-# set NoAutoUpdate.
-# 0: Automatic Updates is enabled (default).
-# 1: Automatic Updates is disabled.
-New-ItemProperty `
- -Path $auPath `
- -Name NoAutoUpdate `
- -Value 0 `
- -PropertyType DWORD `
- -Force `
- | Out-Null
-# set AUOptions.
-# 1: Keep my computer up to date has been disabled in Automatic Updates.
-# 2: Notify of download and installation.
-# 3: Automatically download and notify of installation.
-# 4: Automatically download and scheduled installation.
-New-ItemProperty `
- -Path $auPath `
- -Name AUOptions `
- -Value 3 `
- -PropertyType DWORD `
- -Force `
- | Out-Null
-
-# disable Windows Update Delivery Optimization.
-# NB this applies to Windows 10.
-# 0: Disabled
-# 1: PCs on my local network
-# 3: PCs on my local network, and PCs on the Internet
-$deliveryOptimizationPath = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config'
-if (Test-Path $deliveryOptimizationPath) {
- New-ItemProperty `
- -Path $deliveryOptimizationPath `
- -Name DODownloadMode `
- -Value 0 `
- -PropertyType DWORD `
- -Force `
- | Out-Null
-}
-# Service tweaks for Windows Update
-
-$services = @(
- "BITS"
- "wuauserv"
+$InstallPrograms = @(
+ "Browsers;Brave,Google Chrome,Un-Googled Chromium, Firefox,LibreWolf,Vivaldi"
+ "Communications;Discord,Hexchat,Matrix,Signal,Skype,Slack,Microsoft Teams,Zoom Video Conference"
+ "Development;Atom,Github Desktop,OpenJDK Java 8,OpenJDK Java 16,Oracle Java 18,Jetbrains Toolbox,NodeJS,NodeJS LTS,Python3,Sublime,Visual Studio Code 2022 Community,VS Code,VS Codium"
+ "Document;Adobe Reader DV,LibreOffice,Notepad++,Obsidian,Sumatra PDF"
+ "Games;Epic Games Launcher,GOG Galaxy,Steam"
+ "Pro Tools;Advanced IP Scanner,mRemoteNG,Putty,WinSCP,WireShark"
+ "Multimedia Tools; Audacity,Blander (3D Graphics),Eartumpet (Audio),Flameshot (Screenshots),Foobar2000 (Music Player),Gimp (Image Editor),Greenshot (Screenshots),HandBrake,ImageGlass (Image Viewer),Inkscape,Media Player Classic (Video Player),OBS Studio,ShareX (Screenshots),Spotify,VLC (Video Player),Voicemeeter (Audio)"
+ "Utilities;7-Zip,AnyDesk,AutoHotkey,Bitwarden,CPU-Z,Etcher USB Creator,Everything Search,GPU-Z,HWInfo,KeePassXC,MalwareBytes,NVCleanstall,Microsoft Powertoys,RevoUninstaller,Rufus Imager,TeamViewer,Translucent Taskbar,TreeSizeFree,WinDirStat,Windows Terminal"
)
-foreach ($service in $services) {
- # -ErrorAction SilentlyContinue is so it doesn't write an error to stdout if a service doesn't exist
-
- Write-Host "Setting $service StartupType to Automatic"
- Get-Service -Name $service -ErrorAction SilentlyContinue | Set-Service -StartupType Automatic
-}
- Write-Host "Enabling driver offering through Windows Update..."
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Device Metadata" -Name "PreventDeviceMetadataFromNetwork" -ErrorAction SilentlyContinue
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverSearching" -Name "DontPromptForWindowsUpdate" -ErrorAction SilentlyContinue
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverSearching" -Name "DontSearchWindowsUpdate" -ErrorAction SilentlyContinue
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverSearching" -Name "DriverUpdateWizardWuSearchEnabled" -ErrorAction SilentlyContinue
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "ExcludeWUDriversInQualityUpdate" -ErrorAction SilentlyContinue
- Write-Host "Enabling Windows Update automatic restart..."
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "NoAutoRebootWithLoggedOnUsers" -ErrorAction SilentlyContinue
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "AUPowerManagement" -ErrorAction SilentlyContinue
- Write-Host "Enabled driver offering through Windows Update"
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" -Name "BranchReadinessLevel" -ErrorAction SilentlyContinue
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" -Name "DeferFeatureUpdatesPeriodInDays" -ErrorAction SilentlyContinue
- Remove-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" -Name "DeferQualityUpdatesPeriodInDays " -ErrorAction SilentlyContinue
-
-})
-$syncHash.Updatesdisable.Add_Click({
- # Source: https://github.com/rgl/windows-vagrant/blob/master/disable-windows-updates.ps1
- Set-StrictMode -Version Latest
-$ProgressPreference = 'SilentlyContinue'
-$ErrorActionPreference = 'Stop'
-trap {
- Write-Host
- Write-Host "ERROR: $_"
- Write-Host (($_.ScriptStackTrace -split '\r?\n') -replace '^(.*)$','ERROR: $1')
- Write-Host (($_.Exception.ToString() -split '\r?\n') -replace '^(.*)$','ERROR EXCEPTION: $1')
- Write-Host
- Write-Host 'Sleeping for 60m to give you time to look around the virtual machine before self-destruction...'
- Start-Sleep -Seconds (60*60)
- Exit 1
-}
-
-# disable automatic updates.
-# XXX this does not seem to work anymore.
-# see How to configure automatic updates by using Group Policy or registry settings
-# at https://support.microsoft.com/en-us/help/328010
-function New-Directory($path) {
- $p, $components = $path -split '[\\/]'
- $components | ForEach-Object {
- $p = "$p\$_"
- if (!(Test-Path $p)) {
- New-Item -ItemType Directory $p | Out-Null
- }
- }
- $null
-}
-$auPath = 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU'
-New-Directory $auPath
-# set NoAutoUpdate.
-# 0: Automatic Updates is enabled (default).
-# 1: Automatic Updates is disabled.
-New-ItemProperty `
- -Path $auPath `
- -Name NoAutoUpdate `
- -Value 1 `
- -PropertyType DWORD `
- -Force `
- | Out-Null
-# set AUOptions.
-# 1: Keep my computer up to date has been disabled in Automatic Updates.
-# 2: Notify of download and installation.
-# 3: Automatically download and notify of installation.
-# 4: Automatically download and scheduled installation.
-New-ItemProperty `
- -Path $auPath `
- -Name AUOptions `
- -Value 1 `
- -PropertyType DWORD `
- -Force `
- | Out-Null
-
-# disable Windows Update Delivery Optimization.
-# NB this applies to Windows 10.
-# 0: Disabled
-# 1: PCs on my local network
-# 3: PCs on my local network, and PCs on the Internet
-$deliveryOptimizationPath = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config'
-if (Test-Path $deliveryOptimizationPath) {
- New-ItemProperty `
- -Path $deliveryOptimizationPath `
- -Name DODownloadMode `
- -Value 0 `
- -PropertyType DWORD `
- -Force `
- | Out-Null
-}
-# Service tweaks for Windows Update
-
-$services = @(
- "BITS"
- "wuauserv"
+$tabs = @(
+ "Install"
+ "Tweaks"
+ "Config"
+ "Updates"
+ "Help"
)
-foreach ($service in $services) {
- # -ErrorAction SilentlyContinue is so it doesn't write an error to stdout if a service doesn't exist
+$global:sync = [Hashtable]::Synchronized(@{})
- Write-Host "Setting $service StartupType to Disabled"
- Get-Service -Name $service -ErrorAction SilentlyContinue | Set-Service -StartupType Disabled
-}
- Write-Host "1. Stopping Windows Update Services..."
- Stop-Service -Name BITS
- Stop-Service -Name wuauserv
- Stop-Service -Name appidsvc
- Stop-Service -Name cryptsvc
-
- Write-Host "2. Remove QMGR Data file..."
- Remove-Item "$env:allusersprofile\Application Data\Microsoft\Network\Downloader\qmgr*.dat" -ErrorAction SilentlyContinue
-
- Write-Host "3. Renaming the Software Distribution and CatRoot Folder..."
- Rename-Item $env:systemroot\SoftwareDistribution SoftwareDistribution.bak -ErrorAction SilentlyContinue
- Rename-Item $env:systemroot\System32\Catroot2 catroot2.bak -ErrorAction SilentlyContinue
-
- Write-Host "4. Removing old Windows Update log..."
- Remove-Item $env:systemroot\WindowsUpdate.log -ErrorAction SilentlyContinue
-
- Write-Host "5. Resetting the Windows Update Services to defualt settings..."
- "sc.exe sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)"
- "sc.exe sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)"
-
- Set-Location $env:systemroot\system32
-
- Write-Host "6. Registering some DLLs..."
- regsvr32.exe /s atl.dll
- regsvr32.exe /s urlmon.dll
- regsvr32.exe /s mshtml.dll
- regsvr32.exe /s shdocvw.dll
- regsvr32.exe /s browseui.dll
- regsvr32.exe /s jscript.dll
- regsvr32.exe /s vbscript.dll
- regsvr32.exe /s scrrun.dll
- regsvr32.exe /s msxml.dll
- regsvr32.exe /s msxml3.dll
- regsvr32.exe /s msxml6.dll
- regsvr32.exe /s actxprxy.dll
- regsvr32.exe /s softpub.dll
- regsvr32.exe /s wintrust.dll
- regsvr32.exe /s dssenh.dll
- regsvr32.exe /s rsaenh.dll
- regsvr32.exe /s gpkcsp.dll
- regsvr32.exe /s sccbase.dll
- regsvr32.exe /s slbcsp.dll
- regsvr32.exe /s cryptdlg.dll
- regsvr32.exe /s oleaut32.dll
- regsvr32.exe /s ole32.dll
- regsvr32.exe /s shell32.dll
- regsvr32.exe /s initpki.dll
- regsvr32.exe /s wuapi.dll
- regsvr32.exe /s wuaueng.dll
- regsvr32.exe /s wuaueng1.dll
- regsvr32.exe /s wucltui.dll
- regsvr32.exe /s wups.dll
- regsvr32.exe /s wups2.dll
- regsvr32.exe /s wuweb.dll
- regsvr32.exe /s qmgr.dll
- regsvr32.exe /s qmgrprxy.dll
- regsvr32.exe /s wucltux.dll
- regsvr32.exe /s muweb.dll
- regsvr32.exe /s wuwebv.dll
-
- Write-Host "7) Removing WSUS client settings..."
- REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
- REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
- REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
-
- Write-Host "8) Resetting the WinSock..."
- netsh winsock reset
- netsh winhttp reset proxy
-
- Write-Host "9) Delete all BITS jobs..."
- Get-BitsTransfer | Remove-BitsTransfer
-
- Write-Host "10) Attempting to install the Windows Update Agent..."
- if($arch -eq 64){
- wusa Windows8-RT-KB2937636-x64 /quiet
- }
- else{
- wusa Windows8-RT-KB2937636-x86 /quiet
- }
-
- Write-Host "11) Starting Windows Update Services..."
- Start-Service -Name BITS
- Start-Service -Name wuauserv
- Start-Service -Name appidsvc
- Start-Service -Name cryptsvc
-
- Write-Host "12) Forcing discovery..."
- wuauclt /resetauthorization /detectnow
-
- Write-Host "Process complete. Please reboot your computer."
-})
-$syncHash.Updatessecurity.Add_Click({
- Write-Host "Disabling driver offering through Windows Update..."
- If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Device Metadata")) {
- New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Device Metadata" -Force | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Device Metadata" -Name "PreventDeviceMetadataFromNetwork" -Type DWord -Value 1
- If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverSearching")) {
- New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverSearching" -Force | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverSearching" -Name "DontPromptForWindowsUpdate" -Type DWord -Value 1
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverSearching" -Name "DontSearchWindowsUpdate" -Type DWord -Value 1
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverSearching" -Name "DriverUpdateWizardWuSearchEnabled" -Type DWord -Value 0
- If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate")) {
- New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "ExcludeWUDriversInQualityUpdate" -Type DWord -Value 1
- Write-Host "Disabling Windows Update automatic restart..."
- If (!(Test-Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU")) {
- New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Force | Out-Null
- }
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "NoAutoRebootWithLoggedOnUsers" -Type DWord -Value 1
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "AUPowerManagement" -Type DWord -Value 0
- Write-Host "Disabled driver offering through Windows Update"
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" -Name "BranchReadinessLevel" -Type DWord -Value 20
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" -Name "DeferFeatureUpdatesPeriodInDays" -Type DWord -Value 365
- Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" -Name "DeferQualityUpdatesPeriodInDays " -Type DWord -Value 4
-
+#region Form
+
+$Form = New-Object system.Windows.Forms.Form
+$Form.text = "$toolname $Version"
+$form.AutoScroll = $True
+$form.width = $formwidth
+$form.Height = $formHeight
+$Form.FormBorderStyle = 'Fixed3D'
+$Form.MaximizeBox = $false
+$Form.Add_FormClosing({
+ Get-Process -Id $pid | Stop-Process
})
-#LOAD RUNSPACE WITH GUI IN
-$syncHash.Window.ShowDialog()
-$Runspace.Close()
-$Runspace.Dispose()
-
-}
-
-$PSinstance1 = [powershell]::Create().AddScript($Code)
-$PSinstance1.Runspace = $Runspace
-$job = $PSinstance1.BeginInvoke()
\ No newline at end of file
+#For adding in an icon image
+#$iconBase64 = ''
+#$iconBytes = [Convert]::FromBase64String($iconBase64)
+#$stream = New-Object IO.MemoryStream($iconBytes, 0, $iconBytes.Length)
+#$stream.Write($iconBytes, 0, $iconBytes.Length);
+#$Form.Icon = [System.Drawing.Icon]::FromHandle((New-Object System.Drawing.Bitmap -Argument $stream).GetHIcon())
+
+#endregion Form
+
+#region Tab Control
+
+ $tabcontrol = New-Object 'System.Windows.Forms.TabControl'
+ $tabcontrol.Alignment = 'Top'
+ $tabcontrol.Location = '0,0'
+ $tabcontrol.Multiline = $True
+ $tabcontrol.Name = 'tabcontrol'
+ $tabcontrol.SelectedIndex = 0
+ $tabcontrol.width = $formwidth
+ $tabcontrol.Height = $($formHeight-35)
+ $tabcontrol.Anchor = [System.Windows.Forms.AnchorStyles]::Bottom -bor [System.Windows.Forms.AnchorStyles]::Right -bor [System.Windows.Forms.AnchorStyles]::Top -bor [System.Windows.Forms.AnchorStyles]::Left
+ $tabcontrol.TabIndex = 0
+ $Form.Controls.Add($tabcontrol)
+
+#endregion Tab Control
+
+#region Main Page
+
+ foreach ($tab in $tabs){
+ $page = New-Object 'System.Windows.Forms.TabPage'
+ $page.name = "$tab"
+ $page.text = "$tab"
+ $tabcontrol.Controls.Add($page)
+ }
+
+ #Since I don't use an xaml file to create the gui (not sure how compatable that method is with this script as I have never used it) I create a loop to build everything.
+ #You could do the same for the rest of the tabs in a similar fashion to this one.
+
+ #region Install Tab
+ $x = 5
+ $y = 10
+
+ foreach($InstallProgram in $InstallPrograms){
+ $group = ($InstallProgram -split ";")[0]
+ $programs = ($InstallProgram -split ";")[1] -split ","
+
+ $Label = New-Object Windows.Forms.Label
+ $Label.Name = "$group"
+ $Label.Location = New-Object System.Drawing.Point($x,$y)
+ $Label.Font = 'Microsoft Sans Serif,15'
+ $Label.Text = "$group"
+ $Label.AutoSize = $true
+ $tabcontrol.controls["Install"].Controls.Add($Label)
+
+ $space = (Check-Space "$x;$y;40") -split ";"
+ $x = $space[0]
+ $y = $space[1]
+
+ foreach($program in $programs){
+
+ #The key here is adding the object to the $sync variable, this what allows powershell to interact with it while inside a runspace.
+ #IE $tabcontrol.controls["Install"] is not modifiable but $global:sync["InstallProgram_Browsers-LibreWolf_Checkbox"] is
+
+ $object = New-Object Windows.Forms.Checkbox
+ $object.Name = "InstallProgram_$group-$($program -replace " ","_")_Checkbox"
+ $object.Font = 'Microsoft Sans Serif,8'
+ $object.Location = New-Object System.Drawing.Point($x,$y)
+ $object.Size = "225,20"
+ $object.text = "$program"
+ $object.checked = $false
+ $global:sync["$($object.name)"] = $object
+ $tabcontrol.Controls["Install"].Controls.Add($global:sync["$($object.name)"])
+
+ $space = (Check-Space "$x;$y;20") -split ";"
+ $x = $space[0]
+ $y = $space[1]
+ }
+
+ $y = [int]$y + 10
+ }
+
+ $space = (Check-Space "$x;9000;20") -split ";"
+ $x = $space[0]
+ $y = $space[1]
+
+ $object = New-Object 'System.Windows.Forms.Button'
+ $object.name = "InstallProgram_Button"
+ $object.Location = New-Object System.Drawing.Point($x,$y)
+ $object.Font = 'Microsoft Sans Serif,10'
+ $object.Size = "200,25"
+ $object.TextAlign = 'MiddleCenter'
+ $object.text = "Install Programs"
+ $object.Add_Click({
+ #This took me a long time to figure out as my other scripts would create buttons dynamically. This will get the name of the button that you clicked
+ #then pass it to the Invoke-Button function above.
+
+ [System.Object]$Sender = $args[0]
+
+ Invoke-Button $Sender.name
+
+ })
+ $tabcontrol.controls["Install"].Controls.Add($object)
+
+ #endregion Install Tab
+
+ #region Help Page
+
+ $Label = New-Object Windows.Forms.Label
+ $Label.Name = "Help_Page_Label"
+ $Label.Location = New-Object System.Drawing.Point(5,10)
+ $Label.Font = 'Microsoft Sans Serif,15'
+ $Label.Text = "Welcome to the Help Page"
+ $Label.AutoSize = $true
+ $tabcontrol.controls["help"].Controls.Add($Label)
+
+ #endregion Help Page
+
+#endregion Main Page
+
+[Windows.Forms.Application]::Run($form)