User Tools

Site Tools


windows:10_ltsc_server

Differences

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

Link to this comparison view

Next revision
Previous revision
windows:10_ltsc_server [2025/06/05 15:02] – created Sean Rhonewindows:10_ltsc_server [2025/06/21 16:29] (current) – removed Sean Rhone
Line 1: Line 1:
-====== Information ====== 
- 
-  * Microsoft Windows 10 IoT Enterprise LTSC 
-  * Version 21H2 (OS Build 19044.5859) 
-  * Server 
- 
-====== Resources ====== 
- 
-  * [[windows;notes;quick_commands|Quick Commands]] 
-  * [[windows:notes:env_paths|Env PATH Variables]] 
-  * [[windows;notes;misc]] 
-  * [[https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499-|System Error Codes (0-499+)]] 
- 
-===== TODOs ===== 
- 
-  * 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 
- 
-====== Updates ====== 
- 
-  * [[https://www.catalog.update.microsoft.com/Search.aspx?q=Cumulative+Update+for+Windows+10+Version+21H2+for+x64-based+Systems|Windows 10 21H2 Cumulative Updates - Microsoft Update Catalog]] 
-  * :!: [[https://www.catalog.update.microsoft.com/Search.aspx?q=KB5014032|KB5014032]] 2022-05 SSU is required before the latest CU 
- 
-====== Shortcuts ====== 
- 
-===== Desktop ===== 
- 
-==== Maintenance ==== 
- 
-  "notepad.exe" "%UserProfile%\Desktop\Maintenance.bat" 
- 
-<code> 
-:: .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 
- 
-:: System File Check, Cleanup, and Repair 
-"%SystemRoot%\System32\Dism.exe" /online /Cleanup-Image /StartComponentCleanup /ResetBase /RestoreHealth 
-"%SystemRoot%\System32\sfc.exe" /scannow 
- 
-:: Classic Disk Cleanup 
-"%SystemRoot%\System32\cleanmgr.exe" /sageset:65535 
-"%SystemRoot%\System32\cleanmgr.exe" /sagerun:65535 
- 
-:: Volume Shadow Copy 
-"%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All 
- 
-PAUSE 
- 
-:: Defrag/Trim 
-"%SystemRoot%\System32\Defrag.exe" /AllVolumes /Defrag /TierOptimize /SlabConsolidate /Retrim /Optimize /PrintProgress /Verbose /NormalPriority 
- 
-PAUSE 
- 
-:: End</code> 
- 
-===== Downloads ===== 
- 
-==== Reset Icon Cache ==== 
- 
-  "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" 
-TIMEOUT /NOBREAK /T "2" 
-START explorer.exe 
- 
-:: End</code> 
- 
-  "%UserProfile%\Downloads\Reset Icon Cache.bat" 
- 
-====== Settings ====== 
- 
-===== Explorer ===== 
- 
-==== Separate Processes ==== 
- 
-**** 
- 
-  REG ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "SeparateProcess" /t REG_DWORD /d "1" /f 
- 
-===== Microsoft Edge ===== 
- 
-  * [[windows;notes;edge_tweaks|Edge Tweaks]] 
- 
-===== Power ===== 
- 
-==== Disable Hibernation and Fast Start ==== 
- 
-**** 
- 
-  "powercfg.exe" /HIBERNATE "OFF" 
- 
-===== Disable Clipboard History ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f 
- 
-===== Disable Cortana and Web Search ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f 
- 
-===== Disable Game DVR ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f 
- 
-===== Disable Online Speech Recognition ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization" /v "AllowInputPersonalization" /t REG_DWORD /d "0" /f 
- 
-===== Open Pictures With Windows Photo Viewer ===== 
- 
-  reg add "HKCU\Software\Classes\.jpg" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.jpeg" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.gif" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.png" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.bmp" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.tiff" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.ico" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-===== Disable Shared Experiences ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableCdp" /t REG_DWORD /d "0" /f 
- 
-===== Disable System Restore ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f 
- 
-===== Disable Telemetry Features ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t "REG_DWORD" /d "0" /f 
- 
-===== Enable FIPS Mode ===== 
- 
-  * https://learn.microsoft.com/en-us/windows/security/security-foundations/certification/fips-140-validation 
- 
-  REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "1" /f 
- 
-  "powershell.exe" -Command "$md5 = New-Object -TypeName 'System.Security.Cryptography.MD5CryptoServiceProvider'" 
- 
-==== Disable ==== 
- 
-**** 
- 
-  REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "0" /f 
- 
-===== Remove Quick Access ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD" /d "1" /f 
- 
-===== Remove Windows Search ===== 
- 
-  "sc.exe" stop "WSearch" & "sc.exe" config "WSearch" "start=disabled" 
- 
-  "DISM.exe" /Online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove 
- 
-===== Show All Folders in File Explorer Pane ===== 
- 
-**** 
- 
-  reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "NavPaneShowAllFolders" /t "REG_DWORD" /d "1" /f 
- 
-===== Verbose Shutdown ===== 
- 
-**** 
- 
-  reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f 
- 
-====== Services ====== 
- 
-  "sc.exe" stop "DPS" & "sc.exe" config "DPS" "start=disabled" 
- 
-  "sc.exe" stop "SysMain" & "sc.exe" config "SysMain" "start=disabled" 
- 
-====== Programs ====== 
- 
-  * [[windows:programs|More Programs]] 
- 
-===== 7-Zip ===== 
- 
-  * https://www.7-zip.org/download.html 
- 
-===== Calculator ===== 
- 
-  * Only available on LTSB/LTSC 
- 
-  win32calc 
- 
-===== DirectX End-User Runtime ===== 
- 
-  * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109 
- 
-===== Firefox ===== 
- 
-  * [[https://download.mozilla.org/?product=firefox-esr-msi-latest-ssl&os=win64&lang=en-US|ESR MSI]] 
-  * Last tested: ''Firefox Setup 128.10.0esr.msi'' 
- 
-  * [[programs;firefox|Settings]] 
- 
-===== KeePassXC ===== 
- 
-  * https://keepassxc.org/download#windows 
- 
-===== Notepad++ ===== 
- 
-  * https://notepad-plus-plus.org/download 
-  * Last tested: ''npp.8.7.9.Installer.x64.exe'' 
- 
-===== VC++ Redist ===== 
- 
-  * https://github.com/abbodi1406/vcredist/releases 
- 
-====== Drivers ====== 
- 
-  * See [[windows:drivers|Drivers]] for more URLs 
- 
-===== Alira ===== 
- 
-==== Chipset ==== 
- 
-  * https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=r0jhr&oscode=w764&productcode=precision-m6500 
-  * ''9.1.1.1025'' 
  
/srv/www/wiki/data/attic/windows/10_ltsc_server.1749150139.txt.gz · Last modified: by Sean Rhone