| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| windows:notes:misc [2025/05/30 00:02] – Sean Rhone | windows:notes:misc [2025/11/12 17:37] (current) – Sean Rhone |
|---|
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter" /v "EnabledV9" /t "REG_DWORD" /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter" /v "EnabledV9" /t "REG_DWORD" /d "0" /f |
| |
| ====== Disable Threaded DPCs ====== | |
| |
| **** | |
| |
| REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\kernel" /v "ThreadDpcEnable" /t "REG_DWORD" /d "0" /f | |
| |
| ====== Remove Most Modern UI Apps ====== | ====== Remove Most Modern UI Apps ====== |
| |
| Uninstall-WindowsFeature -Name Windows-Defender | Uninstall-WindowsFeature -Name Windows-Defender |
| | |
| | ====== GPU Shader Cache Wipe ====== |
| | |
| | ===== Intel ===== |
| | |
| | **** |
| | |
| | DEL /F /Q "%UserProfile%\AppData\LocalLow\Intel\ShaderCache\"* |
| | |
| | ====== MEM_TOP_DOWN ====== |
| | |
| | * https://learn.microsoft.com/en-us/windows/win32/memory/4-gigabyte-tuning |
| | * :!: 2025/10/13: 2009Scape [[games;windows;rt4_client_runescape_530|RT4-Client]] failed to load on [[windows;10|10 21H2]] ((client closes after loading Sound resources)) |
| | |
| | REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "AllocationPreference" /t "REG_DWORD" /d "0x100000" /f |
| | |
| | ===== Etc ===== |
| | |
| | REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "DisablePagingExecutive" /t "REG_DWORD" /d "1" /f |
| | |
| | REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "LargeSystemCache" /t "REG_DWORD" /d "1" /f |
| | |
| | REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "SystemPages" /t "REG_DWORD" /d "0XFFFFFFFF" /f |
| | |
| | ====== ICMP Echo Allow ====== |
| | |
| | **** |
| | |
| | "netsh.exe" advfirewall firewall set rule name="Core Networking Diagnostics - ICMP Echo Request (ICMPv4-In)" profile="private,public" new enable="yes" && "netsh.exe" advfirewall firewall set rule name="Core Networking Diagnostics - ICMP Echo Request (ICMPv4-Out)" profile="private,public" new enable="yes" && "netsh.exe" advfirewall firewall set rule name="Core Networking Diagnostics - ICMP Echo Request (ICMPv6-In)" profile="private,public" new enable="yes" && "netsh.exe" advfirewall firewall set rule name="Core Networking Diagnostics - ICMP Echo Request (ICMPv6-Out)" profile="private,public" new enable="yes" |
| | |
| | ===== Disable ===== |
| | |
| | * Default |
| | |
| | "netsh.exe" advfirewall firewall set rule name="Core Networking Diagnostics - ICMP Echo Request (ICMPv4-In)" profile="private,public" new enable="no" && "netsh.exe" advfirewall firewall set rule name="Core Networking Diagnostics - ICMP Echo Request (ICMPv4-Out)" profile="private,public" new enable="no" && "netsh.exe" advfirewall firewall set rule name="Core Networking Diagnostics - ICMP Echo Request (ICMPv6-In)" profile="private,public" new enable="no" && "netsh.exe" advfirewall firewall set rule name="Core Networking Diagnostics - ICMP Echo Request (ICMPv6-Out)" profile="private,public" new enable="no" |
| |