Share via

Windows Update Disaster Again Help

Anonymous
2024-03-13T21:27:25+00:00

Despite what has been paid to MS, Windows has cost me tens of thousands of dollars in lost work and put me out of business thrice!

Windows forced updates not only does it shut down the computers, at inopportune times, it wipes out the secured data! Months and Months of Work! Yeah, it is not suppose to that but it does, IT consultants I can afford say don't use Microsoft Products since they have become ****, and Microsoft does not care about their customers! Switch to Linux!?

How do I permanently stop Windows Updates!? I have tried all the fixes I can find, but to no avail! As the Administrator the options online do not seem to work! I need to have control of my Windows computers updates, or recommend the best alternative to Windows?

Please Help Microsoft Windows is worse then any hacking concern!

Windows for home | Windows 11 | Windows update

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Anonymous
    2024-03-14T09:31:48+00:00

    Hello, welcome to the Microsoft community.

    Your frustration does sound really disappointing. While completely stopping Windows updates may not be the most recommended approach (since updates usually include important security patches and system improvements), I understand your need to control updates to avoid work interruptions.

    Here is a simple batch script that can help you complete the steps to stop updates

    @echo off 
    
    echo Stopping Windows Update service... 
    
    net stop wuauserv echo Windows Update service has been stopped. 
    
    echo Windows Update server address has been changed to a new one. 
    
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v WUServer /t REG_SZ /d "127.0.0.1" /f 
    
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v WUStatusServer /t REG_SZ /d "127.0.0.1" /f 
    
    echo Windows Update server address has been changed 
    
    echo Starting Windows Update service... 
    
    net start wuauserv 
    
    echo Windows Update service has been started. 
    
    echo Please close this window. 
    
    pause
    

    Please copy the above code to Notepad, replace the "new server address" with the actual server address you want to set. When saving the file, choose "Save As", select "All Files" as the file type, name the file with a .bat extension (for example, update_server.bat), then double click to run the batch file.

    Please note, when running the batch script, make sure you have administrator privileges to make these changes. Hopefully, this batch script will help you smoothly change the Windows Update server address!

    Disclaimer: Modifying the registry or workgroup is usually for advanced users, administrators, and IT professionals. It can help fix some issues, but improper registry modifications can lead to serious problems. For further protection, please backup the registry before making any changes. For more information on how to backup and restore the registry, refer to:Registry Backup and Restore

    Anyway, hope this can help you.

    Lugoo Bei | Microsoft Community Support Specialist

    Was this answer helpful?

    0 comments No comments