User Tools

Site Tools


windows

Differences

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


Last revision
windows [2021/04/08 11:02] – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== Windows 10 Pro Disable thumbs.db ======
 +Disable thumbs.db generation in Microsoft Windows. Import this key into system registry.
  
 +<file reg DisableThumbs.reg>Windows Registry Editor Version 5.00
 +
 +[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
 +"DisableThumbnailCache"=dword:00000001
 +</file>
 +
 +====== Windows 10 Pro Update Setting ======
 +<code>HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU</code>
 + DWORD value named “AUOptions”\\
 +
 +00000002 (Notify for download and notify for install)\\
 +00000003 (Auto download and notify for install)\\
 +00000004 (Auto download and schedule the install)\\
 +
 +<file reg BlockAutoUpdate.reg>
 +Windows Registry Editor Version 5.00
 +
 +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
 +"AUOptions"=dword:00000002
 +</file>
 +
 +
 +====== Disable / Uninstall Hyper-V on Desktop ======
 +There is a big performance impact, while Hyper-V is installed please be sure that's not there.\\
 +You can find it in "Programs" -> Windows Features
 +
 +====== Run program on specific CPU core ======
 +
 +<code>cmd /c start /affinity ## "c:\program.exe"</code>
 +## Binary value\\
 +1 = 1 Core\\
 +111111 = All 6 Cores\\
 +100000 = 6th Core only (20hex)\\
 +\\
 +Binary value must be converted to hex format
 +
 +====== SSD ======
 +Disable Superfetch service\\
 +Disable Indexing\\
 +Disable Hibernate\\
 +<code>powercfg -h off</code>
 +
 +====== Switch SATA / IDE mode ======
 +Start msconfig\\
 +Under boot tab check "Safe boot" then reboot PC set IDE to AHCI. Boot in safe mode run msconfig again and uncheck "Safe boot"\\
 +Leave 25-40% free space (for longer SSD life)
 +
 +====== SATA vs IDE ======
 +On some older motherboards there are strange problems while using AHCI, if you experience random freeze, data corruption etc. then leave IDE mode.
 +
 +
 +====== Windows Color Profiles ======
 +<code>C:\Windows\System32\spool\drivers\color</code>
 +
 +====== Windows Startmenu / Startup ======
 +| | C:\ProgramData\Microsoft\Windows\Start Menu\Programs |
 +| | <USER>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs |
 +| | HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run |
 +| Startscreen Layout | %LocalAppData%\Microsoft\Windows |
 +
 +
 +
 +====== Windows 8-10 Repair ======
 +Be careful!
 +<code>sfc /scannow</code>
 +<code>dism /online /cleanup-image /restorehealth</code>
 +
 +====== Windows 10 Enable / Disable Trim ======
 +Check status:
 +<code>fsutil behavior query DisableDeleteNotify</code>
 +Set
 +<code>fsutil behavior set DisableDeleteNotify 0|1</code>
 +
 +
 +====== Disable WDDM recovery ======
 +
 +<file reg DisableWDDMRecovery.reg>Windows Registry Editor Version 5.00
 +
 +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers]
 +"TdrLevel"=dword:00000000
 +</file>
 +
 +====== Set HPET Timer ======
 +<code>bcdedit /set useplatformclock true
 +bcdedit /deletevalue useplatformclock</code>
 +**Platform clock** - force HPET or ACPI\\
 +If not set (default) use TSC if is invariant (modern CPU) - faster, otherwise fallback to HPET or ACPI\\
 +\\
 +From faster to slower -> TSC -> HPET -> ACPI\\
 +HPET is slower, but more precise
 +
 +====== Wallpaper compression ======
 +Set JPEG quality 100% on Microsoft Windows 10 Wallpaper
 +<file reg DisableWallpaperCompression.reg>Windows Registry Editor Version 5.00
 +
 +[HKEY_CURRENT_USER\Control Panel\Desktop]
 +"JPEGImportQuality"=dword:00000064
 +</file>
 +
 +====== USB Hub permanently disconnecting ======
 +Turn off power saving for USB in control panels
 +
 +<file reg DisableUSBPowerSuspend.reg>Windows Registry Editor Version 5.00
 +
 +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\USB]
 +"DisableSelectiveSuspend"=dword:00000001
 +</file>
 +
 +====== Memory Test ======
 +Type mdsched into start search
 +
 +====== SSD freezing ======
 +Disable powermanagement on port0\\
 +Intel AHCI driver only
 +<file reg DisablePORT0PowerSuspend.reg>Windows Registry Editor Version 5.00
 +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\iaStor\Parameters\Port0]
 +"LPM"=dword:00000000
 +"LPMDSTATE"=dword:00000000
 +"DIPM"=dword:00000000
 +</file>
 +or
 +**Install AMD SATA Driver (best performance - 1.2.1.402)! I have some stability issues with older or newer**
 +
 +
 +====== Enable AHCI Link Setting ======
 +<file reg EnableAHCIPowerSetting.reg>
 +Windows Registry Editor Version 5.00
 +
 +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\0012ee47-9041-4b5d-9b77-535fba8b1442\0b2d69d7-a2a1-449c-9680-f91c70521c60]
 +"Attributes"=dword:00000002
 +</file>
 +
 +====== USB3 Drivers ======
 +[[http://www.win-raid.com/t834f25-USB-Drivers-original-and-modded.html]]
 +
 +====== Windows Update thru Proxy ======
 +<code>netsh winhttp import proxy source = ie</code>
 +<code>netsh winhttp reset proxy</code>
 +
 +====== Port redirect ======
 +Run as Administrator
 +<code>netsh interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=8000 connectaddress=192.168.0.10 connectport=8000</code>
windows.txt · Last modified: 2023/06/15 14:09 by Jan Forman