From 1ad0c55d3dcc96e583a6191cb048f088527ef6a7 Mon Sep 17 00:00:00 2001 From: Ikkxeer <137718457+ikkxeer@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:20:01 +0200 Subject: [PATCH 1/8] Add files via upload --- Scripts/Others/Change-SystemLanguage.ps1 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Scripts/Others/Change-SystemLanguage.ps1 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 From 9f80d4c67c557cae204348dfd9ce3f5a796dec49 Mon Sep 17 00:00:00 2001 From: Ikkxeer <137718457+ikkxeer@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:23:52 +0200 Subject: [PATCH 2/8] Add files via upload --- Scripts/Others/Enable-SyncTime.ps1 | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Scripts/Others/Enable-SyncTime.ps1 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 From 7a95345e0ad022abc2f5727482dbbc3a18432800 Mon Sep 17 00:00:00 2001 From: Ikkxeer <137718457+ikkxeer@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:32:42 +0200 Subject: [PATCH 3/8] Add files via upload --- Scripts/Others/Change-IconSize.ps1 | 7 +++++++ Scripts/Others/Disable-Cortana.ps1 | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 Scripts/Others/Change-IconSize.ps1 create mode 100644 Scripts/Others/Disable-Cortana.ps1 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/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 From efb450af16976e26ae9687037e37d0d50dc04d65 Mon Sep 17 00:00:00 2001 From: Ikkxeer <137718457+ikkxeer@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:43:46 +0200 Subject: [PATCH 4/8] Add files via upload --- Scripts/Others/Disable-GetEvenMoreOut.ps1 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Scripts/Others/Disable-GetEvenMoreOut.ps1 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 From 6fb3e96495c188abdd432be72d91274280d9ee09 Mon Sep 17 00:00:00 2001 From: Ikkxeer <137718457+ikkxeer@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:51:21 +0200 Subject: [PATCH 5/8] Add files via upload --- Scripts/Others/Disable-GameBar.ps1 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Scripts/Others/Disable-GameBar.ps1 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 From 89a695cd3e7a60c6402ef3f269bcfd4eb1692cce Mon Sep 17 00:00:00 2001 From: Ikkxeer <137718457+ikkxeer@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:53:04 +0200 Subject: [PATCH 6/8] Add files via upload --- Scripts/Others/Disable-BackgroundApps.ps1 | 1 + 1 file changed, 1 insertion(+) create mode 100644 Scripts/Others/Disable-BackgroundApps.ps1 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 From ee65275c22e4ddaec82507d20cfbee49660471bb Mon Sep 17 00:00:00 2001 From: Ikkxeer <137718457+ikkxeer@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:55:15 +0200 Subject: [PATCH 7/8] Add files via upload --- Scripts/Others/Mute-Windows.ps1 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Scripts/Others/Mute-Windows.ps1 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 From d5ffd45046452f8df1ab9dd0c59482bf19dff3ac Mon Sep 17 00:00:00 2001 From: Ikkxeer <137718457+ikkxeer@users.noreply.github.com> Date: Thu, 1 Aug 2024 13:01:36 +0200 Subject: [PATCH 8/8] Add files via upload --- Scripts/Others/Advanced-Start.ps1 | 1 + 1 file changed, 1 insertion(+) create mode 100644 Scripts/Others/Advanced-Start.ps1 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