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 [2020/07/14 12:30] – [Settings] Sean Rhonewindows:10 [2025/06/27 18:52] (current) Sean Rhone
Line 1: Line 1:
 ====== Information ====== ====== Information ======
  
-  * Microsoft Windows 10 +  * Microsoft Windows 10 IoT Enterprise LTSC 
-  * LTSC 1809+  * Version 21H2 (OS Build 19044.5859)
  
-====== Notes ======+====== Resources ======
  
-  * Removing Most/All Modern UI apps on 1803 prevents facial login via Windows Hello from working entirely ((removes camera?)) ((Does not apply to LTSB; can freely remove most/all Modern UI apps and still have functional Windows Hello)) +  * [[windows;notes;quick_commands|Quick Commands]] 
-  * :!: Enabling Secure Boot prevents non-WHQL drivers from working ((this is particularly bad with Intel RST; if it's signed by Intel, it won't allow booting; there is no warning of this when loading the RST driver during Windows set-up))+  * [[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+)]] 
 +  * [[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]]
  
-====== Download ======+===== TODOs =====
  
-  * https://forums.mydigitallife.info/threads/72600-ISO-for-latest-enUS-LTSB+  * 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 ([[windows;10?rev=1742081524#bcdedit|older rev]])
  
 ====== Updates ====== ====== Updates ======
  
