Skip to content

2.2 Version #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Scripts/Others/Advanced-Start.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shutdown.exe /r /o /f /t 0
7 changes: 7 additions & 0 deletions Scripts/Others/Change-IconSize.ps1
Original file line number Diff line number Diff line change
@@ -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
6 changes: 6 additions & 0 deletions Scripts/Others/Change-SystemLanguage.ps1
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions Scripts/Others/Disable-BackgroundApps.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Reg Add HKCU\Software\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications /v GlobalUserDisabled /t REG_DWORD /d 1 /f
5 changes: 5 additions & 0 deletions Scripts/Others/Disable-Cortana.ps1
Original file line number Diff line number Diff line change
@@ -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
2 changes: 2 additions & 0 deletions Scripts/Others/Disable-GameBar.ps1
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions Scripts/Others/Disable-GetEvenMoreOut.ps1
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions Scripts/Others/Enable-SyncTime.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
w32tm /unregister
w32tm /register
net start w32time
w32tm /config /manualpeerlist:"time.windows.com,0x1" /syncfromflags:manual /update
w32tm /resync
2 changes: 2 additions & 0 deletions Scripts/Others/Mute-Windows.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
$obj = new-object -com wscript.shell
$obj.SendKeys([char]173)
Loading