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 [2019/07/23 21:49] Sean Rhonewindows:10 [2024/03/25 19:42] (current) 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 ====== +
- +
-  * 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)) +
-  * :!: 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 ====== ====== Download ======
  
-  * https://forums.mydigitallife.info/threads/72600-ISO-for-latest-enUS-LTSB+  * :!: To show ISO downloads on Windows 10 from Firefox: Tools -> Browser Tools -> Responsive Design Mode  
 + 
 +  * [[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]]
  
 ====== 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 ====+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f
  
-  * :!: SSU is recommended to be installed **before** the CU+===== Disable Cortana and Web Search =====
  
-==== Link ====+****
  
-  * [[http://www.catalog.update.microsoft.com/Search.aspx?q=Cumulative+Update+for+Windows+10+Version+1809+for+x64-based+Systems|Microsoft Update Catalog]]+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f
  
-  YYYY-MM Cumulative Update for Windows 10 Version 1809 for x64-based Systems (KB#######)+===== Disable CPU Mitigations =====
  
-====== Prevent Driver Changes ======+  * https://support.microsoft.com/en-us/help/4073119/protect-against-speculative-execution-side-channel-vulnerabilities-in 
 +  * https://www.grc.com/inspectre.htm
  
-===== Notes =====+  reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "FeatureSettingsOverride" /t "REG_DWORD" /d "3" /f
  
-  * To be done after a proper driver is manually installed +  reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "FeatureSettingsOverrideMask" /t "REG_DWORD" /d "3" /f
-  * 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 =====+===== Disable Game DVR =====
  
-  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+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f
  
-===== Format =====+===== Disable Hibernation and Fast Start =====
  
-  Do **not** copy/paste these as-is; only here for reference +****
-  * Adjust to specific devices as-needed+
  
-==== Add Prevent Policy ====+  powercfg /H off 
 + 
 +===== Disable Last Access Time File Updates =====
  
 **** ****
  
-  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+  fsutil behavior set disablelastaccess 1
  
-==== Remove Prevent Policy ====+===== Disable Online Speech Recognition =====
  
 **** ****
  
-  reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f+  reg add "HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization" /v "AllowInputPersonalization" /t REG_DWORD /d "0" /f
  
-====== Tweaks ======+===== Open Pictures With Windows Photo Viewer =====
  
-===== Disable Cortana and Web Search =====+  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\Policies\Microsoft\Windows\Windows Search" /"AllowCortana/t REG_DWORD /d "0" /f+  reg add "HKCU\Software\Classes\.gif" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f
  
-===== Disable Game DVR =====+  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 "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f+  reg add "HKCU\Software\Classes\.tiff" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f
  
-===== Disable Hibernation and Fast Start =====+  reg add "HKCU\Software\Classes\.ico" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
 + 
 +===== Disable Remote Desktop =====
  
 **** ****
  
-  powercfg /H off+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fDenyTSConnections" /t REG_DWORD /d "1" /f
  
-===== Disable Last Access Time File Updates =====+===== Disable Shared Experiences =====
  
 **** ****
  
-  fsutil behavior set disablelastaccess 1+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableCdp" /t REG_DWORD /d "0" /f
  
 ===== Disable SmartScreen ===== ===== Disable SmartScreen =====
Line 140: Line 141:
  
   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 ===== 
- 
-  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 
- 
-===== Remove Most Modern UI Apps ===== 
- 
-  * Powershell 
- 
-  Get-AppxPackage -allusers | Remove-AppxPackage 
  
 ===== Remove Quick Access ===== ===== Remove Quick Access =====
Line 181: Line 160:
   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
  
-===== NetFX3 From Install Media ===== +===== Verbose Shutdown =====
- +
-  * Change ''D:\'' to install media drive if necessary +
- +
-  Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess +
- +
-===== Maintenance ===== +
- +
-  * TODO: Add BleachBit +
- +
-  "%windir%\system32\Dism.exe" /online /Cleanup-Image /StartComponentCleanup /ResetBase /RestoreHealth +
- +
-  "%windir%\system32\sfc.exe" /scannow +
- +
-  "%windir%\system32\cleanmgr.exe" /sageset:65535 +
- +
-  "%windir%\system32\cleanmgr.exe" /sagerun:65535 +
- +
-  "%windir%\system32\dfrgui.exe" +
- +
-===== Auto Login =====+
  
 **** ****
  
-  control userpasswords2+  reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f
  
-===== Add Hardware Wizard =====+====== Other ======
  
-****+===== ScriptTiger Hosts File =====
  
-  %SYSTEMROOT%\System32\hdwwiz.exe+  * https://scripttiger.github.io/hosts-packages/ 
 +  * Unified hosts + fakenews + gambling (Compressed)
  
-===== GodMode Folder =====+  * Powershell Script ''*.ps1'' 
 +  * TODO: Add admin-mode
  
-****+<code> 
 +[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>
  
-  GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}+===== NetFX3 From Install Media =====
  
-====== Settings ======+  * Change ''D:\'' to install media drive if necessary
  
-===== Lock screen Background =====+  Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess
  
-  * Hero+===== Remove Most Modern UI Apps =====
  
-  C:\Windows\Web\Wallpaper\Windows\img0.jpg+  * Tested fine on 20H2 
 +  * :!: This broke the start menu on 1809
  
-====== Hardware Diagnostiscs ======+  * Powershell Script ''*.ps1''
  
-===== CPU-Z =====+  Get-AppxPackage -allusers | Remove-AppxPackage
  
-  * https://www.cpuid.com/softwares/cpu-z.html+===== Remove OneDrive =====
  
-===== FurMark =====+  taskkill /IM "OneDrive.exe" /F
  
-  * https://geeks3d.com/furmark/downloads/+  %windir%\SysWOW64\OneDriveSetup.exe /uninstall
  
-===== GPU-Z =====+  rmdir "%UserProfile%\OneDrive" "%ProgramData%\Microsoft OneDrive" "%LocalAppData%\Microsoft\OneDrive" "C:\OneDriveTemp" /S /Q
  
-  * https://www.techpowerup.com/download/techpowerup-gpu-z/+  reg delete "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
  
-===== HWMonitor =====+  reg delete "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
  
-  * https://www.cpuid.com/softwares/hwmonitor.html+===== Maintenance =====
  
-===== Intel PDT =====+  * Last updated: 2020/10/02
  
-  * https://downloadcenter.intel.com/download/19792 +<code> 
-  * Intel Processor Diagnostic Tool+:: .NET Framework 4 
 +"%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
  
-===== prime95 =====+:: System File Check, Cleanup, and Repair 
 +"%windir%\system32\Dism.exe" /online /Cleanup-Image /StartComponentCleanup /ResetBase /RestoreHealth 
 +"%windir%\system32\sfc.exe" /scannow
  
-  * https://www.mersenne.org/download/+:: Classic Disk Cleanup 
 +"%windir%\system32\cleanmgr.exe" /sageset:65535 
 +"%windir%\system32\cleanmgr.exe" /sagerun:65535
  
-====== Programs ======+:: Defrag/Trim 
 +"%windir%\system32\dfrgui.exe"</code>
  
-===== 7-Zip =====+===== WSL =====
  
-  * http://www.7-zip.org/download.html+  * See [[distros:ubuntu_wsl|Ubuntu WSL]]
  
-===== Android Tools =====+===== Windows Terminal =====
  
-  * https://dl-ssl.google.com/android/repository/latest_usb_driver_windows.zip+==== VCLibs ====
  
-  https://dl-ssl.google.com/android/repository/platform-tools-latest-windows.zip+****
  
-  SETX /M path "%path%;C:\Program Files\platform-tools"+  powershell -Command "Add-AppxPackage https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx"
  
-===== aria2 =====+==== Windows Terminal ====
  
-  * https://github.com/aria2/aria2/releases+  * https://github.com/microsoft/terminal/releases
  
-  SETX /M path "%path%;C:\Program Files\aria2c"+  powershell -Command "Add-AppxPackage https://github.com/microsoft/terminal/releases/download/v1.16.10261.0/Microsoft.WindowsTerminal_Win10_1.16.10261.0_8wekyb3d8bbwe.msixbundle"
  
-===== BleachBit =====+==== SSH ====
  
-  * https://www.bleachbit.org/download/windows+  * :!: Requires WSL and Ubuntu installed
  
-===== Calculator =====+  wt wsl --distribution "Ubuntu" -- ssh "espionage724@192.168.1.152"
  
-  * Only available on LTSB/LTSC+====== Information ======
  
-  win32calc+===== Prevent Driver Changes =====
  
-===== DirectX End-User Runtimes =====+==== Notes ====
  
-  * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109+  * 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)
  
-===== Etcher =====+==== Base Policies ====
  
-  * https://www.balena.io/etcher/+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDs" /t "REG_DWORD" /d "1" /f
  
-===== FileZilla =====+  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions" /v "DenyDeviceIDsRetroactive" /t "REG_DWORD" /d "0" /f
  
-  * https://filezilla-project.org/download.php?show_all=1+==== Format ====
  
-===== Firefox =====+  * Do **not** copy/paste these as-is; only here for reference 
 +  * Adjust to specific devices as-needed
  
-==== Download ====+==== Add Prevent Policy ====
  
-  https://download.mozilla.org/?product=firefox-latest&os=win64&lang=en-US +****
-  https://ftp.mozilla.org/pub/firefox/nightly/latest-mozilla-central/+
  
-==== Settings ====+  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
  
-=== Default Profile ===+==== Remove Prevent Policy ====
  
-  rd "%appdata%\Mozilla" /s /q+****
  
-  md "%appdata%\Mozilla\Firefox\Profiles\espionage724"+  reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#/f
  
-== profiles.ini ==+====== Programs ======
  
-  notepad "%appdata%\Mozilla\Firefox\profiles.ini"+  * [[windows:programs|More Programs]]
  
-<code> +===== 7-Zip =====
-[General] +
-StartWithLastProfile=1+
  
-[Profile0] +  * https://www.7-zip.org/download.html
-Name=default +
-IsRelative=1 +
-Path=Profiles/espionage724 +
-Default=1</code>+
  
-=== user.js ===+===== Android Tools =====
  
-  * Last updated2018/11/24+  * [[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.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))
  
-  notepad "%appdata%\Mozilla\Firefox\Profiles\espionage724\user.js"+  SETX /M path "%path%;C:\Program Files\platform-tools"
  
-<code> +===== aria2 =====
-/****************************************************************************** +
- * SECTION: Custom Stuff -> General                                           * +
- ******************************************************************************/+
  
-user_pref("extensions.screenshots.disabled", true); +  * https://github.com/aria2/aria2/releases
-user_pref("reader.parse-on-load.enabled", false);+
  
-user_pref("media.mediasource.experimental.enabled", true); +  SETX /M path "%path%;C:\Program Files\aria2c"
-user_pref("media.mediasource.ignore_codecs", true); +
-user_pref("media.autoplay.enabled", false);+
  
-user_pref("webgl.disabled", true); +===== Brain Workshop =====
-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);+
  
-/****************************************************************************** +  * https://sourceforge.net/projects/brainworkshop/files/brainworkshop/
- * END                                                                        * +
- ******************************************************************************/</code>+
  
-==== Remove Features ====+===== Calculator =====
  
-****+  Only available on LTSB/LTSC
  
-  rd "%ProgramFiles%\Mozilla Firefox\browser\features" /s /q+  win32calc
  
-==== Extensions ====+===== DirectX End-User Runtime =====
  
-  * 8 Extensions+  * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109
  
-  * https://www.startpage.com/ +===== FileZilla =====
-  * https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/versions +
-  * https://www.eff.org/https-everywhere +
-  * https://www.eff.org/privacybadger +
-  * https://addons.mozilla.org/en-US/firefox/addon/cookie-autodelete/versions +
-  * https://addons.mozilla.org/en-US/firefox/addon/no-resource-uri-leak/versions +
-  * https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/versions +
-  * https://addons.mozilla.org/en-US/firefox/addon/canvasblocker/versions+
  
-=== Cookie AutoDelete ===+  * https://filezilla-project.org/download.php?show_all=1
  
-  * [x] Enable Automatic Cleaning? Delay Before Cleaning +===== Firefox =====
-  * [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 === +  * [[https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US|exe]]
- +
-== 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/+
  
 ===== 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 437: Line 342:
 ===== Keybase ===== ===== Keybase =====
  
-  * https://prerelease.keybase.io/keybase_setup_amd64.msi +  * https://keybase.io/docs/the_app/install_windows
- +
-===== KMS-VL-ALL ===== +
- +
-  * https://forums.mydigitallife.net/threads/kms_vl_all-smart-activation-script.79535/+
  
 ===== LibreOffice ===== ===== LibreOffice =====
Line 447: Line 348:
   * https://www.libreoffice.org/download/download/   * https://www.libreoffice.org/download/download/
  
-===== MarkC Mouse Acceleration Fix =====+===== mpv =====
  
-  * https://donewmouseaccel.blogspot.com/2010/03/markc-windows-7-mouse-acceleration-fix.html+  * https://sourceforge.net/projects/mpv-player-windows/files/64bit-v3/ 
 +  * https://mpv.io/ 
 + 
 +===== MuPDF ===== 
 + 
 +  * https://mupdf.com/releases/index.html
  
 ===== Notepad++ ===== ===== Notepad++ =====
Line 455: Line 361:
   * https://notepad-plus-plus.org/download   * https://notepad-plus-plus.org/download
  
-===== qBittorrent =====+===== OBS =====
  
-  * https://www.fosshub.com/qBittorrent.html+  * https://obsproject.com/download
  
 ===== Thunderbird ===== ===== Thunderbird =====
  
-  * https://download.mozilla.org/?product=thunderbird-latest&os=win&lang=en-US +  * https://www.thunderbird.net/en-US/thunderbird/all/#E
-  * https://releases.mozilla.org/pub/thunderbird/nightly/latest-comm-central/+
  
-===== Visual C++ Redistributable Runtimes =====+===== Transmission =====
  
-  * https://forums.mydigitallife.net/threads/repack-visual-c-redistributable-runtimes.76588/ +  * https://transmissionbt.com/download.html
-  * https://github.com/abbodi1406/vcredist+
  
-===== VLC =====+===== VC++ Redist =====
  
-  * https://get.videolan.org/vlc/last/win64/ +  * https://github.com/abbodi1406/vcredist/releases
- +
-===== VPN.AC ===== +
- +
-  * https://vpn.ac/download/vpn.ac-setup.exe+
  
 ====== Games ====== ====== Games ======
Line 481: Line 381:
 ===== Battle.net App ===== ===== Battle.net App =====
  
-  * https://us.battle.net/download/getInstaller?os=win&installer=Battle.net-Setup.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]]
-===== 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 ====== ====== Drivers ======
  
-===== Nightwane ===== +  See [[windows:drivers]] for more URLs
- +
-  * [[https://www.acer.com/ac/en/US/content/model/DT.B89AA.008|Product Page]] +
-  * [[https://www.acer.com/ac/en/US/content/support-product/6817?b=1&pn=DT.B89AA.008|Drivers]] +
- +
-  * Acer Aspire TC-780 +
- +
-==== 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 +
- +
-==== AMD Radeon RX 580 ==== +
- +
-  * https://www.amd.com/en/support/graphics/radeon-500-series/radeon-rx-500-series/radeon-rx-580 +
-  * https://forums.guru3d.com/forums/videocards-amd-radeon-catalyst-drivers-section.46/ +
- +
-==== CORSAIR iCUE ==== +
- +
-  * https://www.corsair.com/us/en/downloads +
- +
-===== 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 +
- +
-==== 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 +===== Spinesnap =====
-  * https://downloadcenter.intel.com/download/28255+
  
-  * Intel RST+  * [[https://www.dell.com/support/home/en-us/product-support/product/latitude-15-5591-laptop/drivers|Dell Support and BIOS Updates]]
  
-==== Intel Wireless ====+==== Chipset ====
  
-  * https://downloadcenter.intel.com/download/28276+  * TODO: Chipset name 
 +  * [[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)
  
-==== Intel Bluetooth ====+==== SerialIO ====
  
-  * https://downloadcenter.intel.com/download/28009+  * TODO: Chipset name 
 +  * [[https://www.elevenforum.com/t/drivers-intel-serial-io-3xx-4xx-5xx-6xx-7xx.11375/|Windows 11 Forum]] (3xx/4xx) 
 +  * [[https://rog.asus.com/forum/showthread.php?125235-DRIVERS-Intel-Serial-IO-(3xx-4xx-5xx-6xx-7xx)|ASUS ROG Forums]] (3xx/4xx)
  
-===== Hatebeat =====+==== Ethernet ====
  
-==== AMD Radeon HD 6800 Series ====+  * I219-LM Gigabit 
 +  * [[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://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/attic/windows/10.1563932984.txt.gz · Last modified: 2019/07/23 21:49 by Sean Rhone