-===== Servicing Stack =====+  * [[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
  
-==== Information ====+====== Shortcuts ======
  
-  * https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates#when-are-they-released +===== Desktop =====
-  * https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001 +
-  * :!: SSU is recommended to be installed **before** the CU+
  
-==== Link ====+==== Maintenance ====
  
-  * [[https://www.catalog.update.microsoft.com/Search.aspx?q=Update+for+Windows+10+Version+1809+for+x64-based+Systems|Microsoft Update Catalog]]+  "notepad.exe" "%UserProfile%\Desktop\Maintenance.bat"
  
-  YYYY-MM Update for Windows 10 Version 1809 for x64-based Systems (KB#######)+<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
  
-===== Cumulative =====+:: System File Check, Cleanup, and Repair 
 +"%SystemRoot%\System32\Dism.exe" /online /Cleanup-Image /StartComponentCleanup /ResetBase /RestoreHealth 
 +"%SystemRoot%\System32\sfc.exe" /scannow
  
-==== Information ====+:: Classic Disk Cleanup 
 +"%SystemRoot%\System32\cleanmgr.exe" /sageset:65535 
 +"%SystemRoot%\System32\cleanmgr.exe" /sagerun:65535
  
-  * :!SSU is recommended to be installed **before** the CU+:: Volume Shadow Copy 
 +"%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All
  
-==== Link ====+PAUSE
  
-  * [[http://www.catalog.update.microsoft.com/Search.aspx?q=Cumulative+Update+for+Windows+10+Version+1809+for+x64-based+Systems|Microsoft Update Catalog]]+:: Defrag/Trim 
 +"%SystemRoot%\System32\Defrag.exe" /AllVolumes /Defrag /TierOptimize /SlabConsolidate /Retrim /Optimize /PrintProgress /Verbose /NormalPriority
  
-  YYYY-MM Cumulative Update for Windows 10 Version 1809 for x64-based Systems (KB#######)+PAUSE
  
-====== Prevent Driver Changes ======+:: End</code>
  
-===== Notes =====+=== Test ===
  
-  * To be done after a proper driver is manually installed +  * [[https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc788042(v=ws.11)?redirectedfrom=MSDN|URL]]
-  * This ensures Windows Update nor anything else can replace installed drivers for specific devices unattended +
-  * Additional entries need to add a new number (the value after ''/v''+
-  * The device ID can be acquired from Device Manager and should be pasted as-is (no extra slashes)+
  
-===== Base Policies =====+  fsutil usn deleteJournal /D /N C:
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDs" /t "REG_DWORD" /d "1" /f+===== Downloads =====
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDsRetroactive" /t "REG_DWORD" /d "0" /f+==== Reset Icon Cache ====
  
-===== Format =====+  "notepad.exe" "%UserProfile%\Downloads\Reset Icon Cache.bat"
  
-  * Do **not** copy/paste these as-is; only here for reference +<code> 
-  Adjust to specific devices as-needed+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
  
-==== Add Prevent Policy ====+:: End</code>
  
-****+  "%UserProfile%\Downloads\Reset Icon Cache.bat"
  
-  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+===== Start Menu =====
  
-==== Remove Prevent Policy ====+==== RDP ====
  
-****+  "notepad.exe" "%UserProfile%\Documents\Alira (LAN).rdp"
  
-  reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f+<code> 
 +full address:s:192.168.1.152 
 +redirectprinters:i:
 +redirectcomports:i:
 +redirectsmartcards:i:
 +redirectwebauthn:i:
 +redirectclipboard:i:
 +redirectposdevices:i:0</code>
  
-====== Tweaks ======+=== Start Menu ===
  
-===== Disable Clipboard History =====+  "explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\Accessories"
  
-****+  "%UserProfile%\Documents\Alira (LAN).rdp"
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f+  Alira
  
-===== Disable Cortana and Web Search =====+====== Settings ======
  
-****+===== BCDEdit =====
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /"AllowCortana/t REG_DWORD /d "0/f+  "bcdedit.exe" /set "disabledynamictick" "Yes"
  
-===== Disable Game DVR =====+  "bcdedit.exe" /set "nx" "AlwaysOff"
  
-****+===== Microsoft Edge =====
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f +  * [[windows;notes;edge_tweaks|Edge Tweaks]]
- +
-===== Disable Hibernation and Fast Start ===== +
- +
-****+
  
-  powercfg /H off+===== Power =====
  
-===== Disable Last Access Time File Updates =====+==== Disable Hibernation and Fast Start ====
  
 **** ****
  
-  fsutil behavior set disablelastaccess 1+  "powercfg.exe" /HIBERNATE "OFF"
  
-===== Disable Online Speech Recognition =====+==== Enable Ultimate Performance Power Plan ====
  
 **** ****
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization" /"AllowInputPersonalization/t REG_DWORD /d "0" /f+  "powercfg.exe" /DUPLICATESCHEME "e9a42b02-d5df-448d-aa00-03f14749eb61"
  
-===== Disable Remote Desktop =====+==== More Settings ====
  
 **** ****
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fDenyTSConnections" /t REG_DWORD /d "1" /f+  "powercfg.exe" /Qh
  
-===== Disable Shared Experiences =====+===== Disable Clipboard History =====
  
 **** ****
  
-  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 "AllowClipboardHistory" /t REG_DWORD /d "0" /f
  
-===== Disable SmartScreen ===== +===== Disable Cortana and Web Search =====
- +
-  * 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+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f
  
-===== Disable System Restore =====+===== Disable Game DVR =====
  
 **** ****
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f
  
-===== Disable Telemetry Features =====+===== Quick Lock Screen =====
  
-****+  Directly shows password prompt
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t "REG_DWORD/d "0" /f+  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d "1" /f
  
-===== Disable User Account Control =====+==== Undo ====
  
 **** ****
  
-  reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t "REG_DWORD/d "0" /f+  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d "0" /f
  
-===== Disable Windows Defender =====+===== Disable Online Speech Recognition =====
  
 **** ****
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t "REG_DWORD/d "1" /f+  reg add "HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization" /v "AllowInputPersonalization" /t REG_DWORD /d "0" /f
  
 ===== Open Pictures With Windows Photo Viewer ===== ===== Open Pictures With Windows Photo Viewer =====
Line 181: Line 190:
   reg add "HKCU\Software\Classes\.ico" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f   reg add "HKCU\Software\Classes\.ico" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f
  
-===== Remove Quick Access =====+===== Disable Remote Desktop =====
  
 **** ****
  
-  reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD/d "1" /f+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fDenyTSConnections" /t REG_DWORD /d "1" /f
  
-===== Remove Windows Search =====+===== Disable Shared Experiences =====
  
 **** ****
  
-  Dism /online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableCdp" /t REG_DWORD /"0" /f
  
-===== ScriptTiger Hosts File =====+===== Disable System Restore =====
  
-  https://scripttiger.github.io/hosts-packages/+****
  
-  * Powershell Script ''*.ps1''+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f
  
-<code> +===== Disable Telemetry Features =====
-[Net.ServicePointManager]::SecurityProtocol "tls12, tls11, tls" +
-Invoke-WebRequest "https://scripttiger.github.io/alts/compressed/blacklist-fg.txt" -OutFile "C:\Windows\System32\drivers\etc\hosts" +
-ipconfig /flushdns</code> +
- +
-===== 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 "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t "REG_DWORD" /d "0" /f
  
-===== NetFX3 From Install Media ===== +===== Disable User Account Control =====
- +
-  * Change ''D:\'' to install media drive if necessary +
- +
-  Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess +
- +
-===== 1607 ===== +
- +
-==== Disable HomeGroup ====+
  
 **** ****
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\HomeGroup" /v "DisableHomeGroup" /t "REG_DWORD" /d "1" /f+  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t "REG_DWORD" /d "0" /f
  
-==== Remove Most Modern UI Apps ====+===== Enable FIPS Mode =====
  
-  * Powershell Script ''*.ps1'' +  * https://learn.microsoft.com/en-us/windows/security/security-foundations/certification/fips-140-validation
-  * :!: Do not run this on 1809 as it'll break the Start Menu +
-  * :!: Seems safe to run on 201H+
  
-  Get-AppxPackage -allusers | Remove-AppxPackage+  REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "1" /f
  
-==== Remove OneDrive ====+  "powershell.exe" -Command "$md5 New-Object -TypeName 'System.Security.Cryptography.MD5CryptoServiceProvider'"
  
-  taskkill /IM "OneDrive.exe" /F+==== Disable ====
  
-  %windir%\SysWOW64\OneDriveSetup.exe /uninstall+****
  
-  rmdir "%UserProfile%\OneDrive" "%ProgramData%\Microsoft OneDrive" "%LocalAppData%\Microsoft\OneDrive" "C:\OneDriveTemp" //Q+  REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy/v "Enabled" /t "REG_DWORD" /d "0" /f
  
-  reg delete "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f+===== Remove Quick Access =====
  
-  reg delete "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f+****
  
-===== Maintenance =====+  reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD" /d "1" /f
  
-<code> +===== Remove Windows Search =====
-"%windir%\microsoft.net\Framework\v4.0.30319\ngen.exe" update /force /queue +
-"%windir%\microsoft.net\Framework64\v4.0.30319\ngen.exe" update /force /queue +
-"%windir%\microsoft.net\Framework\v4.0.30319\ngen.exe" executequeueditems +
-"%windir%\microsoft.net\Framework64\v4.0.30319\ngen.exe" executequeueditems+
  
-"%windir%\system32\Dism.exe" /online /Cleanup-Image /StartComponentCleanup /ResetBase /RestoreHealth +  "sc.exe" stop "WSearch" & "sc.exe" config "WSearch" "start=disabled"
-"%windir%\system32\sfc.exe" /scannow+
  
-"%windir%\system32\cleanmgr.exe" /sageset:65535 +  "DISM.exe" /Online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove
-"%windir%\system32\cleanmgr.exe" /sagerun:65535+
  
-"%windir%\system32\dfrgui.exe"</code> +===== Show All Folders in File Explorer Pane =====
- +
-===== Auto Login =====+
  
 **** ****
  
-  control userpasswords2+  reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "NavPaneShowAllFolders" /t "REG_DWORD" /d "1" /f
  
-===== Add Hardware Wizard =====+===== Verbose Shutdown =====
  
 **** ****
  
-  %SYSTEMROOT%\System32\hdwwiz.exe+  reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f
  
-===== GodMode Folder =====+====== Other ======
  
-****+===== Microsoft Store =====
  
-  GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}+  "WSReset.exe" -i
  
-====== Settings ======+<code> 
 +"WSReset.exe" -i 
 +TIMEOUT /T "20" /NOBREAK 
 +"WSReset.exe" -i 
 +EXIT /B
  
-===== Lock screen Background =====+:: End</code>
  
-  * Hero+===== WinSAT =====
  
-  C:\Windows\Web\Wallpaper\Windows\img0.jpg+  "WinSAT.exe" forgethistory
  
-===== Verbose Shutdown =====+  "WinSAT.exe" "formal" -restart "clean"
  
-****+  "WinSAT.exe" query
  
-  reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f+===== NetFX3 From Install Media =====
  
-===== Remove Power Plans =====+  * Change ''D:\'' to install media drive if necessary
  
-  * For whatever reason, Windows likes to revert to High Performance (or another program switches it) instead of keeping a custom power plan +  Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess
-  * The solution to this is to simply remove all power plans that aren't the custom one...+
  
-==== Show Plans ====+===== Prevent Driver Changes =====
  
-****+==== Notes ====
  
-  powercfg /list+  * To be done after a proper driver is manually installed 
 +  * This ensures Windows Update nor anything else can replace installed drivers for specific devices unattended 
 +  * Additional entries need to add a new number (the value after ''/v''
 +  * The device ID can be acquired from Device Manager and should be pasted as-is (no extra slashes)
  
-==== Ultimate Power Plan ====+==== Base Policies ====
  
-  * [[https://www.tenforums.com/tutorials/107613-add-remove-ultimate-performance-power-plan-windows-10-a.html|Windows 10 Help Forums]]+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDs" /t "REG_DWORD" /d "1" /f
  
-  powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDsRetroactive" /t "REG_DWORD" /d "0" /f
  
-==== Remove Plans ====+==== Format ====
  
-  * Replace ''x'' with the ''GUID'' of the plan listed with the above command+  * Do **not** copy/paste these as-is; only here for reference 
 +  * Adjust to specific devices as-needed
  
-  powercfg -delete x+==== Add Prevent Policy ====
  
-  powercfg -delete 381b4222-f694-41f0-9685-ff5bb260df2e+****
  
-====== Hardware Diagnostics ======+  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
  
-===== CPU-Z =====+==== Remove Prevent Policy ====
  
-  https://www.cpuid.com/softwares/cpu-z.html+****
  
-===== FurMark =====+  reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f
  
-  * https://geeks3d.com/furmark/downloads/+====== Services ======
  
-===== GPU-Z =====+  * TODO: Separate page, individual batches
  
-  * https://www.techpowerup.com/download/techpowerup-gpu-z/+  "sc.exe" stop "DPS" & "sc.exe" config "DPS" "start=disabled"
  
-===== HWMonitor =====+  "sc.exe" stop "DiagTrack" & "sc.exe" config "DiagTrack" "start=disabled"
  
-  * https://www.cpuid.com/softwares/hwmonitor.html+  "sc.exe" stop "WdiSystemHost" & "sc.exe" config "WdiSystemHost" "start=disabled"
  
-===== Intel PDT =====+  "sc.exe" stop "PcaSvc" & "sc.exe" config "PcaSvc" "start=disabled"
  
-  * https://downloadcenter.intel.com/download/19792 +===== Spinesnap =====
-  * Intel Processor Diagnostic Tool+
  
-===== prime95 =====+  "sc.exe" stop "ApHidMonitorService" & "sc.exe" config "ApHidMonitorService" "start=disabled"
  
-  * https://www.mersenne.org/download/+  "sc.exe" stop "RstMwService" & "sc.exe" config "RstMwService" "start=disabled"
  
 ====== Programs ====== ====== Programs ======
  
-===== 7-Zip-zstd =====+  * [[windows:programs|More Programs]]
  
-  * https://github.com/mcmilk/7-Zip-zstd/+===== 7-Zip ===== 
 + 
 +  * https://www.7-zip.org/download.html
  
 ===== Android Tools ===== ===== Android Tools =====
  
-  * https://dl-ssl.google.com/android/repository/latest_usb_driver_windows.zip +  * [[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|platform-tools]]
-  * https://dl-ssl.google.com/android/repository/platform-tools-latest-windows.zip +
- +
-  SETX /M path "%path%;C:\Program Files\platform-tools"+
  
 ===== aria2 ===== ===== aria2 =====
Line 362: Line 353:
   * https://github.com/aria2/aria2/releases   * https://github.com/aria2/aria2/releases
  
-  SETX /M path "%path%;C:\Program Files\aria2c"+===== Brain Workshop =====
  
-===== BleachBit ===== +  * https://sourceforge.net/projects/brainworkshop/files/brainworkshop/
- +
-  * https://www.bleachbit.org/download/windows+
  
 ===== Calculator ===== ===== Calculator =====
Line 374: Line 363:
   win32calc   win32calc
  
-===== DirectX End-User Runtimes =====+===== 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
- 
-===== FileZilla ===== 
- 
-  * https://filezilla-project.org/download.php?show_all=1 
  
 ===== Firefox ===== ===== Firefox =====
  
-==== Download ====+  * [[https://download.mozilla.org/?product=firefox-esr-msi-latest-ssl&os=win64&lang=en-US|ESR MSI]]
  
-  * [[https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US|exe]] +  * [[programs;firefox|Settings]]
-  * [[https://download.mozilla.org/?product=firefox-msi-latest-ssl&os=win64&lang=en-US|MSI]]+
  
-==== Settings ==== +===== Thunderbird =====
- +
-=== Default Profile === +
- +
-  rd "%appdata%\Mozilla" /s /q +
- +
-  md "%appdata%\Mozilla\Firefox\Profiles\espionage724" +
- +
-== profiles.ini == +
- +
-  notepad "%appdata%\Mozilla\Firefox\profiles.ini" +
- +
-<code> +
-[General] +
-StartWithLastProfile=1 +
- +
-[Profile0] +
-Name=default +
-IsRelative=1 +
-Path=Profiles/espionage724 +
-Default=1</code> +
- +
-=== user.js === +
- +
-  * Last updated: 2020/07/14 +
-  * :!: Remove VPN section if not using a VPN +
- +
-  notepad "%appdata%\Mozilla\Firefox\Profiles\espionage724\user.js" +
- +
-<code> +
-/*********** +
- * General * +
- ***********/ +
- +
-user_pref("extensions.screenshots.disabled", true); +
-user_pref("reader.parse-on-load.enabled", false); +
- +
-user_pref("media.mediasource.experimental.enabled", true); +
-user_pref("media.mediasource.ignore_codecs", true); +
-user_pref("media.autoplay.enabled", false); +
-user_pref("media.av1.enabled", false); +
-user_pref("media.hardware-video-decoding.force-enabled", true); +
-user_pref("widget.wayland-dmabuf-vaapi.enabled", true); +
- +
-user_pref("webgl.disabled", true); +
-user_pref("webgl.enable-webgl2", false); +
-user_pref("accessibility.force_disabled", 1); +
-user_pref("mousewheel.min_line_scroll_amount", 40); +
-user_pref("browser.tabs.drawInTitlebar", true); +
-user_pref("network.standard-url.escape-utf8", false); +
- +
-/*********** +
- * Privacy * +
- ***********/ +
- +
-user_pref("security.tls.version.min", 2); +
-user_pref("security.ssl.require_safe_negotiation", true); +
-user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true); +
-user_pref("security.OCSP.require", true); +
-user_pref("security.cert_pinning.enforcement_level", 2); +
-user_pref("security.ssl3.rsa_des_ede3_sha", false); +
-user_pref("security.ssl.enable_false_start", false); +
- +
-user_pref("geo.enabled", false); +
-user_pref("network.http.sendRefererHeader", false); +
-user_pref("privacy.donottrackheader.enabled", true); +
- +
-user_pref("browser.safebrowsing.malware.enabled", false); +
-user_pref("browser.safebrowsing.phishing.enabled", false); +
-user_pref("browser.safebrowsing.downloads.enabled", false); +
- +
-user_pref("network.security.esni.enabled", true); +
- +
-user_pref("privacy.resistFingerprinting", true); +
-user_pref("privacy.trackingprotection.enabled", true); +
-user_pref("toolkit.telemetry.enabled", false); +
- +
-/******* +
- * U2F * +
- *******/ +
- +
-user_pref("security.webauth.u2f", true); +
- +
-/********** +
- * Tweaks * +
- **********/ +
- +
-user_pref("browser.cache.disk.enable", false); +
-user_pref("browser.cache.memory.enable", true); +
-user_pref("browser.cache.memory.enable", true); +
- +
-/******* +
- * VPN * +
- *******/ +
- +
-user_pref("network.dns.disableIPv6", true); +
-user_pref("media.peerconnection.enabled", false); +
- +
-/******* +
- * END * +
- *******/</code> +
- +
-=== Apply Settings === +
- +
-  * :!: Firefox must be started for the first time with the ''-p'' flag for the profile above to be used +
- +
-  "%ProgramFiles%\Mozilla Firefox\firefox.exe" -p default +
- +
-==== Remove Features ==== +
- +
-**** +
- +
-  rd "%ProgramFiles%\Mozilla Firefox\browser\features" /s /q +
- +
-==== Extensions ==== +
- +
-  * Decentraleyes +
-  * HTTPS Everywhere +
-  * Privacy Possum +
-  * Cookie AutoDelete +
-  * uBlock Origin +
- +
-  * https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/versions +
-  * https://www.eff.org/https-everywhere +
-  * https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/versions +
-  * https://addons.mozilla.org/en-US/firefox/addon/cookie-autodelete/versions +
-  * https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/versions +
- +
-=== Cookie AutoDelete === +
- +
-  * [x] Enable Automatic Cleaning? Delay Before Cleaning +
-  * [x] Enable Cleanup on Domain Change +
-  * [ ] Enable Cleanup Log and Counter +
-  * [ ] Show Notification After Cookie Cleanup +
-  * [x] Clean Cookies from Open Tabs on Startup +
-  * [x] Localstorage Cleanup (Firefox 58+) +
- +
-=== uBlock Origin === +
- +
-== Settings == +
- +
-  * [x] Prevent WebRTC from leaking local IP addresses +
- +
-== Filter lists == +
- +
-  * [ ] Ads -> EasyList ((uncheck; included in ''Fanboy Ultimate List'')) +
-  * [ ] Privacy -> EasyPrivacy ((uncheck; included in ''Fanboy Ultimate List'')) +
- +
-  * Multipurpose -> [x] Dan Pollock's hosts file +
-  * Multipurpose -> [x] hpHost's Ad and tracking servers +
-  * Multipurpose -> [x] MVPS HOSTS +
- +
-  * Custom -> [x] Import +
- +
-== Custom 3rd-party filters == +
- +
-  * Last updated: 2018/11/24 +
- +
-<code> +
-https://www.fanboy.co.nz/fanboy-problematic-sites.txt +
-https://www.fanboy.co.nz/r/fanboy-ultimate.txt +
-https://www.fanboy.co.nz/fanboy-antifacebook.txt +
-https://www.fanboy.co.nz/fanboy-antifonts.txt +
-https://www.fanboy.co.nz/fanboy-cookiemonster.txt +
-https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/popads-domains-list.txt +
-https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fake-news.txt</code> +
- +
-==== Testing Sites ====+
  
-  * https://www.youtube.com/html5 +  * [[https://download.mozilla.org/?product=thunderbird-esr-msi-latest-ssl&os=win64&lang=en-US|ESR MSI]]
-  * https://ipx.ac +
-  * https://decentraleyes.org/test/ +
-  * https://panopticlick.eff.org/ +
-  * https://browserleaks.com/ +
-  * https://speedof.me/ +
-  * https://www.cloudflare.com/ssl/encrypted-sni/ +
-  * https://1.1.1.1/help+
  
 ===== GIMP ===== ===== GIMP =====
  
   * https://www.gimp.org/downloads   * https://www.gimp.org/downloads
- 
-===== Google Chrome ===== 
- 
-  * https://www.google.com/chrome/?standalone=1&platform=win64 
- 
-===== iTunes ===== 
- 
-  * https://www.apple.com/itunes/download/win64 
  
 ===== KeePassXC ===== ===== KeePassXC =====
  
   * https://keepassxc.org/download#windows   * https://keepassxc.org/download#windows
- 
-===== Keybase ===== 
- 
-  * https://prerelease.keybase.io/keybase_setup_amd64.msi 
- 
-===== KMS-VL-ALL ===== 
- 
-  * https://github.com/abbodi1406/KMS_VL_ALL_AIO/releases 
-  * https://forums.mydigitallife.net/threads/kms_vl_all-smart-activation-script.79535/ 
  
 ===== LibreOffice ===== ===== LibreOffice =====
Line 596: Line 389:
   * https://www.libreoffice.org/download/download/   * https://www.libreoffice.org/download/download/
  
-===== MarkC Mouse Acceleration Fix =====+  * ''[ ]'' Use Skia 
 +  * ''[ ]'' Use a Java runtime
  
-  * https://donewmouseaccel.blogspot.com/2010/03/markc-windows-7-mouse-acceleration-fix.html+===== Okular =====
  
-===== mpv ===== +  * https://cdn.kde.org/ci-builds/graphics/okular/master/windows/
- +
-  * https://sourceforge.net/projects/mpv-player-windows/files/64bit/ +
-  * https://mpv.io/+
  
 ===== Notepad++ ===== ===== Notepad++ =====
Line 611: Line 402:
 ===== OBS ===== ===== OBS =====
  
-  * https://obsproject.com/download+  * https://github.com/obsproject/obs-studio/releases
  
-===== Oculus =====+===== qBittorrent =====
  
-  * https://www.oculus.com/rift/setup/?locale=en_US+  * https://www.qbittorrent.org/download
  
-==== Backup/Restore ====+===== VC++ Redist =====
  
-  * Let Oculus download its 5.15GB installer +  * https://github.com/abbodi1406/vcredist/releases
-  * While it is installing, backup the ''C:\OculusSetup-DownloadCache'' folder +
-  * If restoring, copy ''C:\OculusSetup-DownloadCache'' and start the Oculus installer +
-  * If an updated Oculus client is available, it will download instead of restoring+
  
-==== OBS Mirror ====+===== foobar2000 =====
  
-  * https://developer.oculus.com/documentation/native/pc/dg-compositor-mirror/?locale=en_US+  * https://www.foobar2000.org/download
  
-<code>--Size 1280 1280 --FovTanAngleMultiplier 1.3 1.3 --DisableTimewarp --SymmetricFov --RightEyeOnly --DisableFovStencil --IncludeSystemGui --IncludeNotifications</code>+===== VLC media player =====
  
-===== Rufus ===== +  * https://download.videolan.org/pub/videolan/vlc/last/win64
- +  * https://www.videolan.org/vlc/download-windows.html
-  * https://rufus.ie/ +
- +
-===== Thunderbird ===== +
- +
-  * https://www.thunderbird.net/en-US/thunderbird/all/#+
- +
-  * :!: There is a 64-bit version of Thunderbird for Windows +
- +
-===== Transmission ===== +
- +
-  * https://transmissionbt.com/download+
- +
-  http://john.bitsurge.net/public/biglist.p2p.gz +
- +
-===== Visual C++ Redistributable Runtimes ===== +
- +
-  * https://github.com/abbodi1406/vcredist/releases +
-  * https://forums.mydigitallife.net/threads/repack-visual-c-redistributable-runtimes.76588/+
  
 ===== Vulkan Runtime ===== ===== Vulkan Runtime =====
  
-  * https://vulkan.lunarg.com/sdk/home#windows +  * https://vulkan.lunarg.com/sdk/home
-  * https://vulkan.lunarg.com/sdk/home#sdk/downloadConfirm/latest/windows/vulkan-runtime.exe +
- +
-===== WireGuard ===== +
- +
-  * :!: If kill switch is enabled, all local network resources can't be accessed +
- +
-  * https://www.wireguard.com/install/ +
- +
-==== VPN.AC ==== +
- +
-  * https://vpn.ac/knowledgebase/130/WireGuard-on-Windows.html +
-  * https://vpn.ac/wgmanager+
  
 ====== Games ====== ====== Games ======
Line 671: Line 429:
 ===== Battle.net App ===== ===== Battle.net App =====
  
-  * http://dist.blizzard.com/downloads/bna-installers/322d5bb9ae0318de3d4cde7641c96425/retail.1/Battle.net-Setup-enUS.exe +  * https://download.battle.net/en-us/?product=bnetdesk 
- +  * [[http://dist.blizzard.com/downloads/bna-installers/322d5bb9ae0318de3d4cde7641c96425/retail.1/Battle.net-Setup-enUS.exe|Older exe]] (no SSL)
-===== Path of Exile ===== +
- +
-  * https://www.pathofexile.com/downloads/PathOfExileInstaller.exe+
  
 ===== Steam ===== ===== Steam =====
  
   * https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe   * https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe
-  * See [[notes:game_command-line_arguments|Command-line flags]]+  * See [[games;windows;notes;game_launch_flags|Game Launch Flags]]
  
-===== Diablo II =====+==== Shortcut ====
  
-==== Glide Wrapper ====+  * Disable: Settings -> Interface -> Enable GPU accelerated rendering in web views
  
-  * http://www.svenswrapper.de/english/downloads.html+  "%ProgramFiles(x86)%\Steam\steam.exe" -silent -nocrashmonitor -cef-single-process -cef-disable-breakpad
  
-===== Guild Wars 2 ===== +  Steam (min)
- +
-  * https://account.arena.net/content/download/gw2/win/64+
  
 ====== Drivers ====== ====== Drivers ======
  
-===== Spinesnap ===== +  See [[windows:drivers|Drivers]] for more URLs
- +
-  * [[https://www.acer.com/ac/en/US/content/support-product/7603|Acer Predator PH315-51]] +
- +
-==== Wireless ==== +
- +
-  * Intel Corporation Wireless-AC 9560 [Jefferson Peak] (rev 10) +
-  * Intel(R) Wireless-AC 9560 160MHz +
- +
-  * [[https://downloadcenter.intel.com/product/59485/Wireless-Networking|Intel Official]] +
-  * [[https://www.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=110&lang=en|Station-Drivers]] +
- +
-==== Bluetooth ==== +
- +
-  * [[https://downloadcenter.intel.com/product/59485/Wireless-Networking|Intel Official]] +
-  * [[https://www.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=109&lang=en|Station-Drivers]] +
- +
-==== Ethernet ==== +
- +
-  * Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 12) +
-  * Realtek PCIe GbE Family Controller +
- +
-  * [[https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100-1000m-gigabit-ethernet-pci-express-software|Realtek Official]] +
-  * [[https://ftp.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=371&orderby=4&lang=en|Station-Drivers]] +
- +
-==== Integrated Graphics ==== +
- +
-  * Intel Corporation UHD Graphics 630 (Mobile) +
-  * Intel(R) UHD Graphics 630 +
- +
-  * [[https://downloadcenter.intel.com/download/29465|Intel Official]] +
-  * [[https://forums.laptopvideo2go.com/forum/174-intel-video-drivers-and-tools/|LaptopVideo2Go Forums]] +
- +
-=== Notes === +
- +
-  * Control panel randomly downloads at some point +
- +
-==== Discrete Graphics ==== +
- +
-  * NVIDIA Corporation GP106M [GeForce GTX 1060 Mobile] (rev a1) +
-  * NVIDIA GeForce GTX 1060 +
- +
-  * NVIDIA Corporation GP106 High Definition Audio Controller (rev a1) +
- +
-  * [[https://github.com/CHEF-KOCH/nVidia-modded-Inf/releases|CHEF-KOCH/nVidia-modded-Inf GitHub]] +
-  * [[https://forums.guru3d.com/threads/421390|cryohellinc Clean Version guru3D]] +
-  * [[https://www.nvidia.com/Download/index.aspx?lang=en-us|NVIDIA Official]] +
- +
-=== Notes === +
- +
-  * :!: Remove the ''dch'' part from the driver URL in order to download the standard driver +
-  * :!: Example URLs: [[http://us.download.nvidia.com/Windows/441.87/441.87-notebook-win10-64bit-international-dch-whql.exe|441.87 DCH]] and [[http://us.download.nvidia.com/Windows/441.87/441.87-notebook-win10-64bit-international-whql.exe|441.87 Standard]] +
- +
-== Manual Telemetry Strip == +
- +
-  * :!: Keep the following folders/files and remove everything else: +
- +
-  * ''Display.Driver'' +
-  * ''Display.Optimus'' +
-  * ''GFExperience'' +
-  * ''HDAudio'' +
-  * ''NVI2'' +
-  * ''EULA.txt'' +
-  * ''ListDevices.txt'' +
-  * ''setup.cfg'' +
-  * ''setup.exe'' +
- +
-  * :!: Create a ''NVIDIA Silent.cmd'' in the root NVIDIA driver directory with the following contents:+
  
-  setup.exe -s Display.Driver+===== Boulderback =====
  
 ==== Chipset ==== ==== Chipset ====
  
-  * Intel Corporation Cannon Lake PCH+  * https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=r0jhr&oscode=w764&productcode=precision-m6500 
 +  * ''9.1.1.1025''
  
-  * [[https://downloadcenter.intel.com/download/28531|Intel Official]] +==== Graphics ====
-  * [[https://www.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=406&orderby=4&lang=en|Station-Drivers]]+
  
-==== Serial IO ====+  * 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]]
  
-  * Intel Corporation Cannon Lake PCH Serial IO I2C Controller #0 (rev 10) +===== Spinesnap =====
-  * Intel(R) Serial IO I2C Host Controller - A368+
  
-  * Intel Corporation Cannon Lake PCH Serial IO I2C Controller #1 (rev 10) +  * [[https://www.dell.com/support/home/en-us/product-support/product/latitude-15-5591-laptop/drivers|Dell Latitude 5591 - Support and BIOS Updates]]
-  * Intel(R) Serial IO I2C Host Controller A369+
  
-  * Intel Corporation Cannon Lake PCH Serial IO UART Host Controller (rev 10) +==== Keyboard ====
-  * Intel(R) Serial IO UART Host Controller - A328+
  
-  * [[https://www.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=100&orderby=4&lang=en|Station-Drivers]]+  * EPOMAKER x LEOBOG Hi75
  
-=== Notes === +  * https://epomaker.com/blogs/firmware/epomaker-x-leobog-hi75-firmware 
- +  * https://epomaker.com/blogs/software/epomaker-x-leobog-hi75-driver
-  * The latest version is tricky to get from Station-Drivers since some work and others don't ID match +
-  * Latest known good: 30.100.1947.3 +
-  * Not compatible: 30.100.1932.6, 30.100.1916.1 +
- +
-==== Audio ==== +
- +
-  * Intel Corporation Cannon Lake PCH cAVS (rev 10) +
-  * Realtek High Definition Audio +
- +
-  * ALC255 +
- +
-  [[https://www.tenforums.com/sound-audio/135259-latest-realtek-hd-audio-driver-version-2-a.html|Windows 10 Forums]] +
-  * [[https://www.catalog.update.microsoft.com/Search.aspx?q=Realtek%20Semiconductor%20Corp.%20-%20MEDIA|Microsoft Update Catalog]] +
- +
-=== Notes === +
- +
-  * FF00 is wanted if given a choice since it's Generic +
- +
-==== RST/NVMe ==== +
- +
-  * Intel Corporation SSD Pro 7600p/760p/E 6100p Series +
-  * Intel(R) NVMe Controller +
- +
-  * [[https://www.station-drivers.com/index.php?option=com_remository&Itemid=352&func=select&id=103&lang=en|Station-Drivers]] +
-  * [[https://www.win-raid.com/t2f23-Intel-RST-RSTe-Drivers-latest-v-WHQL-v-WHQL.html|Win-Raid Forum]] +
- +
-=== Notes === +
- +
-  * The RST driver package provides the driver for both the SATA controller and NVMe drive, regardless of the NVMe drive being port-remapped or not +
- +
-==== AHCI ==== +
- +
-  * Intel Corporation SSD Pro 7600p/760p/E 6100p Series +
- +
-  * [[https://downloadcenter.intel.com/product/35125/Memory-and-Storage|Intel Official]] +
-  * [[https://www.win-raid.com/t2f23-Intel-RST-RSTe-Drivers-latest-v-WHQL-v-WHQL.html|Win-Raid Forum]] +
- +
-=== Notes === +
- +
-  * If RST is disabled, use the Intel Official driver for the NVMe drive, and use the AHCI driver provided from Win-Raid Forum for the SATA controller +
- +
-==== Card Reader ==== +
- +
-  * Realtek Semiconductor Co., Ltd. RTL8411B PCI Express Card Reader (rev 01) +
-  * Realtek PCIE CardReader +
- +
-  * [[https://ftp.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=248&orderby=4&lang=en|Station-Drivers]]+
  
 ==== Mouse ==== ==== Mouse ====
  
-  * Corsair Gaming HARPOON RGB Mouse+  * ATTACK SHARK R6
  
-  * [[https://www.corsair.com/us/en/downloads|CORSAIR Official]]+  "%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge_proxy.exe" --app="https://cn.attackshark.pro/WebDriven/index.html#/project/items"
  
-==== I2C Touchpad ====+==== SATA/RST ====
  
-  * ELAN0504:01 04F3:3091 Touchpad +  * [[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]] 
-  * ELAN I2C Filter Driver+  * :?: Last tested version: ''17.11.3.1010''
  
-  * [[https://global-download.acer.com/GDFiles/Driver/TouchPad/touchpad_ELANTECH_13.6.10.2_W10x64_A.zip?acerid=636602250745729209&Step1=NOTEBOOK&Step2=PREDATOR&Step3=PREDATOR%20PH315-51&OS=ALL&LC=en&BC=ACER&SC=PA_6|Acer]]+==== Ethernet ====
  
-=== Notes ===+  * I219-LM Gigabit 
 +  * Intel Corporation Ethernet Connection (7) I219-LM (rev 10) ((rev 10 drivers, not rev 18+))
  
-  * The I2C driver doesn't exist on Station-Drivers+  * [[https://www.intel.com/content/www/us/en/products/sku/82185/intel-ethernet-connection-i219lm/downloads.html|Intel Download Center]] 
 +  * Last tested: ''Wired_driver_30.0.1_x64.zip''
  
-===== Piety ===== +==== Wireless ====
- +
-  * http://www.dell.com/support/home/us/en/04/product-support/product/inspiron-17-5767-laptop/drivers +
- +
-  * Dell Inspiron 17 5767 +
- +
-==== AMD Radeon R7 M445/440 ==== +
- +
-  * http://support.amd.com/en-us/download/mobile?os=Windows+10+-+64 +
- +
-==== Intel Management Engine Interface ==== +
- +
-  * Intel Corporation Cannon Lake PCH HECI Controller (rev 10) +
- +
-  * [[http://www.win-raid.com/t596f39-Intel-Management-Engine-Drivers-Firmware-amp-System-Tools.html|Win-Raid Forum]] +
-  * [[https://downloadcenter.intel.com/download/28679|Intel Official]] +
- +
-==== Realtek Ethernet ==== +
- +
-  * https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100m-fast-ethernet-pci-express-software +
- +
-==== Intel HD Graphics ==== +
- +
-  * https://forums.laptopvideo2go.com/forum/174-intel-video-drivers-and-tools +
-  * https://downloadcenter.intel.com/download/28289 +
- +
-==== Intel Chipset ==== +
- +
-  * https://downloadcenter.intel.com/download/28310 +
- +
-==== Intel Management Engine Interface ==== +
- +
-  * http://www.win-raid.com/t596f39-Intel-Management-Engine-Drivers-Firmware-amp-System-Tools.html +
-  * https://downloadcenter.intel.com/download/28083 +
- +
-  * Intel MEI +
- +
-==== Intel Rapid Storage Technology ==== +
- +
-  * http://www.win-raid.com/t2f23-Intel-RST-RSTe-Drivers-newest-v-WHQL-v-WHQL.html +
-  * https://downloadcenter.intel.com/download/28255 +
- +
-  * Intel RST +
- +
-==== Intel Wireless ==== +
- +
-  * https://downloadcenter.intel.com/download/28276 +
- +
-==== Intel Bluetooth ====+
  
-  * https://downloadcenter.intel.com/download/28009+  * Wireless-AC 9560 
 +  * Intel Corporation Cannon Lake PCH CNVi WiFi (rev 10)
  
-===== Hatebeat/Nightwane =====+  * [[https://www.intel.com/content/www/us/en/products/sku/99446/intel-wirelessac-9560/downloads.html|Intel Download Center]] (IT Administrators 8-)) 
 +  * Last tested: ''WiFi-23.110.0-Driver64-Win10-Win11.zip''
  
-==== AMD Radeon HD 6800 Series ====+=== Bluetooth ===
  
-  * https://support.amd.com/en-us/download/desktop/legacy?product=legacy3&os=Windows+10+-+64+  * Last tested''BT-23.100.1-64UWD-Win10-Win11.zip''
  
-  aria2c "https://www2.ati.com/drivers/beta/non-whql-win10-64bit-radeon-software-crimson-relive-16.2.1-sep20.exe" --referer="https://www2.ati.com"+==== Graphics ====
  
-==== AMD Chipset ====+  * Intel UHD Graphics 630 
 +  * Intel Corporation CoffeeLake-H GT2 [UHD Graphics 630]
  
-  * https://support.amd.com/en-us/download/chipset?os=Windows+10+-+64+  * [[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]] 
 +  * Last tested: ''gfx_win_101.2135.exe''
  
-  aria2c "https://www2.ati.com/drivers/amd-chipset-drivers.exe" --referer="https://www2.ati.com" 
C:/www/wiki/data/attic/windows/10.1594744202.txt.gz · Last modified: by Sean Rhone