User Tools

Site Tools


windows:10

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:10 [2026/04/08 19:33] – [SMB] Sean Rhonewindows:10 [2026/06/01 07:20] (current) – [Hide SSH] Sean Rhone
Line 2: Line 2:
  
   * Microsoft Windows 10 IoT Enterprise LTSC   * Microsoft Windows 10 IoT Enterprise LTSC
-  * Version 21H2 (OS Build 19044.7058)+  * Version 21H2 (OS Build 19044.7291)
  
 ====== Resources ====== ====== Resources ======
Line 23: Line 23:
   * https://forums.overclockers.co.uk/threads/windows-disabling-network-throttling.18558659/#post-25335538   * https://forums.overclockers.co.uk/threads/windows-disabling-network-throttling.18558659/#post-25335538
   * https://learn.microsoft.com/en-us/troubleshoot/windows-server/networking/registry-entry-control-tcp-acknowledgment-behavior + [[https://support.purestorage.com/bundle/m_microsoft_platform_guide/page/Solutions/Microsoft_Platform_Guide/Multipath-IO_and_Storage_Settings/topics/concept/c_disabling_delayed_ack_and_nagle.html|this]] (TCP ACK)   * https://learn.microsoft.com/en-us/troubleshoot/windows-server/networking/registry-entry-control-tcp-acknowledgment-behavior + [[https://support.purestorage.com/bundle/m_microsoft_platform_guide/page/Solutions/Microsoft_Platform_Guide/Multipath-IO_and_Storage_Settings/topics/concept/c_disabling_delayed_ack_and_nagle.html|this]] (TCP ACK)
 +  * https://gist.github.com/StefanoBelli/0aab46b858a797c4eedb90e8799dffa2?permalink_comment_id=4157856#gistcomment-4157856 (check GPE interrupt ''System'' process)
 +
 +<code>netstat -na | Select-String "80"
 +netsh "branchcache" set service "DISABLED"</code>
  
 ====== Updates ====== ====== Updates ======
Line 32: Line 36:
  
 ===== Desktop ===== ===== Desktop =====
 +
 +==== Calculator ====
 +
 +  "%SystemRoot%\System32\win32calc.exe"
 +
 +  Calculator
  
 ==== Maintenance ==== ==== Maintenance ====
  
-  "notepad.exe" "%UserProfile%\Desktop\Maintenance.bat"+  "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Desktop\Maintenance.bat"
  
 <code> <code>
Line 103: Line 113:
 CD "%Temp%" CD "%Temp%"
  
-"%SystemRoot%\System32\takeown.exe /F "%SystemRoot%\System32\mcupdate_GenuineIntel.dll"+"%SystemRoot%\System32\takeown.exe/F "%SystemRoot%\System32\mcupdate_GenuineIntel.dll"
 "%SystemRoot%\System32\icacls.exe" "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" /grant "Administrators:F" "%SystemRoot%\System32\icacls.exe" "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" /grant "Administrators:F"
 +
 DEL /Q "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" DEL /Q "%SystemRoot%\System32\mcupdate_GenuineIntel.dll"
 +DIR /B "%SystemRoot%\System32\mcupdate_GenuineIntel.dll"
 +
 +PAUSE
  
 :: End</code> :: End</code>
Line 114: Line 128:
  
 ==== RDP ==== ==== RDP ====
 +
 +  * https://learn.microsoft.com/en-us/azure/virtual-desktop/rdp-properties
 +  * [[https://learn.microsoft.com/en-us/previous-versions/windows/apps/hh994953(v=win.10)|https://learn.microsoft.com/en-us/previous-versions/windows/apps/hh994953(v=win.10)]]
  
   "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Documents\Alira (LAN).rdp"   "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Documents\Alira (LAN).rdp"
Line 119: Line 136:
 <code> <code>
 full address:s:192.168.1.152 full address:s:192.168.1.152
 +networkautodetect:i:0
 +connection type:i:6
 +gatewayusagemethod:i:4
 +use redirection server name:i:0
 +prompt for credentials:i:0
 +allow font smoothing:i:1
 redirectprinters:i:0 redirectprinters:i:0
 redirectcomports:i:0 redirectcomports:i:0
Line 166: Line 189:
 ===== SMB ===== ===== SMB =====
  
-  [[windows;notes;smb|Notes]]+****
  
   "%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -Command "Set-SmbClientConfiguration -EnableBandwidthThrottling 0 -Force"   "%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -Command "Set-SmbClientConfiguration -EnableBandwidthThrottling 0 -Force"
Line 289: Line 312:
   * [[https://www.pcgamingwiki.com/wiki/Glossary:Frame_rate_(FPS)#Force_games_to_use_a_custom_refresh_rate|https://www.pcgamingwiki.com/wiki/Glossary:Frame_rate_(FPS)#Force_games_to_use_a_custom_refresh_rate]]   * [[https://www.pcgamingwiki.com/wiki/Glossary:Frame_rate_(FPS)#Force_games_to_use_a_custom_refresh_rate|https://www.pcgamingwiki.com/wiki/Glossary:Frame_rate_(FPS)#Force_games_to_use_a_custom_refresh_rate]]
  
-  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw" /v "ForceRefreshRate" /t "REG_DWORD" /d "152" /reg:64 /f+  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw" /v "ForceRefreshRate" /t "REG_DWORD" /d "760" /reg:64 /f
  
-  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw" /v "ForceRefreshRate" /t "REG_DWORD" /d "152" /reg:32 /f+  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw" /v "ForceRefreshRate" /t "REG_DWORD" /d "760" /reg:32 /f
  
 ====== Other ====== ====== Other ======
Line 381: Line 404:
  
   TcpNoDelay   TcpNoDelay
 +
 +===== Hide SSH Folder =====
 +
 +****
 +
 +  "%SystemRoot%\System32\attrib.exe" +H "%UserProfile%\.ssh"
  
 ====== Services ====== ====== Services ======
Line 406: Line 435:
  
   * https://sourceforge.net/projects/brainworkshop/files/brainworkshop/   * https://sourceforge.net/projects/brainworkshop/files/brainworkshop/
- 
-===== Calculator ===== 
- 
-  * Only available on LTSB/LTSC 
- 
-  "%SystemRoot%\System32\win32calc.exe" 
  
 ===== DirectX End-User Runtime ===== ===== DirectX End-User Runtime =====
Line 435: Line 458:
   * Compact installation (no components)   * Compact installation (no components)
   * Launch -> Create -> ''[ ]'' Show on Start   * Launch -> Create -> ''[ ]'' Show on Start
 +
 +==== Hide Keyrings ====
 +
 +****
 +
 +  "%SystemRoot%\System32\attrib.exe" +H "%UserProfile%\.dbus-keyrings"
  
 ===== KeePassXC ===== ===== KeePassXC =====
Line 465: Line 494:
  
   * https://forums.mydigitallife.net/threads/repack-visual-c-redistributable-runtimes-2025-10-17.76588/   * https://forums.mydigitallife.net/threads/repack-visual-c-redistributable-runtimes-2025-10-17.76588/
 +  * https://github.com/abbodi1406/vcredist/releases
  
 ===== VLC media player ===== ===== VLC media player =====
Line 525: Line 555:
 ==== SATA/RST ==== ==== SATA/RST ====
  
-  * :?: Intel RST Premium driver with RST/RAID enabled caused random BSoDs ((Standard AHCI Win10 and native NVMe Win11 24H2+ both fine))+  * ''16.8.5.1014'' ((OpROM is ''16.0.2.3402'', ''16.8.5.1014.5'' release notes matches latest v16 branch))
  
 ==== Ethernet ==== ==== Ethernet ====
Line 531: Line 561:
   * I219-LM Gigabit   * I219-LM Gigabit
   * Intel Corporation Ethernet Connection (7) I219-LM (rev 10) ((rev 10 drivers, not rev 18+))   * Intel Corporation Ethernet Connection (7) I219-LM (rev 10) ((rev 10 drivers, not rev 18+))
 +  * :?: 2026/05/23: ''12.19.2.64'' limits ''Receive'' and ''Transmit Buffers'' to ''2048'' on [[windows:11_ltsc|W11]], but can do ''4096''+ on 10
  
   * https://www.intel.com/content/www/us/en/products/sku/82185/intel-ethernet-connection-i219lm/downloads.html   * https://www.intel.com/content/www/us/en/products/sku/82185/intel-ethernet-connection-i219lm/downloads.html
/srv/www/wiki/data/attic/windows/10.1775691226.txt.gz · Last modified: by Sean Rhone

Except where otherwise noted, content on this wiki is licensed under the following license: CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki