| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| windows:10 [2026/07/19 17:47] – [Keyboard] Sean Rhone | windows:10 [2026/08/13 23:03] (current) – [Information] 19044.7663 Sean Rhone |
|---|
| |
| * Microsoft Windows 10 IoT Enterprise LTSC | * Microsoft Windows 10 IoT Enterprise LTSC |
| * Version 21H2 (OS Build 19044.7548) | * Version 21H2 (OS Build 19044.7663) |
| |
| ====== Resources ====== | ====== Resources ====== |
| * [[windows:notes:env_paths|Env PATH Variables]] | * [[windows:notes:env_paths|Env PATH Variables]] |
| * [[windows;notes;misc]] | * [[windows;notes;misc]] |
| | |
| * [[https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499-|System Error Codes (0-499+)]] | * [[https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499-|System Error Codes (0-499+)]] |
| * [[https://learn.microsoft.com/en-us/windows/deployment/update/windows-update-error-reference|Windows Update error codes]] | * [[https://learn.microsoft.com/en-us/windows/deployment/update/windows-update-error-reference|Windows Update error codes]] |
| * http://redeem.microsoft.com/ (TODO: Put somewhere else) | |
| * [[https://github.com/Espionage724/Windows|GitHub Batch Files]] | |
| |
| ===== TODOs ===== | |
| |
| * https://learn.microsoft.com/en-us/troubleshoot/windows-server/remote/frame-rate-limited-to-30-fps (60 FPS RDP) | |
| * https://ss64.com/nt/title.html (''TITLE'' in batch files) | |
| * https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-lanmanserver | |
| * https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-privacy | |
| * https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-fixes-for-windows-8-windows-7-and-windows-vista | |
| * 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://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 ====== |
| |
| 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> |
| |
| Kraityn | Kraityn |
| |
| ==== 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" | |
| |
| <code> | |
| 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 | |
| redirectcomports:i:0 | |
| redirectsmartcards:i:0 | |
| redirectwebauthn:i:0 | |
| redirectclipboard:i:1 | |
| redirectposdevices:i:0</code> | |
| |
| === Start Menu === | |
| |
| "%SystemRoot%\explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\Accessories" | |
| |
| "%UserProfile%\Documents\Alira (LAN).rdp" | |
| |
| Alira | |
| |
| ==== Update Office ==== | ==== Update Office ==== |
| |
| "powercfg.exe" /Qh | "powercfg.exe" /Qh |
| |
| ===== SMB ===== | |
| |
| "%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -Command "Set-SmbClientConfiguration -EnableBandwidthThrottling 0 -Force" | |
| |
| ===== Disable Clipboard History ===== | ===== Disable Clipboard History ===== |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f | "%SystemRoot%\System32\reg.exe" add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f |
| |
| ===== Disable Cortana and Web Search ===== | ===== Disable Cortana and Web Search ===== |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f | "%SystemRoot%\System32\reg.exe" add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f |
| |
| ===== Disable Game DVR ===== | ===== Disable Game DVR ===== |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f | "%SystemRoot%\System32\reg.exe" add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f |
| |
| ===== Quick Lock Screen ===== | ===== Quick Lock Screen ===== |
| |
| "%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "1" /f | "%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "1" /f |
| |
| "%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -Command "$md5 = New-Object -TypeName 'System.Security.Cryptography.MD5CryptoServiceProvider'" | |
| |
| ===== Remove Quick Access ===== | ===== Remove Quick Access ===== |
| |
| reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f | reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f |
| |
| ===== DX Refresh Rate ===== | |
| |
| * https://steamcommunity.com/app/227600/discussions/0/864979008327344181/ | |
| * [[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 "760" /reg:64 /f | |
| |
| REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw" /v "ForceRefreshRate" /t "REG_DWORD" /d "760" /reg:32 /f | |
| |
| ====== Other ====== | ====== Other ====== |
| |
| * https://scripttiger.github.io/alts/ | * https://scripttiger.github.io/alts/ |
| | * [[windows:notes:default_hosts|Default]] |
| ==== Back-up ==== | |
| | |
| COPY /-Y "%SystemRoot%\System32\drivers\etc\hosts" "%SystemRoot%\System32\drivers\etc\hosts.bak" | |
| | |
| "%SystemRoot%\explorer.exe" "%SystemRoot%\System32\drivers\etc" | |
| |
| ==== fakenews + gambling ==== | ==== fakenews + gambling ==== |
| |
| * https://www.gimp.org/downloads | * https://www.gimp.org/downloads |
| |
| * Install for me only (recommended) | |
| * Compact installation (no components) | |
| * Launch -> Create -> ''[ ]'' Show on Start | |
| |
| ==== Hide Keyrings ==== | ==== Hide Keyrings ==== |
| |
| * https://keepassxc.org/download#windows | * https://keepassxc.org/download#windows |
| |
| ===== LibreOffice ===== | |
| |
| * https://www.libreoffice.org/download/download/ | |
| |
| * ''[ ]'' Use a Java runtime | |
| |
| ===== Okular ===== | ===== Okular ===== |
| |
| * https://github.com/notepad-plus-plus/notepad-plus-plus/releases | * https://github.com/notepad-plus-plus/notepad-plus-plus/releases |
| |
| ===== OBS ===== | |
| |
| * https://github.com/obsproject/obs-studio/releases | |
| |
| ===== qBittorrent ===== | ===== qBittorrent ===== |
| ===== VC++ Redist ===== | ===== VC++ Redist ===== |
| |
| * https://forums.mydigitallife.net/threads/repack-visual-c-redistributable-runtimes-2025-10-17.76588/ | |
| * https://github.com/abbodi1406/vcredist/releases | * https://github.com/abbodi1406/vcredist/releases |
| | * https://forums.mydigitallife.net/threads/repack-visual-c-redistributable-runtimes-2025-10-17.76588/ |
| |
| ===== VLC media player ===== | ===== VLC media player ===== |
| * https://download.videolan.org/pub/videolan/vlc/last/win64/ | * https://download.videolan.org/pub/videolan/vlc/last/win64/ |
| * https://www.videolan.org/vlc/download-windows.html | * https://www.videolan.org/vlc/download-windows.html |
| |
| * ''[ ]'' Web plugins | |
| * ''[ ]'' Context Menus | |
| * ''[x]'' Delete preferences and cache | |
| |
| ===== Vulkan Runtime ===== | ===== Vulkan Runtime ===== |
| * https://vulkan.lunarg.com/sdk/home | * https://vulkan.lunarg.com/sdk/home |
| |
| ====== Games ====== | ====== Drivers ====== |
| |
| ===== Battle.net App ===== | * See [[windows:drivers|Drivers]] for more URLs |
| |
| * https://download.battle.net/en-us/?product=bnetdesk | ===== Hailrake ===== |
| * [[http://dist.blizzard.com/downloads/bna-installers/322d5bb9ae0318de3d4cde7641c96425/retail.1/Battle.net-Setup-enUS.exe|Older exe]] (no SSL) | |
| * TODO: [[games;windows;notes;battle_net_client]] | |
| |
| ===== Steam ===== | * TODO |
| |
| * https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe | ===== Boulderback ===== |
| * See [[games;windows;notes;game_launch_flags|Game Launch Flags]] | |
| |
| ==== Shortcut ==== | ==== Chipset ==== |
| |
| * Disable: Settings -> Interface -> Enable GPU accelerated rendering in web views | * https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=r0jhr&oscode=w764&productcode=precision-m6500 |
| | * ''9.1.1.1025'' |
| |
| "%ProgramFiles(x86)%\Steam\steam.exe" -silent -nocrashmonitor -cef-single-process -cef-disable-breakpad | ==== Graphics ==== |
| |
| Steam (min) | * https://www.amd.com/en/support/downloads/drivers.html/graphics/firepro/firepro-mobility-series/firepro-m7820-mobility.html |
| | * [[https://drivers.amd.com/drivers/amdcleanuputility.exe|amdcleanuputility.exe]] |
| ====== Drivers ====== | |
| | |
| * See [[windows:drivers|Drivers]] for more URLs | |
| |
| ===== Spinesnap ===== | ===== Spinesnap ===== |
| * EPOMAKER x LEOBOG Hi75 | * EPOMAKER x LEOBOG Hi75 |
| |
| * https://epomaker.com/blogs/firmware/epomaker-x-leobog-hi75-firmware | * https://leobogtech.com/blogs/software/leobog-driver |
| * https://epomaker.com/blogs/software/epomaker-x-leobog-hi75-driver | * [[https://drive.google.com/file/d/1mNCEzYdCJbup6_a25H0H8nVytvGVenSl/view?usp=sharing|Hi75RGB固件.exe]] (''V5.0.0'') ((:!: flashes without warning/prompt)) |
| * [[https://drive.google.com/file/d/1mNCEzYdCJbup6_a25H0H8nVytvGVenSl/view?usp=sharing|Hi75RGB固件.exe]] (''V5.0.0'') | |
| |
| ==== Mouse ==== | ==== Mouse ==== |
| |
| * ATTACK SHARK R6 | * ATTACK SHARK R6 |
| * :?: ''Hunting Shark Competitive Mode'' might cause mouse-hold to not hold-fire ARs on [[games:windows:cod_mw2_2009_iw4x_steamcmd|MW2]] | |
| |
| "%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge_proxy.exe" --app="https://www.xvalleyinno.top/AttackShark/#/project/items" | "%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge_proxy.exe" --app="https://www.xvalleyinno.top/AttackShark/#/project/items" |
| === Etc === | === Etc === |
| |
| * :?: ''DisableFlipImmediateOnHSync=1'' caused MW2 to cap FPS at refresh rate | * :?: ''DisableFlipImmediateOnHSync=1'' caused MW2 (DX9) to cap FPS at refresh rate on external HDMI |
| * 2026/07/13: ''Display1_DisableAsyncFlips=1'' capped osu!lazer at refresh rate with D3D11 (OGL was uncapped) | * 2026/07/13: ''Display1_DisableAsyncFlips=1'' capped osu!lazer (D3D11) at refresh rate (OGL was uncapped) |
| * ''IncreaseFixedSegment'' is seemingly 0 or 1 (([[https://www.intel.com/content/dam/support/us/en/documents/boardsandkits/gfx_emgd_usersguide.pdf|source]]; hints online say it's VRAM increase but ''DedicatedSegmentSize'' does that)) | * ''IncreaseFixedSegment'' is seemingly 0 or 1 (([[https://www.intel.com/content/dam/support/us/en/documents/boardsandkits/gfx_emgd_usersguide.pdf|source]]; hints online say it's VRAM increase but ''DedicatedSegmentSize'' does that)) |
| * :?: All instances of ''ThreadingModel'' at ''Apartment'' under ''Classes\CLSID'' (8 including ''WOW6432Node'') | * :?: ''@dota2.exe'' and etc at ''1'' ((dx9, 11, games, benchmarks, CAD; 32-bit?)) |
| | |
| | HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000 |
| |
| <code> | <code> |
| AdaptiveVsyncEnable | AdaptiveVsyncEnable |
| Disable_OverlayDSQualityEnhancement | |
| DisableOSHDR | |
| DisplayOptimizations | |
| Enable5kModeSupport | |
| EnableWDDM21 | |
| ForceDefaultHDRMetadataEdp | |
| ForcePLLDisableEnableForFreqChange | ForcePLLDisableEnableForFreqChange |
| IncreaseFixedSegment | IncreaseFixedSegment |
| IntelDotCom | |
| LSPCONLpmEnable | LSPCONLpmEnable |
| NarrowGamutSplitGammaEnable | NarrowGamutSplitGammaEnable |
| NoFastLinkTrainingForeDP | |
| PowerGpsAggressivenessLevel | PowerGpsAggressivenessLevel |
| PSR2Disable | PSR2Disable |
| Psr2DrrsEnable | Psr2DrrsEnable |
| RemoveALLInterlacedModes | RemoveALLInterlacedModes |
| | ResendACTSignal |
| TotalPSR2OUICount | TotalPSR2OUICount |
| z AssertBreakDisable | z AssertBreakDisable |
| z AssertEnableMask | z AssertEnableMask |
| z DebugEnableMask</code> | z DebugEnableMask</code> |
| |
| |
| ===== Boulderback ===== | |
| |
| ==== Chipset ==== | |
| |
| * https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=r0jhr&oscode=w764&productcode=precision-m6500 | |
| * ''9.1.1.1025'' | |
| |
| ==== Graphics ==== | |
| |
| * https://www.amd.com/en/support/downloads/drivers.html/graphics/firepro/firepro-mobility-series/firepro-m7820-mobility.html | |
| * [[https://drivers.amd.com/drivers/amdcleanuputility.exe|amdcleanuputility.exe]] | |
| |