confOS/windows11.bat

425 lines
18 KiB
Batchfile
Raw Normal View History

2023-04-05 12:36:58 +02:00
@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
2022-09-30 03:33:13 +02:00
2023-05-17 16:55:47 +02:00
SET "repo=https://git.mylloon.fr/Anri/confOS/raw/branch/main"
2023-11-05 14:51:37 +01:00
SET "local=%HOMEPATH%\Documents\Local"
2023-05-17 16:55:47 +02:00
2023-11-07 04:51:01 +01:00
MKDIR "!local!" 2>NUL
2023-05-17 19:05:36 +02:00
2024-04-08 19:33:13 +02:00
:: => NO-ADMIN RIGHTS <=
2023-05-18 01:05:56 +02:00
fltmc >NUL 2>&1 || (
2024-07-02 11:16:26 +02:00
ECHO Please wait until the administrator popup appears.
2023-11-07 04:43:34 +01:00
2024-02-09 21:53:17 +01:00
:: === Update winget to latest version ==
PowerShell -Command "" ^
"Invoke-WebRequest -Uri https://aka.ms/getwinget -OutFile winget.msixbundle;" ^
"Add-AppPackage -ForceApplicationShutdown .\winget.msixbundle;" ^
"del .\winget.msixbundle"
2024-04-08 17:54:06 +02:00
2024-07-02 11:09:22 +02:00
:: === Scripts from ./windows directory ==
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/update.bat -OutFile '!local!\update.bat'"
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/clean.bat -OutFile '!local!\ctmpf.bat'"
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/spotify.bat -OutFile '!local!\blockthespot.bat'"
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/vencord.bat -OutFile '!local!\vencord_installer.bat'"
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/fix_nvidia_wsl.bat -OutFile '!local!\fix_nvidia_wsl.bat'"
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/fix_mihoyo_shortcut.bat -OutFile '!local!\fix_mihoyo_shortcut.bat'"
2024-08-20 17:41:42 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/start_obs_as_shadowplay.bat -OutFile '%LOCALAPPDATA%\start_obs_as_shadowplay.bat'"
2024-07-02 11:09:22 +02:00
:: === Install Spotify ==
DEL "%APPDATA%\Spotify"
2024-07-02 11:09:22 +02:00
:: Use already downloaded script
2023-11-05 14:51:37 +01:00
ECHO Y| CMD /c "!local!\blockthespot.bat" yes
PowerShell -Command "Stop-Process -Name Spotify -ErrorAction SilentlyContinue"
:: Start as administrator
PowerShell Start -Verb RunAs "%0 noskipadmin" 2>NUL || (
EXIT 1
)
EXIT 0
2022-09-30 03:33:13 +02:00
)
2024-04-08 19:33:13 +02:00
:: => ADMIN RIGHTS <=
2024-04-08 17:54:06 +02:00
2024-07-02 11:13:58 +02:00
IF NOT "%1"=="noskipadmin" (
ECHO You have to run the script as normal user first.
PAUSE
EXIT 0
)
2024-04-08 17:54:06 +02:00
:: === Registery modifications ==
ECHO Registery entries...
2023-11-07 04:43:34 +01:00
:: Right click of Windows 10
2024-05-12 14:54:32 +02:00
:: REG ADD "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
2022-09-30 03:33:13 +02:00
2023-11-07 04:43:34 +01:00
:: Disabling widgets
2023-05-18 13:47:37 +02:00
REG ADD "HKLM\Software\Policies\Microsoft\Dsh" /v AllowNewsAndInterests /t REG_DWORD /d 0 /f
2022-09-30 03:33:13 +02:00
2023-11-07 04:43:34 +01:00
:: Disabling hibernation (prevents computer to really shutdown)
2023-05-18 13:47:37 +02:00
REG ADD "HKLM\System\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 0 /f
2022-09-30 03:33:13 +02:00
powercfg /H off
2023-11-07 04:43:34 +01:00
:: Disabling the SysMain service (preload some apps in memory)
2022-09-30 03:33:13 +02:00
sc stop "SysMain" & sc config "SysMain" start=disabled
2023-11-07 04:43:34 +01:00
:: Added confirmation when trashing
2023-05-18 13:47:37 +02:00
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v ConfirmFileDelete /t REG_DWORD /d 1 /f
2022-09-30 03:33:13 +02:00
2024-04-08 21:44:48 +02:00
:: Don't create Zone.Identifier
2023-05-18 13:47:37 +02:00
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments" /v SaveZoneInformation /t REG_DWORD /d 1 /f
2022-09-30 03:33:13 +02:00
2023-11-07 04:43:34 +01:00
:: Disables memory integrity
2022-10-17 21:16:25 +02:00
:: see https://support.microsoft.com/en-us/windows/options-to-optimize-gaming-performance-in-windows-11-a255f612-2949-4373-a566-ff6f3f474613
2023-05-18 13:47:37 +02:00
REG ADD "HKLM\System\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v Enabled /t REG_DWORD /d 0 /f
2023-11-07 04:43:34 +01:00
:: Disables sticky keys
2023-05-18 13:45:03 +02:00
REG ADD "HKCU\Control Panel\Accessibility\StickyKeys" /v Flags /t REG_SZ /d 506 /f
2022-12-21 00:54:54 +01:00
2024-04-17 16:14:27 +02:00
:: Remove default shortcuts for changing input language and keyboard layout
2024-04-17 16:14:59 +02:00
:: WIN+Space still available
2024-04-17 16:14:27 +02:00
REG ADD "HKCU\Keyboard Layout\toggle" /v "Hotkey" /t REG_SZ /d 3 /f
REG ADD "HKCU\Keyboard Layout\toggle" /v "Language Hotkey" /t REG_SZ /d 3 /f
2023-11-07 04:43:34 +01:00
:: Disable Game Bar
2023-05-18 13:47:37 +02:00
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\GameDVR" /v AppCaptureEnabled /t REG_DWORD /d 0 /f
REG ADD "HKCU\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 0 /f
2023-05-16 15:53:50 +02:00
2023-11-07 04:43:34 +01:00
:: Edge tweaks
2023-05-18 13:47:37 +02:00
REG ADD "HKLM\Software\Policies\Microsoft\Edge" /v HubsSidebarEnabled /t REG_DWORD /d 0 /f
REG ADD "HKLM\Software\Policies\Microsoft\Edge" /v ShowRecommendationsEnabled /t REG_DWORD /d 0 /f
2024-04-22 02:32:41 +02:00
REG ADD "HKLM\Software\Policies\Microsoft\Edge" /v SpotlightExperiencesAndRecommendationsEnabled /t REG_DWORD /d 0 /f
2023-05-17 13:07:33 +02:00
2023-11-07 04:43:34 +01:00
:: Disable Windows Copilot
2023-11-05 17:43:08 +01:00
REG ADD "HKCU\Software\Policies\Microsoft\Windows\WindowsCopilot" /v TurnOffWindowsCopilot /t REG_DWORD /d 1 /f
2023-11-07 04:43:34 +01:00
:: Disable checkboxes in explorer
2023-11-05 21:13:17 +01:00
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v AutoCheckSelect /t REG_DWORD /d 0 /f
2024-04-22 02:32:41 +02:00
:: Disable web search in start menu
:: TODO: Need testing
:: REG ADD "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f
2024-05-03 20:13:04 +02:00
:: Disable ad in file explorer
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowSyncProviderNotifications /t REG_DWORD /d 0 /f
:: Disable ad in login screen
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v RotatingLockScreenOverlayEnabled /t REG_DWORD /d 0 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SubscribedContent-338387Enabled /t REG_DWORD /d 0 /f
:: Disable ad in settings and notifications
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SubscribedContent-338393Enabled /t REG_DWORD /d 0 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SubscribedContent-353694Enabled /t REG_DWORD /d 0 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SubscribedContent-353696Enabled /t REG_DWORD /d 0 /f
:: Disable ad at boot
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement" /v ScoobeSystemSettingEnabled /t REG_DWORD /d 0 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SubscribedContent-310093Enabled /t REG_DWORD /d 0 /f
:: Disable targeted ad
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v Enabled /t REG_DWORD /d 0 /f
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Privacy" /v TailoredExperiencesWithDiagnosticDataEnabled /t REG_DWORD /d 0 /f
:: Disable ad in start menu
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_IrisRecommendations /t REG_DWORD /d 0 /f
2024-04-08 17:54:06 +02:00
2024-04-17 16:30:56 +02:00
:: === Install optional features ==
PowerShell -Command "" ^
"Get-WindowsCapability -Online -Name 'App.WirelessDisplay.Connect*' | Add-WindowsCapability -Online"
2023-04-23 10:46:38 +02:00
:: === WinGet ==
2022-10-17 21:16:25 +02:00
:: Auto accept ToT
2023-04-05 12:38:43 +02:00
ECHO Y | winget list >NUL
2024-05-16 23:49:18 +02:00
SET "pmi=winget install --silent --exact"
2023-04-23 10:46:38 +02:00
2023-05-18 01:19:20 +02:00
:: C++ libraries
SET ^"cpp_libs=^
Microsoft.VCRedist.2005.x86 Microsoft.VCRedist.2005.x64 ^
Microsoft.VCRedist.2008.x86 Microsoft.VCRedist.2008.x64 ^
Microsoft.VCRedist.2010.x86 Microsoft.VCRedist.2010.x64 ^
Microsoft.VCRedist.2012.x86 Microsoft.VCRedist.2012.x64 ^
Microsoft.VCRedist.2013.x86 Microsoft.VCRedist.2013.x64 ^
Microsoft.VCRedist.2015+.x86 Microsoft.VCRedist.2015+.x64"
2023-05-17 11:19:39 +02:00
2023-11-05 14:35:29 +01:00
ECHO C++ libraries...
2023-05-17 11:19:39 +02:00
for %%i in (!cpp_libs!) do (
!pmi! %%i
2023-05-17 11:19:39 +02:00
)
2023-05-18 01:19:20 +02:00
:: .NET libraries
SET ^"net_libs=^
Microsoft.DotNet.DesktopRuntime.3_1 Microsoft.DotNet.SDK.3_1 ^
Microsoft.DotNet.DesktopRuntime.5 Microsoft.DotNet.SDK.5 ^
Microsoft.DotNet.DesktopRuntime.6 Microsoft.DotNet.SDK.6 ^
2023-12-26 23:07:58 +01:00
Microsoft.DotNet.DesktopRuntime.7 Microsoft.DotNet.SDK.7 ^
Microsoft.DotNet.DesktopRuntime.8 Microsoft.DotNet.SDK.8"
2023-05-18 01:19:20 +02:00
2023-11-05 14:35:29 +01:00
ECHO .NET libraries...
2023-05-18 01:19:20 +02:00
for %%i in (!net_libs!) do (
!pmi! %%i
2023-05-18 01:19:20 +02:00
)
2023-05-18 01:19:32 +02:00
:: Java dev kits
SET ^"java_jdk=^
2024-08-07 17:48:55 +02:00
Oracle.JavaRuntimeEnvironment EclipseAdoptium.Temurin.17.JDK ^
EclipseAdoptium.Temurin.21.JDK"
2023-05-18 01:19:32 +02:00
2023-11-05 14:35:29 +01:00
ECHO JDK...
2023-07-06 17:21:31 +02:00
for %%i in (!java_jdk!) do (
!pmi! %%i
2023-05-18 01:19:32 +02:00
)
2024-05-11 16:49:39 +02:00
:: Drivers
2024-08-17 14:45:21 +02:00
SET ^"drivers=^
2024-05-11 16:49:39 +02:00
Nvidia.CUDA"
ECHO Drivers...
2024-08-17 14:45:21 +02:00
for %%i in (!drivers!) do (
2024-05-11 16:49:39 +02:00
!pmi! %%i
)
2023-04-23 10:46:38 +02:00
:: Applications
SET ^"apps=^
2024-08-17 14:45:21 +02:00
Discord.Discord Spotify.Spotify Mozilla.Firefox M2Team.NanaZip GIMP.GIMP ^
voidtools.Everything.Lite VideoLAN.VLC Obsidian.Obsidian Parsec.Parsec ^
2024-07-24 11:23:59 +02:00
Microsoft.VisualStudioCode Bitwarden.Bitwarden sylikc.JPEGView ^
TheDocumentFoundation.LibreOffice Armin2208.WindowsAutoNightMode ^
2024-01-28 17:46:47 +01:00
OBSProject.OBSStudio Xournal++.Xournal++ Microsoft.PowerToys KDE.KDEConnect ^
2024-05-12 14:54:32 +02:00
OpenWhisperSystems.Signal TenacityTeam.Tenacity Microsoft.PowerShell"
2023-04-23 10:46:38 +02:00
2023-11-05 14:35:29 +01:00
ECHO Apps...
2023-04-23 10:46:38 +02:00
for %%i in (!apps!) do (
!pmi! %%i
2023-04-23 10:46:38 +02:00
)
2024-08-17 14:45:21 +02:00
:: Games related, temporary disable local for exclamation mark escaping
SETLOCAL DISABLEDELAYEDEXPANSION
SET ^"games=^
2024-02-12 10:25:02 +01:00
RiotGames.LeagueOfLegends.EUW RiotGames.Valorant.EU Valve.Steam ^
2024-03-15 18:26:51 +01:00
HeroicGamesLauncher.HeroicGamesLauncher PrismLauncher.PrismLauncher ^
2024-08-17 14:45:21 +02:00
Ryujinx.Ryujinx Peppy.Osu^^!"
SETLOCAL ENABLEDELAYEDEXPANSION
2023-05-18 15:19:02 +02:00
2023-11-05 14:35:29 +01:00
ECHO Games...
2023-05-18 15:19:02 +02:00
for %%i in (!games!) do (
!pmi! %%i
2023-05-18 15:19:02 +02:00
)
2024-04-08 19:33:13 +02:00
2024-04-08 17:54:06 +02:00
:: === Ryujinx shortcut ==
:: Installed from winget as a portable app
2024-03-15 18:26:51 +01:00
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('%APPDATA%\Microsoft\Windows\Start Menu\Programs\Ryujinx.lnk');" ^
"$Shortcut.TargetPath = $exe;" ^
"$Shortcut.Save()"
2024-04-08 17:54:06 +02:00
2023-08-11 14:27:37 +02:00
:: === Install WSL ==
2023-11-05 14:35:29 +01:00
ECHO WSL...
2023-11-05 17:33:27 +01:00
wsl --install --no-distribution
2022-09-30 03:33:13 +02:00
2024-04-08 17:54:06 +02:00
2024-04-29 13:23:08 +02:00
:: === Activate Windows ==
:: TODO: Fix command, see https://massgrave.dev/command_line_switches#uses-in-powershell-one-liner
:: PowerShell -Command "" ^
2024-08-17 14:48:23 +02:00
:: "& ([ScriptBlock]::Create((irm https://get.activated.win )))" ^
2024-04-29 13:23:08 +02:00
:: "/HWID"
2024-04-08 17:54:06 +02:00
:: === Modules for Windows Update ==
2023-11-07 04:43:34 +01:00
PowerShell -Command "Install-PackageProvider -Name NuGet -Force"
PowerShell -Command "Install-Module -Name PSWindowsUpdate -Force"
2024-04-08 17:54:06 +02:00
2024-04-08 17:55:48 +02:00
:: === Geek Uninstaller ==
2024-07-02 11:23:44 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/geek.bat -OutFile '%TEMP%\geek.bat'"
CMD /c "%TEMP%\geek.bat" yes
2023-05-17 19:05:55 +02:00
2024-04-08 17:54:06 +02:00
:: === LosslessCut ==
2024-07-02 12:15:42 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/losslesscut.bat -OutFile '%TEMP%\losslesscut.bat'"
CMD /c "%TEMP%\losslesscut.bat" yes
2024-04-08 17:54:06 +02:00
:: === DSR ==
2024-07-02 12:15:42 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/dsr.bat -OutFile '%TEMP%\dsr.bat'"
CMD /c "%TEMP%\dsr.bat" yes
2024-04-08 17:54:06 +02:00
:: === Vencord ==
2024-04-18 01:17:58 +02:00
:: Use already downloaded script
2023-11-05 14:51:37 +01:00
CMD /c "!local!\vencord_installer.bat" yes
2022-12-24 16:16:58 +01:00
2024-04-08 17:54:06 +02:00
:: === OpenTabletDriver ==
2023-11-05 14:35:29 +01:00
ECHO OpenTabletDriver...
PowerShell -Command "" ^
"$archive = '%TEMP%\OpenTabletDriver.win-x64.zip';" ^
2024-02-10 03:17:58 +01:00
"Invoke-WebRequest -Uri https://github.com/OpenTabletDriver/OpenTabletDriver/releases/latest/download/OpenTabletDriver.win-x64.zip -OutFile $archive;" ^
"Expand-Archive -Path $archive -DestinationPath '%ProgramFiles%\OpenTabletDriver' -Force;" ^
"$WshShell = New-Object -comObject WScript.Shell;" ^
"$Shortcut = $WshShell.CreateShortcut('%APPDATA%\Microsoft\Windows\Start Menu\Programs\OpenTabletDriver.lnk');" ^
"$Shortcut.TargetPath = '%ProgramFiles%\OpenTabletDriver\OpenTabletDriver.UX.Wpf.exe';" ^
"$Shortcut.WorkingDirectory = '%ProgramFiles%\OpenTabletDriver';" ^
"$Shortcut.Save();" ^
"Remove-Item -Force $archive"
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenTabletDriver" /f /v DisplayName /t REG_SZ /d "OpenTabletDriver"
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenTabletDriver" /f /v InstallLocation /t REG_SZ /d "%ProgramFiles%\OpenTabletDriver"
2023-01-04 11:44:42 +01:00
2023-11-07 04:43:34 +01:00
:: WindowsInk for OpenTabletDriver
ECHO WindowsInk support for OpenTabletDriver...
PowerShell -Command "Invoke-WebRequest -Uri https://github.com/X9VoiD/vmulti-bin/releases/download/v1.0/VMulti.Driver.zip -OutFile '%TEMP%\VMulti-Driver.zip'"
2023-11-05 19:44:03 +01:00
PowerShell -Command "Expand-Archive -Path '%TEMP%\VMulti-Driver.zip' -DestinationPath '%TEMP%\VMulti-Driver' -Force"
2023-11-07 04:51:01 +01:00
CALL "%TEMP%\VMulti-Driver\install_hiddriver.bat"
PowerShell -Command "Invoke-WebRequest -Uri https://github.com/X9VoiD/VoiDPlugins/releases/latest/download/WindowsInk.zip -OutFile '%TEMP%\WindowsInk.zip'"
2023-11-05 19:44:03 +01:00
PowerShell -Command "Expand-Archive -Path '%TEMP%\WindowsInk.zip' -DestinationPath '%LOCALAPPDATA%\OpenTabletDriver\Plugins\Windows Ink' -Force"
2023-01-04 12:16:11 +01:00
2023-11-11 19:46:14 +01:00
:: Presets of OpenTabletDriver
ECHO Downloading OpenTabletDriver presets...
PowerShell -Command "Invoke-WebRequest -Uri !repo!/opentabletdriver/vertical-main.json -OutFile '%LOCALAPPDATA%\OpenTabletDriver\Presets\vertical-main.json'"
PowerShell -Command "Invoke-WebRequest -Uri !repo!/opentabletdriver/vertical-second.json -OutFile '%LOCALAPPDATA%\OpenTabletDriver\Presets\vertical-second.json'"
2023-11-11 19:42:31 +01:00
2023-11-11 19:53:41 +01:00
:: Settings of OpenTabletDriver, using 'vertical-main.json' as default settings
ECHO Setting up OpenTabletDriver...
XCOPY "%LOCALAPPDATA%\OpenTabletDriver\Presets\vertical-main.json" "%LOCALAPPDATA%\OpenTabletDriver\settings.json" /-I /Y
2024-03-14 15:48:48 +01:00
:: Start minimized at startup
PowerShell -Command "" ^
"$WshShell = New-Object -comObject WScript.Shell;" ^
"$Shortcut = $WshShell.CreateShortcut('%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup\OpenTabletDriver.lnk');" ^
"$Shortcut.TargetPath = '%ProgramFiles%\OpenTabletDriver\OpenTabletDriver.UX.Wpf.exe';" ^
"$Shortcut.WorkingDirectory = '%ProgramFiles%\OpenTabletDriver';" ^
"$Shortcut.WindowStyle = 7;" ^
"$Shortcut.Save()"
2024-04-08 17:54:06 +02:00
:: === NOWT ==
2024-07-02 12:15:42 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/nowt.bat -OutFile '%TEMP%\nowt.bat'"
CMD /c "%TEMP%\nowt.bat" yes
2023-11-07 04:19:43 +01:00
2024-04-08 17:54:06 +02:00
:: === Deceive ==
2024-07-02 12:15:42 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/deceive.bat -OutFile '%TEMP%\deceive.bat'"
CMD /c "%TEMP%\deceive.bat" yes
2023-11-07 04:25:47 +01:00
2024-04-08 17:54:06 +02:00
:: === Xournal++ ==
2024-04-08 17:59:45 +02:00
:: TODO: Winget report an incorrect hash on installation,
:: that's why we're installing it manually
2023-11-07 04:43:34 +01:00
:: ECHO Xournal++...
:: PowerShell -Command "" ^
:: "$repo = 'xournalpp/xournalpp';" ^
:: "$releases = \"https://api.github.com/repos/$repo/releases\";" ^
:: "$tag = (Invoke-WebRequest $releases | ConvertFrom-Json)[1].tag_name;" ^
:: "$file = \"xournalpp-$($tag.substring(1))-windows.zip\";" ^
:: "$link = \"https://github.com/$repo/releases/download/$tag/$file\";" ^
:: "$archive = 'xournalpp.zip';" ^
:: "$outfile = Join-Path -Path $env:TEMP -ChildPath $archive;" ^
:: "Invoke-WebRequest -Uri $link -OutFile $outfile;" ^
2023-11-07 04:43:34 +01:00
:: "cd $env:TEMP;" ^
:: "Expand-Archive -Path $archive -DestinationPath $env:TEMP -Force;" ^
:: "$exe = $env:TEMP + '\' + $file.Substring(0, $file.Length - 3) + 'exe';" ^
:: "Start-Process $exe /S;" ^
:: "Remove-Item -Force $outfile;" ^
:: "Remove-Item -Force $exe"
2023-11-07 04:43:34 +01:00
2024-04-08 17:54:06 +02:00
:: === Minecraft ==
:: Rename shortcut for Minecraft
RENAME "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Prism Launcher.lnk" Minecraft.lnk
:: === Cubiomes viewer ==
2024-07-02 12:15:42 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/cubiomesviewer.bat -OutFile '%TEMP%\cubiomesviewer.bat'"
CMD /c "%TEMP%\cubiomesviewer.bat" yes
2024-02-04 22:50:34 +01:00
2023-11-07 04:43:34 +01:00
2024-04-08 17:54:06 +02:00
:: === Firefox configuration ==
:: Open and close Firefox for the first time, generating a profile
2023-11-07 04:43:34 +01:00
"%ProgramFiles%\Mozilla Firefox\firefox.exe"
TIMEOUT 5
TASKKILL /im firefox.exe /F
ECHO Firefox configuration...
2024-04-18 01:29:42 +02:00
FOR /F "usebackq delims=" %%i IN (`dir /B /S "%APPDATA%\Mozilla\Firefox\Profiles\*.default-release"`) DO SET "vbc=%%i"
PowerShell -Command "Invoke-WebRequest -Uri !repo!/.mozilla/firefox/user.js -OutFile '!vbc!\user.js'"
2023-11-07 04:43:34 +01:00
2024-04-08 17:54:06 +02:00
:: Download addons settings in "Download" folder
PowerShell -Command "Invoke-WebRequest -Uri !repo!/.mozilla/firefox/extensions/SponsorBlockConfig.json -OutFile '%HOMEPATH%\Downloads\SponsorBlockConfig.json'"
PowerShell -Command "Invoke-WebRequest -Uri !repo!/.mozilla/firefox/extensions/auto-tab-discard-preferences.json -OutFile '%HOMEPATH%\Downloads\auto-tab-discard-preferences.json'"
2024-07-02 11:16:26 +02:00
ECHO Configuration files for Firefox Addons are in the download folder (%HOMEPATH%\Downloads).
2023-11-07 04:43:34 +01:00
2024-04-08 17:54:06 +02:00
:: === WindowsAutoNightMode ==
2023-11-05 14:35:29 +01:00
ECHO WindowsAutoNightMode configuration...
2023-11-07 04:51:01 +01:00
MKDIR "%APPDATA%\AutoDarkMode" 2>NUL
PowerShell -Command "Invoke-WebRequest -Uri !repo!/.config/WindowsAutoNightMode/config.yaml -OutFile '%APPDATA%\AutoDarkMode\config.yaml'"
2023-11-05 19:52:00 +01:00
"%LOCALAPPDATA%\Programs\AutoDarkMode\adm-app\AutoDarkModeApp.exe"
2023-08-18 03:32:06 +02:00
2024-04-08 17:54:06 +02:00
:: === OBS ==
2024-08-20 18:07:44 +02:00
:: Create directories for configurations
2024-08-20 17:41:42 +02:00
MKDIR "%ProgramFiles%\obs-studio\config\obs-studio\basic\profiles\ReplayBuffer" 2>NUL
2024-08-20 18:07:44 +02:00
MKDIR "%ProgramFiles%\obs-studio\config\obs-studio\basic\scenes" 2>NUL
:: Download configuration
2024-08-20 18:50:09 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/.config/obs/global.ini -OutFile '%ProgramFiles%\obs-studio\config\obs-studio\global.ini'"
2024-08-20 18:03:46 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/.config/obs/basic/profiles/ReplayBuffer/basic.ini -OutFile '%ProgramFiles%\obs-studio\config\obs-studio\basic\profiles\ReplayBuffer\basic.ini'"
2024-08-21 00:48:20 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/.config/obs/basic/profiles/ReplayBuffer/recordEncoder.json -OutFile '%ProgramFiles%\obs-studio\config\obs-studio\basic\profiles\ReplayBuffer\recordEncoder.json'"
2024-08-20 18:03:46 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/.config/obs/basic/scenes/ReplayBuffer.json -OutFile '%ProgramFiles%\obs-studio\config\obs-studio\basic\scenes\ReplayBuffer.json'"
2024-08-20 17:41:42 +02:00
2024-08-21 13:21:15 +02:00
:: OBS Scripts
PowerShell -Command "" ^
"$archive = '%TEMP%\obs-replay-folders.zip';" ^
"Invoke-WebRequest -Uri https://github.com/Mylloon/obs-replay-folders/releases/latest/download/obs-replay-folders.zip -OutFile $archive;" ^
"Expand-Archive -Path $archive -DestinationPath '%ProgramFiles%\obs-studio\config' -Force;" ^
"Remove-Item -Force $archive"
2024-08-20 18:07:44 +02:00
:: Setup the autostart of shadowplay
2024-08-21 00:55:17 +02:00
SCHTASKS /Create /RU "%USERNAME%" /SC ONLOGON /TN "OBS Shadowplay" ^
/TR "'%LOCALAPPDATA%\start_obs_as_shadowplay.bat'" ^
2024-08-21 00:55:17 +02:00
/F /RL HIGHEST
2024-08-20 17:41:42 +02:00
:: Allow system to go in sleep mode when OBS is running
POWERCFG /REQUESTSOVERRIDE PROCESS obs64.exe DISPLAY SYSTEM AWAYMODE
2023-11-07 04:43:34 +01:00
2024-08-21 19:14:47 +02:00
ECHO About OBS, you may need to adjust the screen ID by opening the OBS app
ECHO in the systray as it may be not the same as the one presaved.
2024-04-08 18:17:17 +02:00
:: === miHoYo Games launcher ==
2024-07-02 12:15:42 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/collapse.bat -OutFile '%TEMP%\collapse.bat'"
CMD /c "%TEMP%\collapse.bat" yes
2024-04-08 18:17:17 +02:00
2024-08-17 14:48:23 +02:00
:: Fix games shortcut
2024-04-18 01:18:07 +02:00
CMD /c "!local!\fix_mihoyo_shortcut.bat" yes
2024-04-18 01:41:34 +02:00
2024-04-11 21:55:48 +02:00
:: === FiveM ==
2024-07-02 12:15:42 +02:00
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/installers/fivem.bat -OutFile '%TEMP%\fivem.bat'"
CMD /c "%TEMP%\fivem.bat" yes
2024-04-11 21:55:48 +02:00
2024-04-08 18:17:17 +02:00
2024-03-10 22:36:42 +01:00
:: === DaVinci Resolve ==
2024-07-02 11:16:26 +02:00
ECHO Useful link to download the latest version of DaVinci Resolve:
2024-03-10 22:36:42 +01:00
ECHO https://www.blackmagicdesign.com/support/family/davinci-resolve-and-fusion
2024-04-08 17:55:48 +02:00
2023-11-07 04:43:34 +01:00
:: === Drivers notice ==
2024-07-02 11:16:26 +02:00
ECHO Installs drivers, for a list of drivers, use UserDiag https://userdiag.com/download
ECHO For NVidia, use NVC and DDU.
2023-11-07 04:43:34 +01:00
2024-04-08 17:54:06 +02:00
2023-11-07 04:43:34 +01:00
:: === End message ==
2023-11-05 14:35:29 +01:00
ECHO ""
2024-07-02 11:16:26 +02:00
ECHO Take a look at your Windows settings, after you've done all the updates available on your PC.
ECHO Lastly, restart the computer.
2023-02-17 17:13:11 +01:00
PAUSE
2023-04-05 12:42:54 +02:00
EXIT /B