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 [2025/04/12 22:59] – [Edge Fix] Sean Rhonewindows:10 [2026/01/30 14:48] (current) – [Update Office] Sean Rhone
Line 2: Line 2:
  
   * Microsoft Windows 10 IoT Enterprise LTSC   * Microsoft Windows 10 IoT Enterprise LTSC
-  * Version 21H2 (OS Build 19044.5737)+  * Version 21H2 (OS Build 19044.6812)
  
 ====== Resources ====== ====== Resources ======
  
 +  * [[windows;notes;quick_commands|Quick Commands]]
   * [[windows:notes:env_paths|Env PATH Variables]]   * [[windows:notes:env_paths|Env PATH Variables]]
   * [[windows;notes;misc]]   * [[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/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)   * http://redeem.microsoft.com/ (TODO: Put somewhere else)
   * [[https://github.com/Espionage724/Windows|GitHub Batch Files]]   * [[https://github.com/Espionage724/Windows|GitHub Batch Files]]
  
-===== TODO =====+===== TODOs =====
  
-  * https://support.microsoft.com/en-us/topic/kb4072698-windows-server-and-azure-stack-hci-guidance-to-protect-against-silicon-based-microarchitectural-and-speculative-execution-side-channel-vulnerabilities-2f965763-00e2-8f98-b632-0d96f30c8c8e#ID0EBBBBJ=FeatureSettingsOverride +  * https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/bcdedit--set ([[windows;10?rev=1742081524#bcdedit|older rev]]) 
-  * https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/bcdedit--set +  * https://learn.microsoft.com/en-us/troubleshoot/windows-server/remote/frame-rate-limited-to-30-fps (60 FPS RDP) 
-  * https://forums.blurbusters.com/viewtopic.php?f=10&t=13429 (enable rss)+  * https://ss64.com/nt/title.html (''TITLE'' in batch files) 
 +  * https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-lanmanserver 
 +  * https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-privacy 
 +  * https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-fixes-for-windows-8-windows-7-and-windows-vista 
 +  * https://forums.overclockers.co.uk/threads/windows-disabling-network-throttling.18558659/#post-25335538
  
 ====== Updates ====== ====== Updates ======
Line 28: Line 34:
  
 ==== Maintenance ==== ==== Maintenance ====
 +
 +  "%SystemRoot%\System32\cleanmgr.exe" /sageset:9999
  
   "notepad.exe" "%UserProfile%\Desktop\Maintenance.bat"   "notepad.exe" "%UserProfile%\Desktop\Maintenance.bat"
  
 <code> <code>
-:: .NET Framework 4 +@echo off 
-"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" update /force /queue + 
-"%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" update /force /queue +TITLE Maintenance 
-"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" executequeueditems +CD "%Temp%"
-"%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exeexecutequeueditems+
  
 :: System File Check, Cleanup, and Repair :: System File Check, Cleanup, and Repair
Line 43: Line 50:
  
 :: Classic Disk Cleanup :: Classic Disk Cleanup
-"%SystemRoot%\System32\cleanmgr.exe" /sageset:65535 +"%SystemRoot%\System32\cleanmgr.exe" /sagerun:9999
-"%SystemRoot%\System32\cleanmgr.exe" /sagerun:65535+
  
 :: Volume Shadow Copy :: Volume Shadow Copy
 "%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All "%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All
 +
 +:: USN Change Journal
 +"%SystemRoot%\System32\fsutil.exe" usn deleteJournal /D "%SystemDrive%"
 +
 +:: .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
  
 PAUSE PAUSE
Line 57: Line 72:
  
 :: End</code> :: End</code>
 +
 +=== Test ===
 +
 +  * [[https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc788042(v=ws.11)?redirectedfrom=MSDN|URL]]
 +
 +  fsutil usn deleteJournal /D C:
 +
 +===== Downloads =====
 +
 +==== Reset Icon Cache ====
 +
 +  "notepad.exe" "%UserProfile%\Downloads\Reset Icon Cache.bat"
 +
 +<code>
 +@echo off
 +
 +TITLE Reset Icon Cache
 +CD "%Temp%"
 +
 +TASKKILL /F /IM "explorer.exe"
 +TIMEOUT /T "2" /NOBREAK
 +DEL /F /Q "%LocalAppData%\Microsoft\Windows\Explorer\"*".db"
 +DEL /F /Q "%UserProfile%\AppData\Local\IconCache.db"
 +TIMEOUT /T "2" /NOBREAK
 +START explorer.exe
 +
 +:: End</code>
 +
 +  "%UserProfile%\Downloads\Reset Icon Cache.bat"
 +
 +==== Remove Intel Microcode ====
 +
 +  "notepad.exe" "%UserProfile%\Downloads\Remove Intel Microcode.bat"
 +
 +<code>
 +@echo off
 +
 +TITLE Remove Intel Microcode
 +CD "%Temp%"
 +
 +TAKEOWN /F "%SystemRoot%\System32\mcupdate_GenuineIntel.dll"
 +ICACLS "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" /grant "Administrators:F"
 +DEL /Q "%SystemRoot%\System32\mcupdate_GenuineIntel.dll"
 +
 +PAUSE
 +
 +:: End</code>
 +
 +  "%UserProfile%\Downloads\Remove Intel Microcode.bat"
  
 ===== Start Menu ===== ===== Start Menu =====
Line 83: Line 147:
 ====== Settings ====== ====== Settings ======
  
-===== Explorer =====+===== BCDEdit =====
  
-==== Separate Processes ====+  "bcdedit.exe" /set "disabledynamictick" "Yes"
  
-****+  "bcdedit.exe" /set "nx" "AlwaysOff" 
 + 
 +===== Microsoft Edge =====
  
-  REG ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "SeparateProcess" /t REG_DWORD /d "1" /f+  * [[windows;notes;edge_tweaks|Edge Tweaks]]
  
 ===== Power ===== ===== Power =====
Line 104: Line 170:
  
   "powercfg.exe" /DUPLICATESCHEME "e9a42b02-d5df-448d-aa00-03f14749eb61"   "powercfg.exe" /DUPLICATESCHEME "e9a42b02-d5df-448d-aa00-03f14749eb61"
- 
-==== Disable CPU Idle States ==== 
- 
-  * :!: Results in notably higher idle temps 
-  * Task Manager shows 100% core usage all the time 
- 
-  "powercfg.exe" /SETACVALUEINDEX "SCHEME_CURRENT" "SUB_PROCESSOR" "IdleDisable" "1" & "powercfg.exe" /SETACTIVE "SCHEME_CURRENT" 
- 
-=== Undo === 
- 
-**** 
- 
-  "powercfg.exe" /SETACVALUEINDEX "SCHEME_CURRENT" "SUB_PROCESSOR" "IdleDisable" "0" & "powercfg.exe" /SETACTIVE "SCHEME_CURRENT" 
  
 ==== More Settings ==== ==== More Settings ====
Line 124: Line 177:
   "powercfg.exe" /Qh   "powercfg.exe" /Qh
  
-===== Disable Threaded DPCs ===== +===== SMB =====
- +
-****+
  
-  REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\kernel" /v "ThreadDpcEnable" /t "REG_DWORD" /d "0" /f+  * [[windows;notes;smb|Notes]]
  
 ===== Disable Clipboard History ===== ===== Disable Clipboard History =====
Line 148: Line 199:
   reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f   reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f
  
-===== Disable Last Access Time File Updates =====+===== Quick Lock Screen ===== 
 + 
 +  * Directly shows password prompt 
 + 
 +  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d "1" /f 
 + 
 +==== Undo ====
  
 **** ****
  
-  fsutil behavior set disablelastaccess 1+  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d "0" /f
  
 ===== Disable Online Speech Recognition ===== ===== Disable Online Speech Recognition =====
Line 187: Line 244:
  
   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 "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 ===== ===== Disable System Restore =====
Line 223: Line 262:
  
   REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t "REG_DWORD" /d "0" /f   REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t "REG_DWORD" /d "0" /f
- 
-===== Disable Windows Defender ===== 
- 
-**** 
- 
-  reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t "REG_DWORD" /d "1" /f 
  
 ===== Enable FIPS Mode ===== ===== Enable FIPS Mode =====
  
   * https://learn.microsoft.com/en-us/windows/security/security-foundations/certification/fips-140-validation   * https://learn.microsoft.com/en-us/windows/security/security-foundations/certification/fips-140-validation
-  * [[windows;notes;misc#fips_test|Test]] 
  
   REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "1" /f   REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "1" /f
  
-==== Undo ==== +  "powershell.exe-Command "$md5 = New-Object -TypeName 'System.Security.Cryptography.MD5CryptoServiceProvider'"
- +
-**** +
- +
-  REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy/v "Enabled" /t "REG_DWORD" /d "0/f+
  
 ===== Remove Quick Access ===== ===== Remove Quick Access =====
Line 267: Line 295:
   reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f   reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f
  
-====== Other ======+===== DX Refresh Rate =====
  
-===== NetFX3 From Install Media =====+  * https://steamcommunity.com/app/227600/discussions/0/864979008327344181/ 
 +  * [[https://www.pcgamingwiki.com/wiki/Glossary:Frame_rate_(FPS)#Force_games_to_use_a_custom_refresh_rate|https://www.pcgamingwiki.com/wiki/Glossary:Frame_rate_(FPS)#Force_games_to_use_a_custom_refresh_rate]]
  
-  * Change ''D:\'' to install media drive if necessary+  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw" /v "ForceRefreshRate" /t "REG_DWORD" /d "60" /reg:64 /f
  
-  Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess+  REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw" /v "ForceRefreshRate" /"REG_DWORD" /"60" /reg:32 /f
  
-===== Remove Most Modern UI Apps =====+====== Other ======
  
-  * Not necessary with Local Account log-ins and Pro/Enterprise/LTSC editions +===== Microsoft Store =====
-  * Tested fine on 20H2, 21H2, and 23H2 +
-  * :!: This broke the start menu on 1809 +
-  * :!: 2024/08: May cause Explorer windows to act broken at times on 11 23H2+
  
-  * Powershell Script ''*.ps1''+  "WSReset.exe" -i
  
-  Get-AppxPackage -allusers | Remove-AppxPackage+<code> 
 +"WSReset.exe" -
 +TIMEOUT /T "20" /NOBREAK 
 +"WSReset.exe" -
 +EXIT /B
  
-===== Remove OneDrive =====+:: End</code>
  
-  taskkill /IM "OneDrive.exe" /F+===== WinSAT =====
  
-  %windir%\SysWOW64\OneDriveSetup.exe /uninstall+  "WinSAT.exe" forgethistory
  
-  rmdir "%UserProfile%\OneDrive" "%ProgramData%\Microsoft OneDrive" "%LocalAppData%\Microsoft\OneDrive"C:\OneDriveTemp" /S /Q+  "WinSAT.exe" "formal-restart "clean"
  
-  reg delete "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}/f+  "WinSAT.exequery
  
-  reg delete "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f+===== NetFX3 From Install Media ===== 
 + 
 +  * Change ''D:\'' to install media drive if necessary 
 + 
 +  Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess
  
 ===== Prevent Driver Changes ===== ===== Prevent Driver Changes =====
Line 330: Line 364:
   reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f   reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f
  
-====== Services ======+===== Update Office =====
  
-  "sc.exe" stop "DPS" & "sc.exe" config "DPS" "start=disabled"+****
  
-  "sc.exe" stop "SysMain"sc.execonfig "SysMain" "start=disabled"+  "%CommonProgramFiles%\microsoft shared\ClickToRun\OfficeC2RClient.exe" /update "userforceappshutdown="Truedisplaylevel="True"
  
-===== Spinesnap ===== +====== Services ======
- +
-  "sc.exe" stop "esifsvc" & "sc.exe" config "esifsvc" "start=disabled" +
- +
-  "sc.exe" stop "ApHidMonitorService" & "sc.exe" config "ApHidMonitorService" "start=disabled" +
- +
-====== Edge Fix ====== +
- +
-  * :?: Occasionally, Edge stops being able to open ([[https://forums.mydigitallife.net/threads/what-causes-edge-to-randomly-not-open.89145/|post]]) +
-  * This deletes/resets the user profile+
  
-  RMDIR /S /Q "%LocalAppData%\Microsoft\Edge"+  * [[windows;notes;services|Notes]]
  
 ====== Programs ====== ====== Programs ======
Line 356: Line 381:
  
   * https://www.7-zip.org/download.html   * https://www.7-zip.org/download.html
 +
 +  7z2501-x64.exe
  
 ===== Android Tools ===== ===== Android Tools =====
  
-  * [[https://dl-ssl.google.com/android/repository/latest_usb_driver_windows.zip|Latest USB Driver]] +  * [[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|Latest platform-tools]] +  * [[https://dl-ssl.google.com/android/repository/platform-tools-latest-windows.zip|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))+
  
 ===== aria2 ===== ===== aria2 =====
Line 380: Line 406:
  
   * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109   * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109
-  * :?: TODO: Extras get installed if .NET 2/3 Windows feature is also installed 
- 
-===== .NET Runtime ===== 
- 
-  * https://aka.ms/dotnet/8.0/windowsdesktop-runtime-win-x64.exe 
  
 ===== Firefox ===== ===== Firefox =====
  
-  * [[https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US|exe]]+  * https://www.firefox.com/en-US/download/all/desktop-esr/win64-msi/en-US
 +  * https://www.firefox.com/en-US/download/all/ 
   * [[programs;firefox|Settings]]   * [[programs;firefox|Settings]]
-  * :?: May benefit from intentionally setting OS ClearType font settings ((default out-the-box Gamma is ''1.8''; clicking all-Next/defaults through ClearType config puts it at standard ''2.2''))+ 
 +  REG ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /v "%ProgramFiles%\Mozilla Firefox\firefox.exe" /t "REG_SZ" /d "~ DISABLEDXMAXIMIZEDWINDOWEDMODE HIGHDPIAWARE DISABLEDWM DISABLETHEMES NoDTToDITMouseBatch" /f 
 + 
 +===== Thunderbird ===== 
 + 
 +  https://www.thunderbird.net/en-US/thunderbird/all/
  
 ===== GIMP ===== ===== GIMP =====
  
   * https://www.gimp.org/downloads   * https://www.gimp.org/downloads
 +
 +  * Install for me only (recommended)
 +  * Compact installation (no components)
 +  * Launch -> Create -> ''[ ]'' Show on Start
 +
 +  gimp-3.0.6-setup-1.exe
  
 ===== KeePassXC ===== ===== KeePassXC =====
Line 404: Line 438:
   * https://www.libreoffice.org/download/download/   * https://www.libreoffice.org/download/download/
  
-  * Options -> Uncheck Use Skia (HW accel should be checked) +  * ''[ ]'' Use Skia for all rendering 
-  * Options -> Disable Java runtime environment+  * ''[x]'' Use hardware acceleration 
 +  * ''[ ]'' Use a Java runtime
  
-===== MuPDF =====+  LibreOffice_25.8.3_Win_x86-64.msi
  
-  * https://mupdf.com/releases/index.html +===== Okular ===== 
-  * https://mupdf.com/releases/history.html+ 
 +  * https://cdn.kde.org/ci-builds/graphics/okular/master/windows/
  
 ===== Notepad++ ===== ===== Notepad++ =====
  
   * https://notepad-plus-plus.org/download   * https://notepad-plus-plus.org/download
 +
 +  npp.8.8.9.Installer.x64.exe
  
 ===== OBS ===== ===== OBS =====
  
   * https://github.com/obsproject/obs-studio/releases   * https://github.com/obsproject/obs-studio/releases
 +
 +  OBS-Studio-32.0.3-Windows-x64-Installer.exe
  
 ===== qBittorrent ===== ===== qBittorrent =====
  
   * https://www.qbittorrent.org/download   * https://www.qbittorrent.org/download
-  * https://github.com/waelisa/Best-blocklist/raw/main/wael.list.p2p.zip 
- 
-===== Thunderbird ===== 
  
-  * https://download.mozilla.org/?product=thunderbird-latest-ssl&os=win64&lang=en-US+  qbittorrent_5.1.4_qt6_lt20_x64_setup.exe
  
 ===== VC++ Redist ===== ===== VC++ Redist =====
  
-  * https://github.com/abbodi1406/vcredist/releases+  * https://forums.mydigitallife.net/threads/repack-visual-c-redistributable-runtimes-2025-10-17.76588/
  
-  "%UserProfile%\Downloads\VisualCppRedist_AIO_x86_x64.exe" /ai+===== Kodi =====
  
-  "%UserProfile%\Downloads\VisualCppRedist_AIO_x86_x64.exe" /aiR+  * https://mirrors.kodi.tv/nightlies/windows/win64/master/
  
 ===== VLC media player ===== ===== VLC media player =====
Line 451: Line 488:
  
   * https://download.battle.net/en-us/?product=bnetdesk   * 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)
  
 ===== Steam ===== ===== Steam =====
Line 468: Line 506:
  
   * See [[windows:drivers|Drivers]] for more URLs   * See [[windows:drivers|Drivers]] for more URLs
 +
 +===== Boulderback =====
 +
 +==== Chipset ====
 +
 +  * https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=r0jhr&oscode=w764&productcode=precision-m6500
 +  * ''9.1.1.1025''
 +
 +==== Graphics ====
 +
 +  * 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]]
  
 ===== Spinesnap ===== ===== Spinesnap =====
  
   * [[https://www.dell.com/support/home/en-us/product-support/product/latitude-15-5591-laptop/drivers|Dell Latitude 5591 - Support and BIOS Updates]]   * [[https://www.dell.com/support/home/en-us/product-support/product/latitude-15-5591-laptop/drivers|Dell Latitude 5591 - Support and BIOS Updates]]
 +
 +==== Keyboard ====
 +
 +  * EPOMAKER x LEOBOG Hi75
 +
 +  * https://epomaker.com/blogs/firmware/epomaker-x-leobog-hi75-firmware
 +  * https://epomaker.com/blogs/software/epomaker-x-leobog-hi75-driver
 +
 +==== Mouse ====
 +
 +  * ATTACK SHARK R6
 +  * :?: 2025/11/30: ''xvalleyinno'' link offers newer firmware and a ''Hunting Shark Competitive Mode'' setting
 +
 +  "%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge_proxy.exe" --app="https://www.xvalleyinno.top/AttackShark/#/project/items"
 +
 +  "%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge_proxy.exe" --app="https://cn.attackshark.pro/WebDriven/index.html#/project/items"
  
 ==== SATA/RST ==== ==== SATA/RST ====
  
-  * [[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]] +  * Last tested: ''17.7.1.1010'' ((''17.11'' branch has extra RST driver + Service))
-  * :?: Last tested version: ''17.11.3.1010''+
  
 ==== Ethernet ==== ==== Ethernet ====
Line 482: Line 547:
   * I219-LM Gigabit   * I219-LM Gigabit
   * Intel Corporation Ethernet Connection (7) I219-LM (rev 10) ((rev 10 drivers, not rev 18+))   * Intel Corporation Ethernet Connection (7) I219-LM (rev 10) ((rev 10 drivers, not rev 18+))
 +  * TODO: https://www.intel.com/content/www/us/en/download/19814/ethernet-cmdlets-for-microsoft-windows-for-powershell.html
  
   * [[https://www.intel.com/content/www/us/en/products/sku/82185/intel-ethernet-connection-i219lm/downloads.html|Intel Download Center]]   * [[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''+  * Last tested: ''Wired_driver_30.5_x64.zip''
  
 ==== Wireless ==== ==== Wireless ====
  
-  * wireless-AC 9560 +  * AX210 
-  * Intel Corporation Cannon Lake PCH CNVi WiFi (rev 10)+  * Last tested: ''WiFi-23.170.0-Driver64-Win10-Win11.zip'' 
 + 
 +=== TODO === 
 + 
 +  * :?: Sources
  
   * [[https://www.intel.com/content/www/us/en/products/sku/99446/intel-wirelessac-9560/downloads.html|Intel Download Center]] (IT Administrators 8-))   * [[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''   * Last tested: ''WiFi-23.110.0-Driver64-Win10-Win11.zip''
 +  * TODO: [[https://www.station-drivers.com/index.php/en/component/remository/Drivers/Intel/Wlan/PROSet-Wireless-WiFi-Software/PROSet-Wireless-WiFi-Software-Version-23.x/orderby,4/lang,en-gb/|Station-Drivers]] ((as of recently 9560 and AX210 have no Windows drivers listed on Intel DL center))
 +  * TODO: https://rog-forum.asus.com/t5/downloads-for-motherboards/drivers-intel-ethernet-wifi-bluetooth/td-p/878985 (also Ethernet)
  
 === Bluetooth === === Bluetooth ===
  
-  * Last tested: ''BT-23.100.1-64UWD-Win10-Win11.zip'' +  * ''BT-23.170.0-64UWD-Win10-Win11.zip''
- +
-==== Audio ==== +
- +
-  * https://apps.microsoft.com/detail/9nb9srtl2kpt+
  
 ==== Graphics ==== ==== Graphics ====
Line 508: Line 576:
  
   * [[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://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''+  * Last tested: ''gfx_win_101.2137.exe'' 
 + 
 +=== VRAM Increase === 
 + 
 +  * https://www.reddit.com/r/Returnal/comments/114z3m3/intel_integrated_gpu_vram_dedicatedsegmentsize/?tl=de 
 +  * :!: Decimal 
 +  * Shows in ''dxdiag'' 
 +  * Has to be under the GUID and not old plain Intel registry path (DCH) 
 +  * :?: Increases dedicated higher than default 128MB, but seems to limit elsewhere ((''7086'' is reported somewhere and is the limit even with ''DedicatedSegmentSize=8192'')) 
 + 
 +  REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000\GMM" /v "DedicatedSegmentSize" /t REG_DWORD /d "8192" /f 
 + 
 +  HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000\GMM 
 + 
 +  DedicatedSegmentSize
  
C:/www/wiki/data/attic/windows/10.1744513144.txt.gz · Last modified: by Sean Rhone

Except where otherwise noted, content on this wiki is licensed under the following license: CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki