User Tools

Site Tools


windows:11

Differences

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

Link to this comparison view

Next revisionBoth sides next revision
windows:11 [2021/11/07 19:45] – created Sean Rhonewindows:11 [2021/12/11 21:08] – removed Sean Rhone
Line 1: Line 1:
-====== Information ====== 
- 
-  * Microsoft Windows 11 
-  * 22000 
- 
-  * :!: A lot of this is TODO 
- 
-====== Notes ====== 
- 
-  * :!: 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/windows11 
- 
-====== Updates ====== 
- 
-===== Slipstream ===== 
- 
-  * See [[windows:slipstream-updates]] 
- 
-===== Information ===== 
- 
-  * 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 
-  * :!: SSU is to be installed **before** the CU 
- 
-==== Link ==== 
- 
-  * [[https://www.catalog.update.microsoft.com/Search.aspx?q=Update%20for%20Windows%2011%20for%20x64-based%20Systems|22000]] 
- 
-  YYYY-MM Update for Windows 11 for x64-based Systems (KB#######) 
- 
-====== Settings ====== 
- 
-===== Disable Clipboard History ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f 
- 
-===== Disable Cortana and Web Search ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f 
- 
-===== Disable CPU Mitigations ===== 
- 
-  * 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 "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v "FeatureSettingsOverrideMask" /t "REG_DWORD" /d "3" /f 
- 
-===== Disable Game DVR ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f 
- 
-===== Disable Hibernation and Fast Start ===== 
- 
-**** 
- 
-  powercfg /H off 
- 
-===== Disable Last Access Time File Updates ===== 
- 
-**** 
- 
-  fsutil behavior set disablelastaccess 1 
- 
-===== Disable Online Speech Recognition ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization" /v "AllowInputPersonalization" /t REG_DWORD /d "0" /f 
- 
-===== Open Pictures With Windows Photo Viewer ===== 
- 
-  reg add "HKCU\Software\Classes\.jpg" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.jpeg" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.gif" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.png" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.bmp" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.tiff" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-  reg add "HKCU\Software\Classes\.ico" /ve /t "REG_SZ" /d "PhotoViewer.FileAssoc.Tiff" /f 
- 
-===== Disable Remote Desktop ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fDenyTSConnections" /t REG_DWORD /d "1" /f 
- 
-===== Disable Shared Experiences ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableCdp" /t REG_DWORD /d "0" /f 
- 
-===== Disable SmartScreen ===== 
- 
-  * General 
-  * Windows Store Apps 
-  * Microsoft EDGE 
- 
-  reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "SmartScreenEnabled" /t "REG_SZ" /d "Off" /f 
- 
-  reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t "REG_DWORD" /d "0" /f 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter" /v "EnabledV9" /t "REG_DWORD" /d "0" /f 
- 
-===== Disable Startup Delay ===== 
- 
-**** 
- 
-  reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v "StartupDelayInMSec" /t "REG_DWORD" /d "0" /f 
- 
-===== Disable System Restore ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f 
- 
-===== Disable Telemetry Features ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t "REG_DWORD" /d "0" /f 
- 
-===== Disable User Account Control ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t "REG_DWORD" /d "0" /f 
- 
-===== Disable Windows Defender ===== 
- 
-  * :!: TODO: Fix for 11 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t "REG_DWORD" /d "1" /f 
- 
-===== Remove Quick Access ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD" /d "1" /f 
- 
-===== Remove Windows Search ===== 
- 
-**** 
- 
-  Dism /online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove 
- 
-===== Show All Folders in File Explorer Pane ===== 
- 
-**** 
- 
-  reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "NavPaneShowAllFolders" /t "REG_DWORD" /d "1" /f 
- 
-===== Verbose Shutdown ===== 
- 
-**** 
- 
-  reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f 
- 
-====== Other ====== 
- 
-===== ScriptTiger Hosts File ===== 
- 
-  * https://scripttiger.github.io/hosts-packages/ 
-  * Unified hosts + fakenews + gambling (Compressed) 
- 
-  * Powershell Script ''*.ps1'' 
- 
-<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> 
- 
-===== NetFX3 From Install Media ===== 
- 
-  * Change ''D:\'' to install media drive if necessary 
- 
-  Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess 
- 
-===== Remove Most Modern UI Apps ===== 
- 
-  * Powershell Script ''*.ps1'' 
- 
-  Get-AppxPackage -allusers | Remove-AppxPackage 
- 
-===== Remove OneDrive ===== 
- 
-  taskkill /IM "OneDrive.exe" /F 
- 
-  %windir%\SysWOW64\OneDriveSetup.exe /uninstall 
- 
-  rmdir "%UserProfile%\OneDrive" "%ProgramData%\Microsoft OneDrive" "%LocalAppData%\Microsoft\OneDrive" "C:\OneDriveTemp" /S /Q 
- 
-  reg delete "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f 
- 
-  reg delete "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f 
- 
-===== Maintenance ===== 
- 
-  * Last updated: 2020/10/02 
- 
-<code> 
-:: .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 
- 
-:: System File Check, Cleanup, and Repair 
-"%windir%\system32\Dism.exe" /online /Cleanup-Image /StartComponentCleanup /ResetBase /RestoreHealth 
-"%windir%\system32\sfc.exe" /scannow 
- 
-:: Classic Disk Cleanup 
-"%windir%\system32\cleanmgr.exe" /sageset:65535 
-"%windir%\system32\cleanmgr.exe" /sagerun:65535 
- 
-:: Defrag/Trim 
-"%windir%\system32\dfrgui.exe"</code> 
- 
-====== Hardware Utilities ====== 
- 
-===== CPU-Z ===== 
- 
-  * https://www.cpuid.com/softwares/cpu-z.html 
- 
-===== GPU-Z ===== 
- 
-  * https://www.techpowerup.com/download/techpowerup-gpu-z/ 
- 
-===== prime95 ===== 
- 
-  * https://www.mersenne.org/download/ 
- 
-===== HWiNFO ===== 
- 
-  * https://www.hwinfo.com/download/ 
- 
-===== poclmembench ===== 
- 
-  * https://github.com/kruzer/poclmembench 
- 
-===== Driver Store Explorer ===== 
- 
-  * https://github.com/lostindark/DriverStoreExplorer 
- 
-===== AMD Cleanup Utility ===== 
- 
-  * https://www.amd.com/en/support/kb/faq/gpu-601 
- 
-===== AMD Ryzen Master ===== 
- 
-  * https://www.amd.com/en/technologies/ryzen-master 
- 
-===== CrystalDiskInfo ===== 
- 
-  * https://crystalmark.info/en/software/crystaldiskinfo/ 
- 
-===== MSI Kombustor ===== 
- 
-  * https://msikombustor.com/ 
- 
-===== memtestCL ===== 
- 
-  * https://simtk.org/projects/memtest/ 
-  * https://github.com/ihaque/memtestCL 
-  * https://github.com/ihaque/memtestCL/raw/master/binaries/memtestCL.exe 
- 
-===== Fooling Around ===== 
- 
-  * https://alax.info/blog/software 
- 
-===== LatencyMon ===== 
- 
-  * https://resplendence.com/latencymon 
- 
-===== OCCT ===== 
- 
-  * https://www.ocbase.com/ 
- 
-===== InSpectre ===== 
- 
-  * https://www.grc.com/inspectre.htm 
- 
-===== FurMark ===== 
- 
-  * https://geeks3d.com/furmark/downloads/ 
- 
-===== Intel PDT ===== 
- 
-  * https://downloadcenter.intel.com/download/19792 
-  * Intel Processor Diagnostic Tool 
- 
-====== Programs ====== 
- 
-===== 7-Zip-zstd ===== 
- 
-  * https://github.com/mcmilk/7-Zip-zstd/ 
-  * :!: Anything compressed with this needs to be extracted with this 
- 
-===== Android Tools ===== 
- 
-  * https://dl-ssl.google.com/android/repository/latest_usb_driver_windows.zip 
- 
-  * https://dl-ssl.google.com/android/repository/platform-tools-latest-windows.zip 
- 
-  SETX /M path "%path%;C:\Program Files\platform-tools" 
- 
-===== aria2 ===== 
- 
-  * https://github.com/aria2/aria2/releases 
- 
-  SETX /M path "%path%;C:\Program Files\aria2c" 
- 
-===== BleachBit ===== 
- 
-  * https://www.bleachbit.org/download/windows 
- 
-===== DirectX End-User Runtime ===== 
- 
-  * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109 
- 
-===== DXVK ===== 
- 
-  * https://github.com/doitsujin/dxvk/releases 
-  * https://github.com/Sporif/dxvk-async/releases 
- 
-  * See [[notes:dll_overrides]] 
- 
-===== FileZilla ===== 
- 
-  * https://filezilla-project.org/download.php?show_all=1 
- 
-===== Firefox ===== 
- 
-==== Download ==== 
- 
-  * [[https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US|exe]] 
- 
-==== 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/11/05 
- 
-  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("accessibility.force_disabled", 1); 
-user_pref("mousewheel.min_line_scroll_amount", 40); 
- 
-/*********** 
- * Privacy * 
- ***********/ 
- 
-user_pref("geo.enabled", 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.trackingprotection.enabled", true); 
-user_pref("toolkit.telemetry.enabled", false); 
- 
-/******* 
- * U2F * 
- *******/ 
- 
-user_pref("security.webauth.u2f", 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 
-  * Privacy Possum 
-  * Cookie AutoDelete 
-  * uBlock Origin 
- 
-  * https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/versions 
-  * 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 === 
- 
-  * Clean-up everything 
-  * Disable notifications 
- 
-=== 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/23 
-  * Last verified: 2020/11/05 
- 
-<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://librespeed.org/ 
-  * https://www.cloudflare.com/ssl/encrypted-sni/ 
-  * https://1.1.1.1/help 
- 
-===== GIMP ===== 
- 
-  * 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 ===== 
- 
-  * 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 ===== 
- 
-  * https://www.libreoffice.org/download/download/ 
- 
-===== mpv ===== 
- 
-  * https://sourceforge.net/projects/mpv-player-windows/files/64bit/ 
-  * https://mpv.io/ 
- 
-===== Notepad++ ===== 
- 
-  * https://notepad-plus-plus.org/download 
- 
-===== OBS ===== 
- 
-  * https://obsproject.com/download 
-  * https://github.com/wtsnz/obs-ios-camera-source/releases 
- 
-===== qBittorrent ===== 
- 
-  * https://www.qbittorrent.org/download.php 
- 
-===== Rufus ===== 
- 
-  * https://rufus.ie/ 
- 
-===== Thunderbird ===== 
- 
-  * https://www.thunderbird.net/en-US/thunderbird/all/#E 
- 
-===== Visual C++ Redistributable Runtimes ===== 
- 
-  * 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 ====== 
- 
-===== Battle.net App ===== 
- 
-  * https://www.blizzard.com/en-us/download?product=bnetdesk 
-  * http://dist.blizzard.com/downloads/bna-installers/322d5bb9ae0318de3d4cde7641c96425/retail.1/Battle.net-Setup-enUS.exe 
- 
-===== Oculus ===== 
- 
-  * https://www.oculus.com/rift/setup/?locale=en_US 
- 
-==== Use HEVC ==== 
- 
-  * Use HEVC/H.265 instead of AVC/H.264 for Link 
-  * :!: As of 2021/06/30, HEVC doesn't work for a RX 580, but it falls back to AVC; presumably this will be fixed at some point 
- 
-<code>reg add "HKEY_CURRENT_USER\SOFTWARE\Oculus\RemoteHeadset" /v "HEVC" /t REG_DWORD /d "1" /f</code> 
- 
-==== Disable SPUD ==== 
- 
-  * This lowers average Motion-to-photon latency by about 4ms for a Rift CV1 (19ms to 15ms) 
-  * [[https://forums.oculusvr.com/community/discussion/93160/disabling-spud-lowers-motion-to-photon-latency|Oculus Forums Thread]] 
- 
-<code>reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Oculus" /v "UseSpud" /t REG_DWORD /d "0" /f</code> 
- 
-==== Logs ==== 
- 
-**** 
- 
-<code>%localappdata%\Oculus</code> 
- 
-==== SideQuest ==== 
- 
-  * https://sidequestvr.com/setup-howto 
- 
-==== ADB ==== 
- 
-  * :!: ADB drivers are automatically installed by Oculus 
-  * :!: For general ''.apk'' installs and ''adb shell'' commands, use SideQuest instead 
-  * :!: For sideloading firmware updates, SideQuest cannot be used, and thus will need the ''platform-tools'' package below 
- 
-  * [[https://developer.oculus.com/downloads/package/oculus-adb-drivers/|Oculus ADB Drivers]] 
-  * [[https://dl.google.com/android/repository/platform-tools-latest-windows.zip|Android SDK Platform-Tools]] 
- 
-==== Backup/Restore ==== 
- 
-=== Installer === 
- 
-  * Let Oculus download its 5GB+ installer 
-  * While it is installing, backup the ''C:\OculusSetup-DownloadCache'' folder 
-  * :!: The backup must be done after the download, and while Oculus is installing 
-  * If restoring, transfer 5GB+ to ''C:\OculusSetup-DownloadCache'' and start the Oculus installer 
-  * :!: If an updated Oculus client is available, it will download instead of restoring 
- 
-=== Client === 
- 
-  * Go to the ''Oculus\Support'' folder 
-  * If there's 15 folders, backup everything except ''oculus-dreamdeck-nux'', ''oculus-touch-tutorial'', and ''oculus-worlds'' 
-  * :!: 12 folders should be included in the backup and it should be around 605MB if archived 
-  * This has been true with versions pre-V12, V18-V30 
-  * For restoring, stop the Oculus service through command or Debug Tool, delete the existing 12 folders, restore the 12 folders from backup, and start the Oculus service 
- 
-<code>%OculusBase%\Support</code> 
- 
-== Prevent Client Updates == 
- 
-  * This sets the update channel to something unknown, so the Oculus client can't compare its version to check for updates 
-  * :!: To revert this, it may be enough to toggle the ''Public Test Channel'' option from Oculus 
- 
-  * ''LIVE'' Stable 
-  * ''PublicTest'' = Public Test Channel/PTC 
-  * ''NOUPD8'' = Some nonsense value 
- 
-  reg add "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Oculus VR, LLC\Oculus\Config" /v "CoreChannel" /t "REG_SZ" /d "NOUPD8" /f 
- 
-===== Origin ===== 
- 
-  * [[https://answers.ea.com/t5/Origin-Client-Web-Technical/Download-Latest-Standalone-Setup-For-Origin-Here/td-p/4120003|Answers HQ]] 
- 
-  * https://download.dm.origin.com/origin/live/OriginSetup.exe 
- 
-===== Steam ===== 
- 
-  * https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe 
-  * See [[notes:game_command-line_arguments|Command-line flags]] 
- 
-====== Drivers ====== 
- 
-  * See [[windows:drivers]] for more URLs 
- 
-===== Nightwane ===== 
- 
-==== Motherboard ==== 
- 
-  * [[devices:asus_prime_x470-pro|ASUS PRIME X470-PRO Notes]] 
-  * [[https://www.asus.com/us/motherboards-components/motherboards/prime/prime-x470-pro/HelpDesk_BIOS/|BIOS Updates]] 
- 
-==== Racing Wheel ==== 
- 
-  * Logitech G29 Driving Force Racing Wheel 
-  * [[https://download01.logi.com/web/ftp/pub/techsupport/gaming/lghub_installer.exe|Logitech G HUB]] 
- 
-  * :!: Don't use Logitech Gaming Software as it breaks force-feedback in City Car Driving and has no known benefit otherwise 
- 
-==== Audio ==== 
- 
-  * [[https://rog.asus.com/forum/showthread.php?117596-DRIVERS-Realtek-Audio-(MB-Intel-2xx-3xx-4xx-amp-AMD-3xx-4xx-5xx)|ASUS ROG Forums]] 
- 
-==== Chipset ==== 
- 
-  * X470 
-  * [[https://www.amd.com/en/support/chipsets/amd-socket-am4/x470|AMD Drivers & Support]] 
- 
-==== Graphics ==== 
- 
-  * RX 580 
-  * [[https://www.amd.com/en/support/graphics/radeon-500-series/radeon-rx-500-series/radeon-rx-580|AMD Drivers & Support]] 
- 
-==== USB ==== 
- 
-  * ASM1142 
-  * [[https://www.win-raid.com/t834f25-USB-Drivers-original-and-modded.html|Win-Raid Forums]] 
-  * [[https://www.station-drivers.com/index.php?option=com_remository&Itemid=353&func=select&id=19&orderby=4&lang=en|Station-Drivers]] 
- 
-  * :!: Do not install any special driver for the AMD USB controllers/hubs, ever 
  
/var/www/wiki/data/pages/windows/11.txt · Last modified: 2022/01/20 06:47 by Sean Rhone