Compare commits
No commits in common. "10b351b6916906a31929f731008bd78388bd90b3" and "ddf452bd52669ecb2e735199c1a318f2c38c2954" have entirely different histories.
10b351b691
...
ddf452bd52
1 changed files with 13 additions and 11 deletions
|
@ -100,17 +100,9 @@ REG ADD "HKCU\Software\Policies\Microsoft\Windows\WindowsCopilot" /v TurnOffWind
|
|||
:: Disable checkboxes in explorer
|
||||
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v AutoCheckSelect /t REG_DWORD /d 0 /f
|
||||
|
||||
:: Set "This PC" default window when opening explorer
|
||||
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v LaunchTo /t REG_DWORD /d 1 /f
|
||||
|
||||
:: Show file extension
|
||||
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt /t REG_DWORD /d 0 /f
|
||||
|
||||
:: Show hidden files
|
||||
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Hidden /t REG_DWORD /d 1 /f
|
||||
|
||||
:: Disable web search in start menu
|
||||
REG ADD "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f
|
||||
:: TODO: Need testing
|
||||
@REM REG ADD "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f
|
||||
|
||||
:: Disable ad in file explorer
|
||||
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowSyncProviderNotifications /t REG_DWORD /d 0 /f
|
||||
|
@ -213,7 +205,7 @@ for %%i in (!apps!) do (
|
|||
SET ^"games=^
|
||||
RiotGames.LeagueOfLegends.EUW RiotGames.Valorant.EU Valve.Steam ^
|
||||
HeroicGamesLauncher.HeroicGamesLauncher PrismLauncher.PrismLauncher ^
|
||||
ppy.osu pizzaboxer.Bloxstrap"
|
||||
Ryujinx.Ryujinx ppy.osu Roblox.Roblox"
|
||||
|
||||
ECHO Games...
|
||||
for %%i in (!games!) do (
|
||||
|
@ -221,6 +213,16 @@ for %%i in (!games!) do (
|
|||
)
|
||||
|
||||
|
||||
:: === Ryujinx shortcut ==
|
||||
:: Installed from winget as a portable app
|
||||
PowerShell -Command "" ^
|
||||
"$WshShell = New-Object -comObject WScript.Shell;" ^
|
||||
"$exe = (Get-ChildItem $env:LOCALAPPDATA\Microsoft\WinGet\Packages\Ryujinx.Ryujinx_Microsoft.Winget.*\publish\Ryujinx.exe).FullName;" ^
|
||||
"$Shortcut = $WshShell.CreateShortcut('!startmenu!\Ryujinx.lnk');" ^
|
||||
"$Shortcut.TargetPath = $exe;" ^
|
||||
"$Shortcut.Save()"
|
||||
|
||||
|
||||
:: === Install WSL ==
|
||||
ECHO WSL...
|
||||
wsl --install --no-distribution
|
||||
|
|
Loading…
Reference in a new issue