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
Last revisionBoth sides next revision
windows:10 [2020/06/16 18:17] – rst station drivers Sean Rhonewindows:10 [2024/02/02 12:49] Sean Rhone
Line 2: Line 2:
  
   * Microsoft Windows 10   * Microsoft Windows 10
-  * LTSC 1809+  * LTSC 21H2 
 +  * [[https://learn.microsoft.com/en-us/windows/release-health/release-information|Windows 10 release information]]
  
-====== Notes ======+====== Download ======
  
-  * 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)) +  * :!: To show ISO downloads on Windows 10 from FirefoxTools -> Browser Tools -> Responsive Design Mode 
-  * :!: 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))+
  
-====== Download ====== +  * [[https://www.microsoft.com/en-us/software-download/windows10ISO|Windows 10]] 
- +  * [[https://forums.mydigitallife.net/threads/discussion-windows-10-enterprise-iot-enterprise-n-ltsc-2021.84509|LTSC 2021]]
-  * https://forums.mydigitallife.info/threads/72600-ISO-for-latest-enUS-LTSB+
  
 ====== Updates ====== ====== Updates ======
  
-===== Servicing Stack =====+===== Slipstream =====
  
-==== Information ====+  * See [[windows:slipstream-updates]] 
 + 
 +===== Information =====
  
   * https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates#when-are-they-released   * https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates#when-are-they-released
   * https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001   * https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001
-  * :!: SSU is recommended to be installed **before** the CU 
  
-==== Link ====+  * [[https://www.catalog.update.microsoft.com/Search.aspx?q=Cumulative+Update+for+Windows+10+Version+21H2+for+x64-based+Systems|Windows 10 21H2]]
  
-  * [[https://www.catalog.update.microsoft.com/Search.aspx?q=Update+for+Windows+10+Version+1809+for+x64-based+Systems|Microsoft Update Catalog]]+====== Settings ======
  
-  YYYY-MM Update for Windows 10 Version 1809 for x64-based Systems (KB#######+===== Disable Clipboard History =====
- +
-===== Cumulative ===== +
- +
-==== Information ==== +
- +
-  * :!: SSU is recommended to be installed **before** the CU +
- +
-==== Link ==== +
- +
-  * [[http://www.catalog.update.microsoft.com/Search.aspx?q=Cumulative+Update+for+Windows+10+Version+1809+for+x64-based+Systems|Microsoft Update Catalog]] +
- +
-  YYYY-MM Cumulative Update for Windows 10 Version 1809 for x64-based Systems (KB#######+
- +
-====== Prevent Driver Changes ====== +
- +
-===== Notes ===== +
- +
-  * 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) +
- +
-===== Base Policies ===== +
- +
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDs" /t "REG_DWORD" /d "1" /f +
- +
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDsRetroactive" /t "REG_DWORD" /d "0" /f +
- +
-===== Format ===== +
- +
-  * Do **not** copy/paste these as-is; only here for reference +
-  * Adjust to specific devices as-needed +
- +
-==== 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\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f
  
-==== Remove Prevent Policy ====+===== Disable Cortana and Web Search =====
  
 **** ****
  
-  reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f
  
-====== Tweaks ======+===== Disable CPU Mitigations =====
  
-===== Disable Clipboard History =====+  * https://support.microsoft.com/en-us/help/4073119/protect-against-speculative-execution-side-channel-vulnerabilities-in 
 +  * https://www.grc.com/inspectre.htm
  
-****+  reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "FeatureSettingsOverride" /t "REG_DWORD" /d "3" /f
  
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f +  reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "FeatureSettingsOverrideMask" /t "REG_DWORD" /d "3" /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 ===== ===== Disable Game DVR =====
Line 110: Line 71:
  
   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
 +
 +===== 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 Remote Desktop ===== ===== Disable Remote Desktop =====
Line 165: Line 142:
   reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t "REG_DWORD" /d "1" /f   reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t "REG_DWORD" /d "1" /f
  
-===== Open Pictures With Windows Photo Viewer =====+===== Remove Quick Access =====
  
-  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 "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD" /d "1" /f
  
-  reg add "HKCU\Software\Classes\.gif" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f+===== Remove Windows Search =====
  
-  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" /"PhotoViewer.FileAssoc.Tiff" /f+  Dism /online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove
  
-  reg add "HKCU\Software\Classes\.tiff" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f +===== Show All Folders in File Explorer Pane =====
- +
-  reg add "HKCU\Software\Classes\.ico" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f +
- +
-===== Remove Quick Access =====+
  
 **** ****
  
-  reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD" /d "1" /f+  reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "NavPaneShowAllFolders" /t "REG_DWORD" /d "1" /f
  
-===== Remove Windows Search =====+===== Verbose Shutdown =====
  
 **** ****
  
-  Dism /online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove+  reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /"1" /
 + 
 +====== Other ======
  
 ===== ScriptTiger Hosts File ===== ===== ScriptTiger Hosts File =====
  
   * https://scripttiger.github.io/hosts-packages/   * https://scripttiger.github.io/hosts-packages/
 +  * Unified hosts + fakenews + gambling (Compressed)
  
   * Powershell Script ''*.ps1''   * Powershell Script ''*.ps1''
 +  * TODO: Add admin-mode
  
 <code> <code>
Line 203: Line 180:
 Invoke-WebRequest "https://scripttiger.github.io/alts/compressed/blacklist-fg.txt" -OutFile "C:\Windows\System32\drivers\etc\hosts" Invoke-WebRequest "https://scripttiger.github.io/alts/compressed/blacklist-fg.txt" -OutFile "C:\Windows\System32\drivers\etc\hosts"
 ipconfig /flushdns</code> 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 
  
 ===== NetFX3 From Install Media ===== ===== NetFX3 From Install Media =====
Line 216: Line 187:
   Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess   Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess
  
-===== 1607 =====+===== Remove Most Modern UI Apps =====
  
-==== Disable HomeGroup ==== +  Tested fine on 20H2 
- +  * :!: This broke the start menu on 1809
-**** +
- +
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\HomeGroup" /v "DisableHomeGroup" /t "REG_DWORD" /d "1" /f +
- +
-==== Remove Most Modern UI Apps ====+
  
   * Powershell Script ''*.ps1''   * Powershell Script ''*.ps1''
-  * :!: Do not run this on 1809 as it'll break the Start Menu 
-  * :!: Seems safe to run on 201H 
  
   Get-AppxPackage -allusers | Remove-AppxPackage   Get-AppxPackage -allusers | Remove-AppxPackage
  
-==== Remove OneDrive ====+===== Remove OneDrive =====
  
   taskkill /IM "OneDrive.exe" /F   taskkill /IM "OneDrive.exe" /F
Line 245: Line 209:
  
 ===== Maintenance ===== ===== Maintenance =====
 +
 +  * Last updated: 2020/10/02
  
 <code> <code>
 +:: .NET Framework 4
 "%windir%\microsoft.net\Framework\v4.0.30319\ngen.exe" update /force /queue "%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\Framework64\v4.0.30319\ngen.exe" update /force /queue
Line 252: Line 219:
 "%windir%\microsoft.net\Framework64\v4.0.30319\ngen.exe" executequeueditems "%windir%\microsoft.net\Framework64\v4.0.30319\ngen.exe" executequeueditems
  
 +:: System File Check, Cleanup, and Repair
 "%windir%\system32\Dism.exe" /online /Cleanup-Image /StartComponentCleanup /ResetBase /RestoreHealth "%windir%\system32\Dism.exe" /online /Cleanup-Image /StartComponentCleanup /ResetBase /RestoreHealth
 "%windir%\system32\sfc.exe" /scannow "%windir%\system32\sfc.exe" /scannow
  
 +:: Classic Disk Cleanup
 "%windir%\system32\cleanmgr.exe" /sageset:65535 "%windir%\system32\cleanmgr.exe" /sageset:65535
 "%windir%\system32\cleanmgr.exe" /sagerun:65535 "%windir%\system32\cleanmgr.exe" /sagerun:65535
  
 +:: Defrag/Trim
 "%windir%\system32\dfrgui.exe"</code> "%windir%\system32\dfrgui.exe"</code>
  
-===== Auto Login =====+===== WSL =====
  
-****+  See [[distros:ubuntu_wsl|Ubuntu WSL]]
  
-  control userpasswords2+===== Windows Terminal =====
  
-===== Add Hardware Wizard =====+==== VCLibs ====
  
 **** ****
  
-  %SYSTEMROOT%\System32\hdwwiz.exe+  powershell -Command "Add-AppxPackage https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx"
  
-===== GodMode Folder =====+==== Windows Terminal ====
  
-****+  https://github.com/microsoft/terminal/releases
  
-  GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}+  powershell -Command "Add-AppxPackage https://github.com/microsoft/terminal/releases/download/v1.16.10261.0/Microsoft.WindowsTerminal_Win10_1.16.10261.0_8wekyb3d8bbwe.msixbundle"
  
-====== Settings ======+==== SSH ====
  
-===== Lock screen Background =====+  * :!: Requires WSL and Ubuntu installed
  
-  * Hero+  wt wsl --distribution "Ubuntu" -- ssh "espionage724@192.168.1.152"
  
-  C:\Windows\Web\Wallpaper\Windows\img0.jpg+====== Information ======
  
-===== Verbose Shutdown =====+===== Prevent Driver Changes =====
  
-****+==== Notes ====
  
-  reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f+  * 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)
  
-===== Remove Power Plans =====+==== Base Policies ====
  
-  * For whatever reason, Windows likes to revert to High Performance (or another program switches it) instead of keeping a custom power plan +  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDs" /"REG_DWORD" /d "1" /f
-  * The solution to this is to simply remove all power plans that aren'the custom one...+
  
-==== Show Plans ====+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDsRetroactive" /t "REG_DWORD" /d "0" /f
  
-****+==== Format ====
  
-  powercfg /list+  * Do **not** copy/paste these as-is; only here for reference 
 +  * Adjust to specific devices as-needed
  
-==== Ultimate Power Plan ====+==== Add Prevent Policy ====
  
-  [[https://www.tenforums.com/tutorials/107613-add-remove-ultimate-performance-power-plan-windows-10-a.html|Windows 10 Help Forums]]+****
  
-  powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61+  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 Plans ====+==== Remove Prevent Policy ====
  
-  Replace ''x'' with the ''GUID'' of the plan listed with the above command+****
  
-  powercfg -delete x+  reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f
  
-  powercfg -delete 381b4222-f694-41f0-9685-ff5bb260df2e+====== Programs ======
  
-====== Hardware Diagnostics ======+  * [[windows:programs|More Programs]]
  
-===== CPU-=====+===== 7-Zip =====
  
-  * https://www.cpuid.com/softwares/cpu-z.html +  * https://www.7-zip.org/download.html
- +
-===== FurMark ===== +
- +
-  * https://geeks3d.com/furmark/downloads/ +
- +
-===== GPU-Z ===== +
- +
-  * https://www.techpowerup.com/download/techpowerup-gpu-z/ +
- +
-===== HWMonitor ===== +
- +
-  * https://www.cpuid.com/softwares/hwmonitor.html +
- +
-===== Intel PDT ===== +
- +
-  * https://downloadcenter.intel.com/download/19792 +
-  * Intel Processor Diagnostic Tool +
- +
-===== prime95 ===== +
- +
-  * https://www.mersenne.org/download/ +
- +
-====== Programs ====== +
- +
-===== 7-Zip-zstd ===== +
- +
-  * https://github.com/mcmilk/7-Zip-zstd/+
  
 ===== 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|Latest 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+  * :!: [[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))
  
   SETX /M path "%path%;C:\Program Files\platform-tools"   SETX /M path "%path%;C:\Program Files\platform-tools"
Line 364: Line 310:
   SETX /M path "%path%;C:\Program Files\aria2c"   SETX /M path "%path%;C:\Program Files\aria2c"
  
-===== BleachBit =====+===== Brain Workshop =====
  
-  * https://www.bleachbit.org/download/windows+  * https://sourceforge.net/projects/brainworkshop/files/brainworkshop/
  
 ===== Calculator ===== ===== Calculator =====
Line 374: Line 320:
   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
Line 383: Line 329:
  
 ===== Firefox ===== ===== Firefox =====
- 
-==== Download ==== 
  
   * [[https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US|exe]]   * [[https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US|exe]]
-  * [[https://download.mozilla.org/?product=firefox-msi-latest-ssl&os=win64&lang=en-US|MSI]] 
- 
-==== Settings ==== 
- 
-=== 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/04/19 
- 
-  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("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); 
- 
-/******* 
- * 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://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 =====
Line 576: Line 342:
 ===== Keybase ===== ===== Keybase =====
  
-  * https://prerelease.keybase.io/keybase_setup_amd64.msi +  * https://keybase.io/docs/the_app/install_windows
- +
-===== 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 =====
  
   * https://www.libreoffice.org/download/download/   * https://www.libreoffice.org/download/download/
- 
-===== MarkC Mouse Acceleration Fix ===== 
- 
-  * https://donewmouseaccel.blogspot.com/2010/03/markc-windows-7-mouse-acceleration-fix.html 
  
 ===== mpv ===== ===== mpv =====
  
-  * https://sourceforge.net/projects/mpv-player-windows/files/64bit/+  * https://sourceforge.net/projects/mpv-player-windows/files/64bit-v3/
   * https://mpv.io/   * https://mpv.io/
 +
 +===== MuPDF =====
 +
 +  * https://mupdf.com/releases/index.html
  
 ===== Notepad++ ===== ===== Notepad++ =====
Line 603: Line 364:
  
   * https://obsproject.com/download   * https://obsproject.com/download
- 
-===== Oculus ===== 
- 
-  * https://www.oculus.com/rift/setup/?locale=en_US 
- 
-==== Backup/Restore ==== 
- 
-  * Let Oculus download its 5.15GB installer 
-  * 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 ==== 
- 
-  * https://developer.oculus.com/documentation/native/pc/dg-compositor-mirror/?locale=en_US 
- 
-<code>--Size 1280 1280 --FovTanAngleMultiplier 1.3 1.3 --DisableTimewarp --SymmetricFov --RightEyeOnly --DisableFovStencil --IncludeSystemGui --IncludeNotifications</code> 
- 
-===== Rufus ===== 
- 
-  * https://rufus.ie/ 
  
 ===== Thunderbird ===== ===== Thunderbird =====
Line 629: Line 369:
   * https://www.thunderbird.net/en-US/thunderbird/all/#E   * https://www.thunderbird.net/en-US/thunderbird/all/#E
  
-  * :!: There is a 64-bit version of Thunderbird for Windows+===== qBittorrent =====
  
-===== Transmission =====+  * https://www.qbittorrent.org/download
  
-  * https://transmissionbt.com/download/ +===== VC++ Redist =====
- +
-  http://john.bitsurge.net/public/biglist.p2p.gz +
- +
-===== Visual C++ Redistributable Runtimes =====+
  
   * https://github.com/abbodi1406/vcredist/releases   * https://github.com/abbodi1406/vcredist/releases
-  * https://forums.mydigitallife.net/threads/repack-visual-c-redistributable-runtimes.76588/ 
- 
-===== Vulkan Runtime ===== 
- 
-  * https://vulkan.lunarg.com/sdk/home#windows 
-  * 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 662: Line 381:
 ===== 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
- +
-===== 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]]
  
-==== Beat Saber ====+====== Drivers ======
  
-**** +  See [[windows:drivers]] for more URLs
- +
-<code>-vrmode oculus</code> +
- +
-==== Blade & Sorcery ==== +
- +
-**** +
- +
-<code>-vrmode Oculus</code> +
- +
-===== Diablo II ===== +
- +
-==== Glide Wrapper ==== +
- +
-  * http://www.svenswrapper.de/english/downloads.html +
- +
-===== Guild Wars 2 ===== +
- +
-  * https://account.arena.net/content/download/gw2/win/64 +
- +
-  "C:\Program Files\Guild Wars 2\Gw2-64.exe" -autologin +
- +
-  "C:\Program Files\Guild Wars 2\Gw2-64.exe" -image +
- +
-  "C:\Program Files\Guild Wars 2\Gw2-64.exe" -repair +
- +
-====== Drivers ======+
  
 ===== Spinesnap ===== ===== Spinesnap =====
  
-  * [[https://www.acer.com/ac/en/US/content/support-product/7603|Acer Predator PH315-51]]+  * [[https://www.dell.com/support/home/en-us/product-support/product/latitude-15-5591-laptop/drivers|Dell Support and BIOS Updates]]
  
-==== Wireless ====+==== Chipset ====
  
-  * Intel Corporation Wireless-AC 9560 [Jefferson Peak] (rev 10+  * TODO: Chipset name 
-  * Intel(RWireless-AC 9560 160MHz+  * [[https://rog.asus.com/forum/showthread.php?117609-DRIVERS-Intel-Chipset-MEI-SATA-VMD-(1xx-2xx-3xx-4xx-5xx-6xx-7xx)|ASUS ROG Forums]] (AHCI 2xx/3xx
 +  * [[https://www.elevenforum.com/t/drivers-intel-chipset-mei-sata-vmd-1xx-2xx-3xx-4xx-5xx-6xx-7xx.11373/|Windows 11 Forum]] (AHCI 2xx/3xx)
  
-  * [[https://downloadcenter.intel.com/product/59485/Wireless-Networking|Intel Official]] +==== SerialIO ====
-  * [[https://www.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=110&lang=en|Station-Drivers]]+
  
-==== Bluetooth ==== +  * TODO: Chipset name 
- +  * [[https://www.elevenforum.com/t/drivers-intel-serial-io-3xx-4xx-5xx-6xx-7xx.11375/|Windows 11 Forum]] (3xx/4xx) 
-  * [[https://downloadcenter.intel.com/product/59485/Wireless-Networking|Intel Official]] +  * [[https://rog.asus.com/forum/showthread.php?125235-DRIVERS-Intel-Serial-IO-(3xx-4xx-5xx-6xx-7xx)|ASUS ROG Forums]] (3xx/4xx)
-  * [[https://www.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=109&lang=en|Station-Drivers]]+
  
 ==== Ethernet ==== ==== Ethernet ====
  
-  * Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 12) +  * I219-LM Gigabit 
-  * Realtek PCIe GbE Family Controller +  * [[https://www.elevenforum.com/t/drivers-intel-ethernet-wifi-bluetooth.11383/|Windows 11 Forum]] (I217/I218/I219
- +  * [[https://rog.asus.com/forum/showthread.php?118280-DRIVERS-Intel-Ethernet-WiFi-Bluetooth|ASUS ROG Forums]] (I217/I218/I219)
-  * [[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 +
- +
-==== Chipset ==== +
- +
-  * Intel Corporation Cannon Lake PCH +
- +
-  * [[https://downloadcenter.intel.com/download/28531|Intel Official]] +
-  * [[https://www.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=406&orderby=4&lang=en|Station-Drivers]] +
- +
-==== Serial IO ==== +
- +
-  * Intel Corporation Cannon Lake PCH Serial IO I2C Controller #0 (rev 10) +
-  * Intel(R) Serial IO I2C Host Controller - A368 +
- +
-  * Intel Corporation Cannon Lake PCH Serial IO I2C Controller #1 (rev 10) +
-  * Intel(R) Serial IO I2C Host Controller - A369 +
- +
-  * Intel Corporation Cannon Lake PCH Serial IO UART Host Controller (rev 10) +
-  * 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]] +
- +
-=== Notes === +
- +
-  * 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 ==== +
- +
-  * Corsair Gaming HARPOON RGB Mouse +
- +
-  * [[https://www.corsair.com/us/en/downloads|CORSAIR Official]] +
- +
-==== I2C Touchpad ==== +
- +
-  * ELAN0504:01 04F3:3091 Touchpad +
-  * ELAN I2C Filter Driver +
- +
-  * [[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]] +
- +
-=== Notes === +
- +
-  * The I2C driver doesn't exist on Station-Drivers +
- +
-===== Piety ===== +
- +
-  * 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 +
- +
-===== Hatebeat/Nightwane ===== +
- +
-==== AMD Radeon HD 6800 Series ====+
  
-  * https://support.amd.com/en-us/download/desktop/legacy?product=legacy3&os=Windows+10+-+64+==== Wireless Bluetooth ====
  
-  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"+  * wireless-AC 9560 
 +  * [[https://rog.asus.com/forum/showthread.php?118280-DRIVERS-Intel-Ethernet-WiFi-Bluetooth|ASUS ROG Forums]] (8xxx/9xxx/AXxxx) 
 +  * [[https://www.elevenforum.com/t/drivers-intel-ethernet-wifi-bluetooth.11383/|Windows 11 Forum]] (8xxx/9xxx/AXxxx)
  
-==== AMD Chipset ====+==== Graphics ====
  
-  * https://support.amd.com/en-us/download/chipset?os=Windows+10+-+64+  * Intel 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]] 
 +  * [[https://forums.laptopvideo2go.com/forum/174-intel-video-drivers-and-tools/|LaptopVideo2Go]]
  
-  aria2c "https://www2.ati.com/drivers/amd-chipset-drivers.exe" --referer="https://www2.ati.com" 
/var/www/wiki/data/pages/windows/10.txt · Last modified: 2024/03/25 19:42 by Sean Rhone