Showing posts with label regedit. Show all posts
Showing posts with label regedit. Show all posts

Thursday, November 12, 2020

Windows Registry Settings and Hacks

RemoveBandwidthLimit
Do this to keep Windows from reserving 20% internet bandwidth
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Psched
Give it Value Data 0
It will look like this . ..

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Psched]
"NonBestEffortLimit"=dword:00000000

Target Version Update
Use following to make .reg file
You need to change the version "2004" to desired. Current now is 21H2
I still have some mission critical on 1909
<Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"TargetReleaseVersion"=dword:00000001
"TargetReleaseVersionInfo"="21H2">


TargetReleaseVersion
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"TargetReleaseVersion"=dword:00000001
"TargetReleaseVersionInfo"="2004"

Remove Shortcut Text
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
"link"=hex:00,00,00,00

Thursday, October 22, 2020

Delay Windows Feature Update With One Click

 Making the registry changes with one click . . .

- Enter the following in a NotePad and save as "somename.reg"

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"TargetReleaseVersion"=dword:00000001
"TargetReleaseVersionInfo"="2004"

Friday, October 19, 2018

Regedits I Use

QOS in Windows - This gives 100% bandwidth - Win default is 20
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Psched]
"NonBestEffortLimit"=dword:00000000

Feature Update Target
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"TargetReleaseVersion"=dword:00000001
"TargetReleaseVersionInfo"="2004"

Undo Reature Update Target
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"TargetReleaseVersion"=-
"TargetReleaseVersionInfo"=-

Ventoy On Secure Boot

I turn of secure boot in every BIOS. However, some do not show that setting. Here is an option that has worked for me. Boot the PC and launc...