Jump to content

Hi, I am trying to kind of optimise a windows 10 tablet and I known that in windows 8 it was easy to disable updates, including update checks but on windows 10 I can't seem to find it. Before saying anything, yes I am aware of the risks and I know that I shouldn't do this but when I try to install the latest update it says that I need to contact the manufacturer to update the bios but the tablet is from a not really known brand in the UK named Linx and I don't think they even have support for this product so disabling updates should stop me from getting things like "Couldn't install updates" and also the memory and CPU usage of the update utility at random times as it is trying to continuously install updates. So the main question How do I disable windows updated on windows 10

Link to comment
https://linustechtips.com/topic/1057447-deactivating-updates-on-windows-10/
Share on other sites

Link to post
Share on other sites

You need to disable Windows Update service but since Win10 is a jackass it will enable back that service so your only easy option is to use 3rd party program like Window Update Blocker.

| Intel i7-3770@4.2Ghz | Asus Z77-V | Zotac 980 Ti Amp! Omega | DDR3 1800mhz 4GB x4 | 300GB Intel DC S3500 SSD | 512GB Plextor M5 Pro | 2x 1TB WD Blue HDD |
 | Enermax NAXN82+ 650W 80Plus Bronze | Fiio E07K | Grado SR80i | Cooler Master XB HAF EVO | Logitech G27 | Logitech G600 | CM Storm Quickfire TK | DualShock 4 |

Link to post
Share on other sites

CTRL + R > type "services.msc" > double click on "Windows Update" on the drop down list > on "Startup Type" select "disabled"

Project Diesel 5.0: Motherboard: ASRock Fatal1ty X370 Professional Gaming /// CPU: Ryzen 5 3600X  /// CPU Cooler: Scythe Ninja 5 /// GPU: Zotac AMP Extreme RTX 2070 /// RAM: 2x 16gb G.Skill Ripjaws V @3200mhz /// Chassis: Lian Li Lancool One Digital (black) /// PSU: Super Flower Leadex III 750w /// Storage: Inland Premium 1TB NVME + Toshiba X300 4TB

 

Peripherals: Mice: Cooler Master MM720 /// Keyboard: Corsair K70 MK2 SE (Cherry Silver), Blitzwolf BW-KB1 (Gateron Reds) /// Monitor: Acer XZ320Q 32' (VA, 1080p @240hz) /// AMP: Topping PA3 (Onkyo Integra A-817XD undergoing restoration) /// DAC: Weiliang SU5 /// Speakers: AAT BSF-100 /// Mike: Alctron CS35U /// Headphones: Blon B8, ISK MDH-9000

 

Living room: TV: Samsung QLED Q7FN 55' 4k /// Amplifier: Denon AVR-X2400H /// Speakers: DALI Zensor 7 /// Consoles: Sony PS4 Pro 1TB, Sony PS3 500gb /// LD/CD/DVD: Pioneer DVL-909 /// Power Supplies: Upsai ACF-2100T + GR Savage CDR2200EX

Link to post
Share on other sites

I made a VBS script that auto kills the windows 10 update service every 15 minutes. It runs every 15 minutes because there is also a "medic" process that checks if its running and tries to restart it. This can also be a .BAT but I made it a VBS so it can run without a Command window opening up. The interval can also be less frequent but I really hate windows updates.

 

Const HIDDEN_WINDOW = 12 

strComputer = "." 
Set objWMIService = GetObject("winmgmts:" _ 
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") 
Set objStartup = objWMIService.Get("Win32_ProcessStartup")

 

Set objConfig = objStartup.SpawnInstance_ 
objConfig.ShowWindow = HIDDEN_WINDOW 
Set objProcess = GetObject("winmgmts:root\cimv2:Win32_Process") 
errReturn = objProcess.Create("PATH TO BAT FILE GOES HERE", null, objConfig, intProcessID)

 

Current: R2600X@4.0GHz\\ Corsair Air 280x \\ RTX 2070 \\ 16GB DDR3 2666 \\ 1KW EVGA Supernova\\ Asus B450 TUF

Old Systems: A6 5200 APU -- A10 7800K + HD6670 -- FX 9370 + 2X R9 290 -- G3258 + R9 280 -- 4690K + RX480

Link to post
Share on other sites

2 minutes ago, Taswell said:

I made a VBS script that auto kills the windows 10 update service every 15 minutes. It runs every 15 minutes because there is also a "medic" process that checks if its running and tries to restart it. This can also be a .BAT but I made it a VBS so it can run without a Command window opening up

I like Window Update Blocker approach of changing the ownership for that service so Window don't have permission to change it back. 

| Intel i7-3770@4.2Ghz | Asus Z77-V | Zotac 980 Ti Amp! Omega | DDR3 1800mhz 4GB x4 | 300GB Intel DC S3500 SSD | 512GB Plextor M5 Pro | 2x 1TB WD Blue HDD |
 | Enermax NAXN82+ 650W 80Plus Bronze | Fiio E07K | Grado SR80i | Cooler Master XB HAF EVO | Logitech G27 | Logitech G600 | CM Storm Quickfire TK | DualShock 4 |

Link to post
Share on other sites

  • 1 month later...

Very simple to disable Windows Updates.
First go to Services and shut off Windows Update and disable it. Refresh Services to make sure it isn't running.

Now navigate to \windows\system32\ and find files wuaueng.dll and wuauclt.exe. If you can find the former, then look for wuauserv.dll. 

For each, go to properties, security, advanced. 
Click change owner and type in your user name, Click Check Names to select your user name and Click ok. Then Click Apply or Ok on the main window and close it and reopen it.
Now, you can change permissions for all users. 
Delete/Remove permissions from all users and Click Ok.

If that doesn't work, then change owner to Administrator, close the window and try again.

That's it. 
To re-enable, add "Read/Execute" permissions to System on wuaueng.dll or whichever dll you have. Doesn't need it on wuauclt.exe for some reason.
This method should always work, unless the files are replaced/updated somehow with ones that have permissions.

Take that Microsoft!

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×