User Tools

Site Tools


windows:11_dev

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
windows:11_dev [2025/09/27 11:07] Sean Rhonewindows:11_dev [2025/10/15 19:06] (current) – [MEM_TOP_DOWN] Sean Rhone
Line 33: Line 33:
 :: Volume Shadow Copy :: Volume Shadow Copy
 "%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All "%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All
 +
 +PAUSE
  
 :: Defrag/Trim :: Defrag/Trim
Line 40: Line 42:
  
 :: End</code> :: End</code>
 +
 +=== Test ===
 +
 +  * [[https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc788042(v=ws.11)?redirectedfrom=MSDN|URL]]
 +
 +  fsutil usn deleteJournal /D C:
 +
 +===== Downloads =====
 +
 +==== Reset Icon Cache ====
 +
 +  * TODO: Intel ''ShaderCache'' clear somewhere else ((works ideally with ''explorer'' shutdown))
 +
 +  "notepad.exe" "%UserProfile%\Downloads\Reset Icon Cache.bat"
 +
 +<code>
 +TASKKILL /F /IM "explorer.exe"
 +TIMEOUT /NOBREAK /T "2"
 +
 +DEL /F /Q "%LocalAppData%\Microsoft\Windows\Explorer\"*".db"
 +DEL /F /Q "%UserProfile%\AppData\Local\IconCache.db"
 +
 +:: Intel GPU
 +DEL /F /Q "%UserProfile%\AppData\LocalLow\Intel\ShaderCache\"*
 +
 +TIMEOUT /NOBREAK /T "2"
 +START explorer.exe
 +
 +:: End</code>
 +
 +  "%UserProfile%\Downloads\Reset Icon Cache.bat"
 +
 +===== Start Menu =====
 +
 +==== RDP ====
 +
 +  "notepad.exe" "%UserProfile%\Documents\Alira (LAN).rdp"
 +
 +<code>
 +full address:s:192.168.1.152
 +redirectprinters:i:0
 +redirectcomports:i:0
 +redirectsmartcards:i:0
 +redirectwebauthn:i:0
 +redirectclipboard:i:1
 +redirectposdevices:i:0</code>
 +
 +=== Start Menu ===
 +
 +  "explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\Accessories"
 +
 +  "%UserProfile%\Documents\Alira (LAN).rdp"
 +
 +  Alira
  
 ====== Settings ====== ====== Settings ======
Line 62: Line 118:
  
   REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "0" /f   REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "0" /f
 +
 +===== 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"
 +
 +====== Services ======
 +
 +  * [[windows;notes;services|Notes]]
  
/srv/www/wiki/data/attic/windows/11_dev.1758985655.txt.gz · Last modified: by Sean Rhone