diff --git a/Scripts/Others/Advanced-Start.ps1 b/Scripts/Others/Advanced-Start.ps1 new file mode 100644 index 0000000..33207f0 --- /dev/null +++ b/Scripts/Others/Advanced-Start.ps1 @@ -0,0 +1 @@ +shutdown.exe /r /o /f /t 0 diff --git a/Scripts/Others/Change-IconSize.ps1 b/Scripts/Others/Change-IconSize.ps1 new file mode 100644 index 0000000..b11b62b --- /dev/null +++ b/Scripts/Others/Change-IconSize.ps1 @@ -0,0 +1,7 @@ +# 10 - Extra small +# 36 - Small +# 48 - Medium +# 100 - Large +# 500 - Extra large +Set-ItemProperty -path HKCU:\Software\Microsoft\Windows\Shell\Bags\1\Desktop -name IconSize -value 48 +Stop-Process -name explorer \ No newline at end of file diff --git a/Scripts/Others/Change-SystemLanguage.ps1 b/Scripts/Others/Change-SystemLanguage.ps1 new file mode 100644 index 0000000..ba21abc --- /dev/null +++ b/Scripts/Others/Change-SystemLanguage.ps1 @@ -0,0 +1,6 @@ +Install-Language -Language en-US +Set-Culture en-US +Set-WinSystemLocale -SystemLocale en-US +Set-WinUILanguageOverride -Language en-US +Set-WinUserLanguageList en-US -Force +Set-WinHomeLocation -GeoId 244 \ No newline at end of file diff --git a/Scripts/Others/Disable-BackgroundApps.ps1 b/Scripts/Others/Disable-BackgroundApps.ps1 new file mode 100644 index 0000000..cc30ab7 --- /dev/null +++ b/Scripts/Others/Disable-BackgroundApps.ps1 @@ -0,0 +1 @@ +Reg Add HKCU\Software\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications /v GlobalUserDisabled /t REG_DWORD /d 1 /f \ No newline at end of file diff --git a/Scripts/Others/Disable-Cortana.ps1 b/Scripts/Others/Disable-Cortana.ps1 new file mode 100644 index 0000000..d2d1c8d --- /dev/null +++ b/Scripts/Others/Disable-Cortana.ps1 @@ -0,0 +1,5 @@ +$registryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" +if (-not (Test-Path $registryPath)) { + New-Item -Path $registryPath -Force +} +Set-ItemProperty -Path $registryPath -Name "AllowCortana" -Value 0 diff --git a/Scripts/Others/Disable-GameBar.ps1 b/Scripts/Others/Disable-GameBar.ps1 new file mode 100644 index 0000000..cc5fd8d --- /dev/null +++ b/Scripts/Others/Disable-GameBar.ps1 @@ -0,0 +1,2 @@ +reg add HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\GameDVR /f /t REG_DWORD /v "AppCaptureEnabled" /d 0 +reg add HKEY_CURRENT_USER\System\GameConfigStore /f /t REG_DWORD /v "GameDVR_Enabled" /d 0 \ No newline at end of file diff --git a/Scripts/Others/Disable-GetEvenMoreOut.ps1 b/Scripts/Others/Disable-GetEvenMoreOut.ps1 new file mode 100644 index 0000000..39e7cda --- /dev/null +++ b/Scripts/Others/Disable-GetEvenMoreOut.ps1 @@ -0,0 +1,3 @@ +reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager /v "SubscribedContent-338388Enabled" /d "0" /t REG_DWORD /f +reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager /v "SubscribedContent-338389Enabled" /d "0" /t REG_DWORD /f +reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager /v "SubscribedContent-353696Enabled" /d "0" /t REG_DWORD /f \ No newline at end of file diff --git a/Scripts/Others/Enable-SyncTime.ps1 b/Scripts/Others/Enable-SyncTime.ps1 new file mode 100644 index 0000000..2961f8f --- /dev/null +++ b/Scripts/Others/Enable-SyncTime.ps1 @@ -0,0 +1,5 @@ +w32tm /unregister +w32tm /register +net start w32time +w32tm /config /manualpeerlist:"time.windows.com,0x1" /syncfromflags:manual /update +w32tm /resync diff --git a/Scripts/Others/Mute-Windows.ps1 b/Scripts/Others/Mute-Windows.ps1 new file mode 100644 index 0000000..9be1416 --- /dev/null +++ b/Scripts/Others/Mute-Windows.ps1 @@ -0,0 +1,2 @@ +$obj = new-object -com wscript.shell +$obj.SendKeys([char]173) \ No newline at end of file