all lowercase
This commit is contained in:
parent
758826b77f
commit
69cf22f002
4 changed files with 16 additions and 16 deletions
|
@ -1,8 +1,8 @@
|
||||||
@ECHO off
|
@echo off
|
||||||
|
|
||||||
:: Start as administrator
|
:: Start as administrator
|
||||||
fltmc >nul 2>&1 || (
|
fltmc >nul 2>&1 || (
|
||||||
PowerShell Start -Verb RunAs '%0' 2> nul || (
|
powershell Start -Verb RunAs '%0' 2> nul || (
|
||||||
exit 1
|
exit 1
|
||||||
)
|
)
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@ECHO off
|
@echo off
|
||||||
|
|
||||||
powershell -Command "&{[Net.ServicePointManager]::SecurityProtocol =" ^
|
powershell -Command "&{[Net.ServicePointManager]::SecurityProtocol =" ^
|
||||||
"[Net.SecurityProtocolType]::Tls12}; """"& {" ^
|
"[Net.SecurityProtocolType]::Tls12}; """"& {" ^
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
@ECHO off
|
@echo off
|
||||||
|
|
||||||
:: Start as administrator
|
:: Start as administrator
|
||||||
fltmc >nul 2>&1 || (
|
fltmc >nul 2>&1 || (
|
||||||
PowerShell Start -Verb RunAs '%0' 2> nul || (
|
powershell Start -Verb RunAs '%0' 2> nul || (
|
||||||
exit 1
|
exit 1
|
||||||
)
|
)
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
@ -1,42 +1,42 @@
|
||||||
@ECHO off
|
@echo off
|
||||||
|
|
||||||
:: Start as administrator
|
:: Start as administrator
|
||||||
fltmc >nul 2>&1 || (
|
fltmc >nul 2>&1 || (
|
||||||
PowerShell Start -Verb RunAs '%0' 2> nul || (
|
powershell Start -Verb RunAs '%0' 2> nul || (
|
||||||
exit 1
|
exit 1
|
||||||
)
|
)
|
||||||
exit 0
|
exit 0
|
||||||
)
|
)
|
||||||
|
|
||||||
:: === Right click of Windows 10 ==
|
:: === Right click of Windows 10 ==
|
||||||
REG ADD "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
|
reg ADD "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
|
||||||
|
|
||||||
:: === Disabling the gamebar ==
|
:: === 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\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
|
reg ADD "HKEY_CURRENT_USER\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 00000000 /f
|
||||||
|
|
||||||
:: === Disabling widgets ==
|
:: === Disabling widgets ==
|
||||||
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Dsh" /v AllowNewsAndInterests /t REG_DWORD /d 00000000 /f
|
reg ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Dsh" /v AllowNewsAndInterests /t REG_DWORD /d 00000000 /f
|
||||||
|
|
||||||
:: === Disabling hibernation ==
|
:: === Disabling hibernation ==
|
||||||
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 00000000 /f
|
reg ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 00000000 /f
|
||||||
powercfg /H off
|
powercfg /H off
|
||||||
|
|
||||||
:: === Disabling the SysMain service ==
|
:: === Disabling the SysMain service ==
|
||||||
sc stop "SysMain" & sc config "SysMain" start=disabled
|
sc stop "SysMain" & sc config "SysMain" start=disabled
|
||||||
|
|
||||||
:: === Added confirmation when trashing ==
|
:: === Added confirmation when trashing ==
|
||||||
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v ConfirmFileDelete /t REG_DWORD /d 00000001 /f
|
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 ==
|
:: === 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
|
reg ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments" /v SaveZoneInformation /t REG_DWORD /d 00000001 /f
|
||||||
|
|
||||||
:: === Disables memory integrity ==
|
:: === Disables memory integrity ==
|
||||||
:: see https://support.microsoft.com/en-us/windows/options-to-optimize-gaming-performance-in-windows-11-a255f612-2949-4373-a566-ff6f3f474613
|
:: 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
|
reg ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v Enabled /t REG_DWORD /d 00000000 /f
|
||||||
|
|
||||||
:: === Disables sticky keys ==
|
:: === Disables sticky keys ==
|
||||||
REG ADD "HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys" /v Flags /t REG_SZ /d 506 /f
|
reg ADD "HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys" /v Flags /t REG_SZ /d 506 /f
|
||||||
|
|
||||||
:: === Application downloads ==
|
:: === Application downloads ==
|
||||||
:: Auto accept ToT
|
:: Auto accept ToT
|
||||||
|
|
Loading…
Reference in a new issue