| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| windows:10 [2025/04/12 22:59] – [Edge Fix] 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.5737) | * Version 21H2 (OS Build 19044.7663) |
| |
| ====== Resources ====== | ====== Resources ====== |
| |
| | * [[windows;notes;quick_commands|Quick Commands]] |
| * [[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+)]] |
| * http://redeem.microsoft.com/ (TODO: Put somewhere else) | * [[https://learn.microsoft.com/en-us/windows/deployment/update/windows-update-error-reference|Windows Update error codes]] |
| * [[https://github.com/Espionage724/Windows|GitHub Batch Files]] | |
| | |
| ===== TODO ===== | |
| | |
| * https://support.microsoft.com/en-us/topic/kb4072698-windows-server-and-azure-stack-hci-guidance-to-protect-against-silicon-based-microarchitectural-and-speculative-execution-side-channel-vulnerabilities-2f965763-00e2-8f98-b632-0d96f30c8c8e#ID0EBBBBJ=FeatureSettingsOverride | |
| * https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/bcdedit--set | |
| * https://forums.blurbusters.com/viewtopic.php?f=10&t=13429 (enable rss) | |
| |
| ====== Updates ====== | ====== Updates ====== |
| |
| ===== 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> |
| :: .NET Framework 4 | @echo off |
| "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" update /force /queue | |
| "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" update /force /queue | TITLE Maintenance |
| "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" executequeueditems | CD "%Temp%" |
| "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" executequeueditems | |
| | :: Disk Cleanup Set-up |
| | "%SystemRoot%\System32\cleanmgr.exe" /sageset:9999 |
| |
| :: System File Check, Cleanup, and Repair | :: System File Check, Cleanup, and Repair |
| "%SystemRoot%\System32\sfc.exe" /scannow | "%SystemRoot%\System32\sfc.exe" /scannow |
| |
| :: Classic Disk Cleanup | :: Disk Cleanup |
| "%SystemRoot%\System32\cleanmgr.exe" /sageset:65535 | "%SystemRoot%\System32\cleanmgr.exe" /sagerun:9999 |
| "%SystemRoot%\System32\cleanmgr.exe" /sagerun:65535 | |
| |
| :: Volume Shadow Copy | :: Volume Shadow Copy |
| "%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All | "%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All |
| |
| | :: USN Change Journal |
| | "%SystemRoot%\System32\fsutil.exe" usn deleteJournal /D "%SystemDrive%" |
| | |
| | :: .NET Framework 4 |
| | "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" update /force /queue |
| | "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" update /force /queue |
| | "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" executequeueditems |
| | "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" executequeueditems |
| | |
| | ECHO Explorer close |
| PAUSE | PAUSE |
| | "%SystemRoot%\System32\taskkill.exe" /F /IM "explorer.exe" |
| | "%SystemRoot%\System32\timeout.exe" /T "2" /NOBREAK |
| | |
| | :: Icon Cache |
| | DEL /F /Q "%LocalAppData%\Microsoft\Windows\Explorer\"*".db" |
| | DEL /F /Q "%UserProfile%\AppData\Local\IconCache.db" |
| | |
| | :: Temp Dirs |
| | DEL /F /Q "%LocalAppData%\Temp\*" |
| | DEL /F /Q "%SystemRoot%\Temp\*" |
| | |
| | TIMEOUT /T "2" /NOBREAK |
| | START explorer.exe |
| |
| :: Defrag/Trim | :: Defrag/Trim |
| | ECHO Defrag |
| | PAUSE |
| "%SystemRoot%\System32\Defrag.exe" /AllVolumes /Defrag /TierOptimize /SlabConsolidate /Retrim /Optimize /PrintProgress /Verbose /NormalPriority | "%SystemRoot%\System32\Defrag.exe" /AllVolumes /Defrag /TierOptimize /SlabConsolidate /Retrim /Optimize /PrintProgress /Verbose /NormalPriority |
| |
| :: End</code> | :: End</code> |
| |
| ===== Start Menu ===== | ===== Downloads ===== |
| |
| ==== RDP ==== | ==== Remove Intel Microcode ==== |
| |
| "notepad.exe" "%UserProfile%\Documents\Alira (LAN).rdp" | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Downloads\Remove Intel Microcode.bat" |
| |
| <code> | <code> |
| full address:s:192.168.1.152 | @echo off |
| redirectprinters:i:0 | |
| redirectcomports:i:0 | |
| redirectsmartcards:i:0 | |
| redirectwebauthn:i:0 | |
| redirectclipboard:i:1 | |
| redirectposdevices:i:0</code> | |
| |
| === Start Menu === | CD "%Temp%" |
| |
| "explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\Accessories" | "%SystemRoot%\System32\takeown.exe" /F "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" |
| | "%SystemRoot%\System32\icacls.exe" "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" /grant "Administrators:F" |
| |
| "%UserProfile%\Documents\Alira (LAN).rdp" | DEL /Q "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" |
| |
| Alira | :: End</code> |
| |
| ====== Settings ====== | "%UserProfile%\Downloads\Remove Intel Microcode.bat" |
| |
| ===== Explorer ===== | ===== Start Menu ===== |
| |
| ==== Separate Processes ==== | ==== SSH ==== |
| |
| **** | * TODO: ''MKDIR'' new folder + shortcut for update + wiki backup |
| |
| REG ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "SeparateProcess" /t REG_DWORD /d "1" /f | "%SystemRoot%\explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\Accessories" |
| |
| ===== Power ===== | "%SystemRoot%\System32\OpenSSH\ssh.exe" -o "StrictHostKeyChecking='no'" -o "UserKnownHostsFile='NUL'" "192.168.1.152" |
| |
| ==== Disable Hibernation and Fast Start ==== | Kraityn |
| |
| **** | ==== Update Office ==== |
| |
| "powercfg.exe" /HIBERNATE "OFF" | "%SystemRoot%\explorer.exe" "%ProgramData%\Microsoft\Windows\Start Menu\Programs\Microsoft Office Tools" |
| |
| ==== Enable Ultimate Performance Power Plan ==== | "%CommonProgramFiles%\microsoft shared\ClickToRun\OfficeC2RClient.exe" /update "user" forceappshutdown="True" displaylevel="True" |
| |
| **** | Update Office |
| |
| "powercfg.exe" /DUPLICATESCHEME "e9a42b02-d5df-448d-aa00-03f14749eb61" | ====== Settings ====== |
| |
| ==== Disable CPU Idle States ==== | ===== BCDEdit ===== |
| |
| * :!: Results in notably higher idle temps | * [[windows;notes;bcdedit|Notes]] |
| * Task Manager shows 100% core usage all the time | |
| |
| "powercfg.exe" /SETACVALUEINDEX "SCHEME_CURRENT" "SUB_PROCESSOR" "IdleDisable" "1" & "powercfg.exe" /SETACTIVE "SCHEME_CURRENT" | ===== Microsoft Edge ===== |
| |
| === Undo === | * [[windows;notes;edge_tweaks|Edge Tweaks]] |
| |
| **** | ===== Printer ===== |
| |
| "powercfg.exe" /SETACVALUEINDEX "SCHEME_CURRENT" "SUB_PROCESSOR" "IdleDisable" "0" & "powercfg.exe" /SETACTIVE "SCHEME_CURRENT" | ipp://192.168.1.164/ipp/print |
| |
| ==== More Settings ==== | ===== Power ===== |
| |
| **** | ==== Disable Hibernation and Fast Start ==== |
| |
| "powercfg.exe" /Qh | "powercfg.exe" /HIBERNATE "OFF" |
| |
| ===== Disable Threaded DPCs ===== | ==== Enable Ultimate Performance Power Plan ==== |
| |
| **** | "powercfg.exe" /DUPLICATESCHEME "e9a42b02-d5df-448d-aa00-03f14749eb61" |
| |
| REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\kernel" /v "ThreadDpcEnable" /t "REG_DWORD" /d "0" /f | ==== More Settings ==== |
| |
| ===== Disable Clipboard History ===== | "powercfg.exe" /Qh |
| |
| **** | ===== 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 ===== |
| |
| **** | "%SystemRoot%\System32\reg.exe" add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f |
| | |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f | |
| |
| ===== Disable Game DVR ===== | ===== Disable Game DVR ===== |
| |
| **** | "%SystemRoot%\System32\reg.exe" add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f | ===== Quick Lock Screen ===== |
| |
| ===== Disable Last Access Time File Updates ===== | * Directly shows password prompt |
| |
| **** | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d "1" /f |
| |
| fsutil behavior set disablelastaccess 1 | ==== Undo ==== |
| | |
| | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d "0" /f |
| |
| ===== Disable Online Speech Recognition ===== | ===== Disable Online Speech Recognition ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization" /v "AllowInputPersonalization" /t REG_DWORD /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization" /v "AllowInputPersonalization" /t REG_DWORD /d "0" /f |
| |
| ===== Disable Remote Desktop ===== | ===== Disable Remote Desktop ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fDenyTSConnections" /t REG_DWORD /d "1" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fDenyTSConnections" /t REG_DWORD /d "1" /f |
| |
| ===== Disable Shared Experiences ===== | ===== Disable Shared Experiences ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableCdp" /t REG_DWORD /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableCdp" /t REG_DWORD /d "0" /f |
| |
| ===== Disable SmartScreen ===== | |
| |
| * General | |
| * Windows Store Apps | |
| * Microsoft Edge | |
| |
| reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "SmartScreenEnabled" /t "REG_SZ" /d "Off" /f | |
| |
| reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t "REG_DWORD" /d "0" /f | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter" /v "EnabledV9" /t "REG_DWORD" /d "0" /f | |
| |
| ===== Disable Startup Delay ===== | |
| |
| **** | |
| |
| reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v "StartupDelayInMSec" /t "REG_DWORD" /d "0" /f | |
| |
| ===== Disable System Restore ===== | ===== Disable System Restore ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f |
| |
| ===== Disable Telemetry Features ===== | ===== Disable Telemetry Features ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t "REG_DWORD" /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t "REG_DWORD" /d "0" /f |
| |
| ===== Disable User Account Control ===== | ===== Disable User Account Control ===== |
| |
| **** | |
| |
| REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t "REG_DWORD" /d "0" /f | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t "REG_DWORD" /d "0" /f |
| |
| ===== Disable Windows Defender ===== | |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t "REG_DWORD" /d "1" /f | |
| |
| ===== Enable FIPS Mode ===== | ===== Enable FIPS Mode ===== |
| |
| * https://learn.microsoft.com/en-us/windows/security/security-foundations/certification/fips-140-validation | * https://learn.microsoft.com/en-us/windows/security/security-foundations/certification/fips-140-validation |
| * [[windows;notes;misc#fips_test|Test]] | |
| |
| REG 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 |
| | |
| ==== Undo ==== | |
| | |
| **** | |
| | |
| REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "0" /f | |
| |
| ===== Remove Quick Access ===== | ===== Remove Quick Access ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD" /d "1" /f | reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD" /d "1" /f |
| ===== Remove Windows Search ===== | ===== Remove Windows Search ===== |
| |
| "sc.exe" stop "WSearch" & "sc.exe" config "WSearch" "start=disabled" | "%SystemRoot%\System32\sc.exe" stop "WSearch" & "%SystemRoot%\System32\sc.exe" config "WSearch" "start=disabled" |
| |
| "DISM.exe" /Online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove | "%SystemRoot%\System32\Dism.exe" /Online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove |
| |
| ===== Show All Folders in File Explorer Pane ===== | ===== Show All Folders in File Explorer Pane ===== |
| |
| **** | |
| |
| reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "NavPaneShowAllFolders" /t "REG_DWORD" /d "1" /f | reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "NavPaneShowAllFolders" /t "REG_DWORD" /d "1" /f |
| |
| ===== Verbose Shutdown ===== | ===== Verbose Shutdown ===== |
| |
| **** | |
| |
| 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 |
| ====== Other ====== | ====== Other ====== |
| |
| ===== NetFX3 From Install Media ===== | ===== HOSTS ===== |
| |
| * Change ''D:\'' to install media drive if necessary | * https://scripttiger.github.io/alts/ |
| | * [[windows:notes:default_hosts|Default]] |
| |
| Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess | ==== fakenews + gambling ==== |
| |
| ===== Remove Most Modern UI Apps ===== | * https://scripttiger.github.io/alts/compressed/blacklist-fg.txt |
| | * Unified hosts + fakenews + gambling (Compressed) |
| |
| * Not necessary with Local Account log-ins and Pro/Enterprise/LTSC editions | "%SystemRoot%\System32\curl.exe" --output "%Temp%\blacklist-fg.txt" --location "https://scripttiger.github.io/alts/compressed/blacklist-fg.txt" --progress-bar && MOVE /Y "%Temp%\blacklist-fg.txt" "%SystemRoot%\System32\drivers\etc\hosts" && "%SystemRoot%\System32\ipconfig.exe" /flushdns && "%SystemRoot%\System32\ipconfig.exe" /registerdns |
| * Tested fine on 20H2, 21H2, and 23H2 | |
| * :!: This broke the start menu on 1809 | |
| * :!: 2024/08: May cause Explorer windows to act broken at times on 11 23H2 | |
| |
| * Powershell Script ''*.ps1'' | ==== Script ==== |
| |
| Get-AppxPackage -allusers | Remove-AppxPackage | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Downloads\ScriptTiger Hosts (fakenews + gambling).bat" |
| |
| ===== Remove OneDrive ===== | <code> |
| | @echo off |
| |
| taskkill /IM "OneDrive.exe" /F | TITLE ScriptTiger Hosts (fakenews + gambling) |
| | CD "%Temp%" |
| |
| %windir%\SysWOW64\OneDriveSetup.exe /uninstall | "%SystemRoot%\System32\curl.exe" --output "%Temp%\blacklist-fg.txt" --location "https://scripttiger.github.io/alts/compressed/blacklist-fg.txt" --progress-bar |
| | MOVE /Y "%Temp%\blacklist-fg.txt" "%SystemRoot%\System32\drivers\etc\hosts" |
| |
| rmdir "%UserProfile%\OneDrive" "%ProgramData%\Microsoft OneDrive" "%LocalAppData%\Microsoft\OneDrive" "C:\OneDriveTemp" /S /Q | "%SystemRoot%\System32\ipconfig.exe" /flushdns |
| | "%SystemRoot%\System32\ipconfig.exe" /registerdns |
| |
| reg delete "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f | :: End</code> |
| |
| reg delete "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f | "%UserProfile%\Downloads\ScriptTiger Hosts (fakenews + gambling).bat" |
| | |
| | ===== Microsoft Store ===== |
| | |
| | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Downloads\Install Microsoft Store.bat" |
| | |
| | <code> |
| | @echo off |
| | |
| | TITLE Install Microsoft Store |
| | CD "%Temp%" |
| | |
| | "%SystemRoot%\System32\WSReset.exe" -i |
| | "%SystemRoot%\System32\timeout.exe" /T "20" /NOBREAK |
| | |
| | "%SystemRoot%\System32\WSReset.exe" -i |
| | |
| | EXIT /B |
| | |
| | :: End</code> |
| | |
| | "%UserProfile%\Downloads\Install Microsoft Store.bat" |
| | |
| | ===== WinSAT ===== |
| | |
| | "%SystemRoot%\System32\WinSAT.exe" "formal" -restart "clean" -v |
| | |
| | "%SystemRoot%\System32\WinSAT.exe" forgethistory |
| | |
| | "%SystemRoot%\System32\WinSAT.exe" query |
| | |
| | ===== NetFX3 From Install Media ===== |
| | |
| | * Change ''D:\'' to install media drive if necessary |
| | |
| | Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess |
| |
| ===== Prevent Driver Changes ===== | ===== Prevent Driver Changes ===== |
| |
| ==== Add Prevent Policy ==== | ==== Add Prevent Policy ==== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /t "REG_SZ" /d "PCI\VEN_XXXX&DEV_XXXX&SUBSYS_XXXXXXXX&REV_XX" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /t "REG_SZ" /d "PCI\VEN_XXXX&DEV_XXXX&SUBSYS_XXXXXXXX&REV_XX" /f |
| |
| ==== Remove Prevent Policy ==== | ==== Remove Prevent Policy ==== |
| |
| **** | |
| |
| reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f | reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f |
| |
| ====== Services ====== | ==== Alt ==== |
| |
| "sc.exe" stop "DPS" & "sc.exe" config "DPS" "start=disabled" | * Dynamic Tuning devices can be disabled from registry |
| | * 5 devices |
| |
| "sc.exe" stop "SysMain" & "sc.exe" config "SysMain" "start=disabled" | HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\ACPI\INT3400\2&daba3ff&1 |
| |
| ===== Spinesnap ===== | ===== Transparent Taskbar ===== |
| |
| "sc.exe" stop "esifsvc" & "sc.exe" config "esifsvc" "start=disabled" | <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Dwm ForceEffectMode 1</code> |
| |
| "sc.exe" stop "ApHidMonitorService" & "sc.exe" config "ApHidMonitorService" "start=disabled" | <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced UseOLEDTaskbarTransparency 1</code> |
| |
| ====== Edge Fix ====== | ===== Aero Lite Theme ===== |
| |
| * :?: Occasionally, Edge stops being able to open ([[https://forums.mydigitallife.net/threads/what-causes-edge-to-randomly-not-open.89145/|post]]) | COPY /Y "%SystemRoot%\Resources\Themes\aero.theme" "%UserProfile%\Desktop\aerolite.theme" |
| * This deletes/resets the user profile | |
| |
| RMDIR /S /Q "%LocalAppData%\Microsoft\Edge" | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Desktop\aerolite.theme" |
| | |
| | <code> |
| | [Theme] |
| | DisplayName=Aero Lite</code> |
| | |
| | <code> |
| | [VisualStyles] |
| | Path=%ResourceDir%\Themes\Aero\AeroLite.msstyles</code> |
| | |
| | ==== Apply ==== |
| | |
| | * Delete ''aerolite.theme'' after apply |
| | |
| | "%UserProfile%\Desktop\aerolite.theme" |
| | |
| | ==== Settings ==== |
| | |
| | * Personalization -> Colors |
| | |
| | * Default Windows mode: ''[x]'' Dark |
| | * Default app mode: ''[x]'' Light |
| | * ''[ ]'' Transparency effects |
| | * ''[ ]'' Automatically pick an accent color |
| | * Accent color on surfaces: ''[x]'' Title bars and window borders |
| | |
| | ===== TCP ACK ===== |
| | |
| | * ''DWORD'' = ''1'' for both |
| | |
| | HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces |
| | |
| | TcpAckFrequency |
| | |
| | TcpNoDelay |
| | |
| | ===== Hide SSH Folder ===== |
| | |
| | "%SystemRoot%\System32\attrib.exe" +H "%UserProfile%\.ssh" |
| | |
| | ====== Services ====== |
| | |
| | * [[windows;notes;services|Notes]] |
| |
| ====== Programs ====== | ====== Programs ====== |
| ===== Android Tools ===== | ===== Android Tools ===== |
| |
| * [[https://dl-ssl.google.com/android/repository/latest_usb_driver_windows.zip|Latest USB Driver]] | * [[https://dl-ssl.google.com/android/repository/latest_usb_driver_windows.zip|USB Driver]] |
| * [[https://dl-ssl.google.com/android/repository/platform-tools-latest-windows.zip|Latest platform-tools]] | * [[https://dl-ssl.google.com/android/repository/platform-tools-latest-windows.zip|platform-tools]] |
| * :!: [[https://dl.google.com/android/repository/platform-tools_r30.0.5-windows.zip|30.0.5 platform-tools]] ((this specific version was needed to workaround a ''fastboot'' error that only happened on the latest version)) | |
| |
| ===== aria2 ===== | ===== aria2 ===== |
| |
| * https://sourceforge.net/projects/brainworkshop/files/brainworkshop/ | * https://sourceforge.net/projects/brainworkshop/files/brainworkshop/ |
| |
| ===== Calculator ===== | |
| |
| * Only available on LTSB/LTSC | |
| |
| win32calc | |
| |
| ===== DirectX End-User Runtime ===== | ===== DirectX End-User Runtime ===== |
| |
| * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109 | * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109 |
| * :?: TODO: Extras get installed if .NET 2/3 Windows feature is also installed | |
| |
| ===== .NET Runtime ===== | ===== Firefox ===== |
| |
| * https://aka.ms/dotnet/8.0/windowsdesktop-runtime-win-x64.exe | * https://www.firefox.com/en-US/download/all/desktop-esr/win64-msi/en-US/ |
| | * https://www.firefox.com/en-US/download/all/ |
| ===== Firefox ===== | |
| |
| * [[https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US|exe]] | |
| * [[programs;firefox|Settings]] | * [[programs;firefox|Settings]] |
| * :?: May benefit from intentionally setting OS ClearType font settings ((default out-the-box Gamma is ''1.8''; clicking all-Next/defaults through ClearType config puts it at standard ''2.2'')) | |
| | ===== Thunderbird ===== |
| | |
| | * https://www.thunderbird.net/en-US/thunderbird/all/ |
| |
| ===== GIMP ===== | ===== GIMP ===== |
| |
| * https://www.gimp.org/downloads | * https://www.gimp.org/downloads |
| | |
| | ==== Hide Keyrings ==== |
| | |
| | "%SystemRoot%\System32\attrib.exe" +H "%UserProfile%\.dbus-keyrings" |
| |
| ===== KeePassXC ===== | ===== KeePassXC ===== |
| * https://keepassxc.org/download#windows | * https://keepassxc.org/download#windows |
| |
| ===== LibreOffice ===== | ===== Okular ===== |
| |
| * https://www.libreoffice.org/download/download/ | * https://cdn.kde.org/ci-builds/graphics/okular/master/windows/ |
| | |
| * Options -> Uncheck Use Skia (HW accel should be checked) | |
| * Options -> Disable Java runtime environment | |
| | |
| ===== MuPDF ===== | |
| | |
| * https://mupdf.com/releases/index.html | |
| * https://mupdf.com/releases/history.html | |
| |
| ===== Notepad++ ===== | ===== Notepad++ ===== |
| |
| * https://notepad-plus-plus.org/download | * https://github.com/notepad-plus-plus/notepad-plus-plus/releases |
| | |
| ===== OBS ===== | |
| | |
| * https://github.com/obsproject/obs-studio/releases | |
| |
| ===== qBittorrent ===== | ===== qBittorrent ===== |
| |
| * https://www.qbittorrent.org/download | * https://www.qbittorrent.org/download |
| * https://github.com/waelisa/Best-blocklist/raw/main/wael.list.p2p.zip | |
| |
| ===== Thunderbird ===== | |
| |
| * https://download.mozilla.org/?product=thunderbird-latest-ssl&os=win64&lang=en-US | |
| |
| ===== VC++ Redist ===== | ===== VC++ Redist ===== |
| |
| * 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/ |
| "%UserProfile%\Downloads\VisualCppRedist_AIO_x86_x64.exe" /ai | |
| | |
| "%UserProfile%\Downloads\VisualCppRedist_AIO_x86_x64.exe" /aiR | |
| |
| ===== VLC media player ===== | ===== VLC media player ===== |
| * 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 ===== |
| |
| ===== 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 ===== |
| |
| * [[https://www.dell.com/support/home/en-us/product-support/product/latitude-15-5591-laptop/drivers|Dell Latitude 5591 - Support and BIOS Updates]] | * [[https://www.dell.com/support/home/en-us/product-support/product/latitude-15-5591-laptop/drivers|Dell Latitude 5591 - Support and BIOS Updates]] |
| | |
| | ==== Keyboard ==== |
| | |
| | * EPOMAKER x LEOBOG Hi75 |
| | |
| | * https://leobogtech.com/blogs/software/leobog-driver |
| | * [[https://drive.google.com/file/d/1mNCEzYdCJbup6_a25H0H8nVytvGVenSl/view?usp=sharing|Hi75RGB固件.exe]] (''V5.0.0'') ((:!: flashes without warning/prompt)) |
| | |
| | ==== Mouse ==== |
| | |
| | * ATTACK SHARK R6 |
| | |
| | "%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://cn.attackshark.pro/WebDriven/index.html#/project/items" |
| |
| ==== SATA/RST ==== | ==== SATA/RST ==== |
| |
| * [[https://www.intel.com/content/www/us/en/download/19755/intel-rapid-storage-technology-driver-installation-software-with-intel-optane-memory-8th-and-9th-gen-platforms.html|Intel Download Center]] | * ''16.8.5.1014'' ((OpROM is ''16.0.2.3402'', ''16.8.5.1014.5'' release notes matches latest v16 branch)) |
| * :?: Last tested version: ''17.11.3.1010'' | |
| |
| ==== Ethernet ==== | ==== Ethernet ==== |
| * 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|Intel Download Center]] | * https://www.intel.com/content/www/us/en/products/sku/82185/intel-ethernet-connection-i219lm/downloads.html |
| * Last tested: ''Wired_driver_30.0.1_x64.zip'' | |
| |
| ==== Wireless ==== | ==== Wireless ==== |
| |
| * wireless-AC 9560 | * AX210 |
| * Intel Corporation Cannon Lake PCH CNVi WiFi (rev 10) | |
| |
| * [[https://www.intel.com/content/www/us/en/products/sku/99446/intel-wirelessac-9560/downloads.html|Intel Download Center]] (IT Administrators 8-)) | * https://www.intel.com/content/www/us/en/products/sku/204836/intel-wifi-6e-ax210-gig/downloads.html |
| * Last tested: ''WiFi-23.110.0-Driver64-Win10-Win11.zip'' | |
| |
| === Bluetooth === | ==== Graphics ==== |
| |
| * Last tested: ''BT-23.100.1-64UWD-Win10-Win11.zip'' | * Intel UHD Graphics 630 |
| | * Intel Corporation CoffeeLake-H GT2 [UHD Graphics 630] |
| |
| ==== Audio ==== | * https://www.intel.com/content/www/us/en/support/products/126790/graphics/processor-graphics/intel-uhd-graphics-family/intel-uhd-graphics-630.html |
| |
| * https://apps.microsoft.com/detail/9nb9srtl2kpt | === 8GB VRAM === |
| |
| ==== Graphics ==== | * :?: Aperture size and other BIOS options affect available memory ((1024MB aperture does ''7086 MB'' in ''dxdiag'')) |
| |
| * Intel UHD Graphics 630 | "%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000\GMM" /v "DedicatedSegmentSize" /t "REG_DWORD" /d "8192" /f |
| * Intel Corporation CoffeeLake-H GT2 [UHD Graphics 630] | |
| |
| * [[https://www.intel.com/content/www/us/en/support/products/126790/graphics/intel-uhd-graphics-family/intel-uhd-graphics-630.html#drivers-software|Intel Download Center]] | === Etc === |
| * Last tested: ''gfx_win_101.2135.exe'' | |
| | * :?: ''DisableFlipImmediateOnHSync=1'' caused MW2 (DX9) to cap FPS at refresh rate on external HDMI |
| | * 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)) |
| | * :?: ''@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> |
| | AdaptiveVsyncEnable |
| | ForcePLLDisableEnableForFreqChange |
| | IncreaseFixedSegment |
| | LSPCONLpmEnable |
| | NarrowGamutSplitGammaEnable |
| | PowerGpsAggressivenessLevel |
| | PSR2Disable |
| | Psr2DrrsEnable |
| | RemoveALLInterlacedModes |
| | ResendACTSignal |
| | TotalPSR2OUICount |
| | z AssertBreakDisable |
| | z AssertEnableMask |
| | z DebugEnableMask</code> |
| |