confOS/windows11.bat
2022-10-17 20:17:27 +02:00

95 lines
4.8 KiB
Batchfile

@ECHO off
:: Start as administrator
fltmc >nul 2>&1 || (
echo Vous devez lancer le programme en tant qu'administrateur.
PowerShell Start -Verb RunAs '%0' 2> nul || (
echo Clic droit, Exécuter en tant qu'administrateur
pause & exit 1
)
exit 0
)
:: Right click of Windows 10
REG ADD "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
:: Disabling the gamebar
REG ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\GameDVR" /v AppCaptureEnabled /t REG_DWORD /d 00000000 /f
REG ADD "HKEY_CURRENT_USER\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 00000000 /f
:: Disabling widgets
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Dsh" /v AllowNewsAndInterests /t REG_DWORD /d 00000000 /f
:: Disabling hibernation
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 00000000 /f
powercfg /H off
:: Disabling the SysMain service
sc stop "SysMain" & sc config "SysMain" start=disabled
:: Added confirmation when trashing
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v ConfirmFileDelete /t REG_DWORD /d 00000001 /f
:: Don't create a Zone:Identify
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments" /v SaveZoneInformation /t REG_DWORD /d 00000001 /f
:: Disables memory integrity, see https://support.microsoft.com/en-us/windows/options-to-optimize-gaming-performance-in-windows-11-a255f612-2949-4373-a566-ff6f3f474613
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v Enabled /t REG_DWORD /d 00000000 /f
:: Application downloads
echo Y | winget list >nul
winget install -h Mozilla.Firefox
winget install -h 7zip.7zip
winget install -h Discord.Discord
winget install -h Valve.Steam
winget install -h voidtools.Everything.Lite
winget install -h VideoLAN.VLC
winget install -h File-New-Project.EarTrumpet
winget install -h EclipseAdoptium.Temurin.17.JDK
winget install -h Microsoft.VisualStudioCode
winget install -h GIMP.GIMP
winget install -h DuongDieuPhap.ImageGlass
winget install -h ONLYOFFICE.DesktopEditors
winget install -h PolyMC.PolyMC
winget install -h RiotGames.LeagueOfLegends.EUW
winget install -h RiotGames.Valorant.EU
winget install -h OBSProject.OBSStudio
winget install -h Parsec.Parsec
winget install -h Microsoft.PowerToys
winget install -h OpenWhisperSystems.Signal
winget install -h HandBrake.HandBrake
winget install -h Front.scrcpy+
winget install -h Obsidian.Obsidian
winget install -h KDE.KDEConnect
winget install -h HeroicGamesLauncher.HeroicGamesLauncher
winget install -h Microsoft.PowerShell
:: Install WSL
wsl --install
:: Install Spotify
powershell -Command "&{[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12}; """"& { $((Invoke-WebRequest -UseBasicParsing 'https://raw.githubusercontent.com/amd64fox/SpotX/main/Install.ps1').Content)} -confirm_uninstall_ms_spoti -confirm_spoti_recomended_over -podcasts_on -cache_on -block_update_off -start_spoti"""" | Invoke-Expression"
:: Firefox configuration
powershell -Command "Invoke-WebRequest -Uri https://git.kennel.ml/Anri/confOS/raw/branch/main/.mozilla/firefox/user.js -OutFile %APPDATA%\Mozilla\Firefox\Profiles\*.default-release\user.js"
powershell -Command "Invoke-WebRequest -Uri https://git.kennel.ml/Anri/confOS/raw/branch/main/.mozilla/firefox/extensions/Dark-Reader-Settings.json -OutFile %HOMEPATH%\Downloads\Dark-Reader-Settings.json"
powershell -Command "Invoke-WebRequest -Uri https://git.kennel.ml/Anri/confOS/raw/branch/main/.mozilla/firefox/extensions/SponsorBlockConfig.json -OutFile %HOMEPATH%\Downloads\SponsorBlockConfig.json"
echo La configuration des différents Addons de Firefox est présente dans le dossier %HOMEPATH%\Downloads.
:: C++ Libraries
echo Rend toi sur https://www.techpowerup.com/download/visual-c-redistributable-runtime-package-all-in-one/ et installe les bibliothèques C++.
:: User Diag for drivers
powershell -Command "Invoke-WebRequest -Uri https://userdiag.com/download -OutFile %HOMEPATH%\Downloads\UserDiag.exe"
echo Installe les pilotes, pour connaître la liste des pilotes, utilise UserDiag (cf. dossier Téléchargements)
:: W10Privacy
powershell -Command "Invoke-WebRequest -Uri https://git.kennel.ml/Anri/confOS/raw/branch/main/W10Privacy.ini -OutFile %HOMEPATH%\Downloads\W10Privacy.ini"
echo Ensuite, utilise W10Privacy (https://www.w10privacy.de/deutsch-start/download/) avec le fichier présent dans %HOMEPATH%\Downloads (version 4.0.0.1).
echo Fais un tour des paramètres Windows, après avoir fait toutes les mises à jour disponible sur le PC.
echo Enfin, redémarre l'ordinateur
pause
exit /b