151 lines
8.2 KiB
Batchfile
151 lines
8.2 KiB
Batchfile
@ECHO off
|
|
|
|
:: Start as administrator
|
|
fltmc >nul 2>&1 || (
|
|
PowerShell Start -Verb RunAs '%0' 2> nul || (
|
|
exit 1
|
|
)
|
|
exit 0
|
|
)
|
|
|
|
:: === Right click of Windows 10 ==
|
|
REG ADD "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
|
|
|
|
:: === 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
|
|
|
|
:: === Disables sticky keys ==
|
|
REG ADD "HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys" /v Flags /t REG_SZ /d 506 /f
|
|
|
|
:: === Inverts the default shortcuts for changing input language and keyboard layout ==
|
|
REG ADD "HKEY_CURRENT_USER\Keyboard Layout\toggle" /v "Hotkey" /t REG_SZ /d 1 /f
|
|
REG ADD "HKEY_CURRENT_USER\Keyboard Layout\toggle" /v "Language Hotkey" /t REG_SZ /d 2 /f
|
|
|
|
:: === Application downloads ==
|
|
:: Auto accept ToT
|
|
ECHO Y | winget list >nul
|
|
|
|
winget install -he Mozilla.Firefox
|
|
winget install -he 7zip.7zip
|
|
winget install -he Discord.Discord
|
|
winget install -he Valve.Steam
|
|
winget install -he voidtools.Everything.Lite
|
|
winget install -he VideoLAN.VLC
|
|
winget install -he File-New-Project.EarTrumpet
|
|
winget install -he EclipseAdoptium.Temurin.17.JDK
|
|
winget install -he EclipseAdoptium.Temurin.8.JDK
|
|
winget install -he Microsoft.VisualStudioCode
|
|
winget install -he GIMP.GIMP
|
|
winget install -he DuongDieuPhap.ImageGlass
|
|
winget install -he ONLYOFFICE.DesktopEditors
|
|
winget install -he PrismLauncher.PrismLauncher
|
|
winget install -he RiotGames.LeagueOfLegends.EUW
|
|
winget install -he RiotGames.Valorant.EU
|
|
winget install -he OBSProject.OBSStudio
|
|
winget install -he Parsec.Parsec
|
|
winget install -he Microsoft.PowerToys
|
|
winget install -he OpenWhisperSystems.Signal
|
|
winget install -he HandBrake.HandBrake
|
|
winget install -he Front.scrcpy+
|
|
winget install -he Obsidian.Obsidian
|
|
winget install -he KDE.KDEConnect
|
|
winget install -he HeroicGamesLauncher.HeroicGamesLauncher
|
|
winget install -he Microsoft.PowerShell
|
|
winget install -he Eassos.DiskGenius
|
|
winget install -he Xournal++.Xournal++
|
|
|
|
:: === C++ Libraries ==
|
|
winget install -he Microsoft.VCRedist.2005.x86
|
|
winget install -he Microsoft.VCRedist.2005.x64
|
|
winget install -he Microsoft.VCRedist.2008.x86
|
|
winget install -he Microsoft.VCRedist.2008.x64
|
|
winget install -he Microsoft.VCRedist.2010.x86
|
|
winget install -he Microsoft.VCRedist.2010.x64
|
|
winget install -he Microsoft.VCRedist.2012.x86
|
|
winget install -he Microsoft.VCRedist.2012.x64
|
|
winget install -he Microsoft.VCRedist.2013.x86
|
|
winget install -he Microsoft.VCRedist.2013.x64
|
|
winget install -he Microsoft.VCRedist.2015+.x86
|
|
winget install -he Microsoft.VCRedist.2015+.x64
|
|
|
|
:: Install WSL
|
|
wsl --install
|
|
|
|
:: Install Spotify
|
|
PowerShell -Command "&{[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12}; """"& { $((Invoke-WebRequest -UseBasicParsing 'https://raw.githubusercontent.com/aMKDIR64fox/SpotX/main/Install.ps1').Content)} -confirm_uninstall_ms_spoti -confirm_spoti_recomended_over -podcasts_on -cache_on -block_update_off"""" | Invoke-Expression"
|
|
|
|
:: === Firefox configuration ==
|
|
"%ProgramFiles%\Mozilla Firefox\firefox.exe"
|
|
TASKKILL /im firefox.exe /F
|
|
|
|
for /F %%i in ('dir /B /S ^"%APPDATA%\Mozilla\Firefox\Profiles\*.default-release^"') do set vbc=%%i
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/confOS/raw/branch/main/.mozilla/firefox/user.js -OutFile '%vbc%/user.js'"
|
|
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/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.mylloon.fr/Anri/confOS/raw/branch/main/.mozilla/firefox/extensions/SponsorBlockConfig.json -OutFile '%HOMEPATH%\Downloads\SponsorBlockConfig.json'"
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/confOS/raw/branch/main/.mozilla/firefox/extensions/auto-tab-discard-preferences.json -OutFile '%HOMEPATH%\Downloads\auto-tab-discard-preferences.json'"
|
|
ECHO La configuration des differents Addons de Firefox est presente dans le dossier %HOMEPATH%\Downloads.
|
|
|
|
:: === User Diag for drivers ==
|
|
ECHO Installe les pilotes, pour connaître la liste des pilotes, utilise UserDiag https://userdiag.com/download
|
|
|
|
:: === W10Privacy ==
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/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 present dans %HOMEPATH%\Downloads (version 4.1.2.1).
|
|
|
|
:: === Modules ==
|
|
PowerShell -Command "Install-PackageProvider -Name NuGet -Force"
|
|
PowerShell -Command "Install-Module -Name PSWindowsUpdate -Force"
|
|
|
|
:: === Scripts ==
|
|
MKDIR %HOMEPATH%\Documents\Local
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/confOS/raw/branch/main/windows/ctmpf.bat -OutFile '%HOMEPATH%\Documents\Local\ctmpf.bat'"
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/confOS/raw/branch/main/windows/spotx.bat -OutFile '%HOMEPATH%\Documents\Local\spotx.bat'"
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/confOS/raw/branch/main/windows/update.bat -OutFile '%HOMEPATH%\Documents\Local\update.bat'"
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/confOS/raw/branch/main/windows/fix_nvidia_wsl.bat -OutFile '%HOMEPATH%\Documents\Local\fix_nvidia_wsl.bat'"
|
|
|
|
:: === OpenTabletDriver ==
|
|
:: Download
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://opentabletdriver.net/Release/Download/OpenTabletDriver.win-x64.zip -OutFile '%HOMEPATH%\Downloads\OpenTabletDriver.win-x64.zip'"
|
|
:: Extract
|
|
PowerShell -Command "Expand-Archive -Path '%HOMEPATH%\Downloads\OpenTabletDriver.win-x64.zip' -DestinationPath '%ProgramFiles%\OpenTabletDriver'"
|
|
:: Create shortcut
|
|
PowerShell -Command "& { $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.Save() }"
|
|
|
|
:: WindowsInk
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://github.com/X9VoiD/vmulti-bin/releases/download/v1.0/Driver.zip -OutFile '%HOMEPATH%\Downloads\Driver-VMulti.zip'"
|
|
:: Extract
|
|
PowerShell -Command "Expand-Archive -Path '%HOMEPATH%\Downloads\Driver-VMulti.zip' -DestinationPath '%HOMEPATH%\Downloads\Driver-VMulti'"
|
|
:: Install driver
|
|
CALL %HOMEPATH%\Downloads\Driver-VMulti\64\install_hiddriver.bat
|
|
:: Download plugin
|
|
PowerShell -Command "Invoke-WebRequest -Uri https://github.com/X9VoiD/VoiDPlugins/releases/latest/download/WindowsInk.zip -OutFile '%HOMEPATH%\Downloads\WindowsInk.zip'"
|
|
:: Extract plugin
|
|
PowerShell -Command "Expand-Archive -Path '%HOMEPATH%\Downloads\WindowsInk.zip' -DestinationPath '%LOCALAPPDATA%\OpenTabletDriver\Plugins\Windows Ink'"
|
|
|
|
:: === Miscellaneous ==
|
|
:: Rename shortcut for Minecraft
|
|
RENAME "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Prism Launcher.lnk" Minecraft.lnk
|
|
|
|
ECHO Fais un tour des paramètres Windows, apres avoir fait toutes les mises a jour disponible sur le PC.
|
|
ECHO Enfin, redemarre l'ordinateur
|
|
|
|
PAUSE
|
|
EXIT /b
|