Add project files

This commit is contained in:
2025-09-28 14:45:34 +02:00
commit d3763e63f9
16 changed files with 16074 additions and 0 deletions

3
Services.cmd Normal file
View File

@@ -0,0 +1,3 @@
@echo off
powershell -Command "Get-ChildItem 'HKLM:\SYSTEM\CurrentControlSet\Services' | Where-Object { $_.Name -notmatch 'Xbl|Xbox' } | Foreach-Object { if ($null -ne (Get-ItemProperty -Path """Registry::$_""" -EA 0).Start) { Set-ItemProperty -Path """Registry::$_""" -Name 'SvcHostSplitDisable' -Type DWORD -Value 1 -Force -EA 0 } }"
reg add "HKLM\SYSTEM\CurrentControlSet\Control" /v "SvcHostSplitThresholdInKB" /t REG_DWORD /d "4294967295" /f