Disable "Updates are Available" popup!!!

Hi, can this be done via a script please:
https://winaero.com/blog/disable-upd…le-windows-10/

Cheers !!!

Hai @dittoit ,

We are analyzing your request and we will update you once the script has been Completed,

Thank You

Hi @dittoit
Please refer the following script:
https://scripts.comodo.com/frontend/web/topic/disable-windows-updates-popup-in-windows-10
Thank you.

That’s great, now if only the procedures were working !!!

Hi, I ran the script which said completed, however this morning I had the attached…

Hi @dittoit

We are testing the above script in our environment. We will update you as soon as possible.
You can find an alternate script that disable the windows update popup in your system
https://scripts.comodo.com/frontend/…windows-update

Thank you

Hi @dittoit

You can try the below script which disable the action center notifications.
https://scripts.comodo.com/frontend/web/topic/disable-the-action-center-notifications

Thank you

Hi, I don’t think these are those kind of notifications, so I don’t think this will work, plus I don’t want to just turn off all notifications…

Hi @dittoit

could you please clearly explain your needs.

whether you want to disable the windows update or disable the popup only.

Thank you

I just want the popups blocked please.

Hi @dittoit ,

we will analyze your script request will update to you soon

Thank you

@Tamilselvam What is the status of this script update?

https://scripts.comodo.com/frontend/web/topic/disable-windows-updates-popup-in-windows-10

Hi, @markz

we are working on that script will update you once it has completed.

Hi

We revised the script to disable the “updates are available” popup in Windows 10. So please try the script in your environment and revert back with your feedbacks.

Note:

  1. Please run this script as a System User in ITSM.
    2)Please restart the machine to reflect the changes to endpoint.
    3)This script only applicable to Windows 10.
    4)If still this popup occurs, we can further discuss in the remote discussion.

Thank You

fp1=r'C:\Windows\System32\MusNotification.exe'
fp2=r'C:\Windows\System32\MusNotificationUx.exe'

import os
import ctypes

class disable_file_system_redirection:    
    _disable = ctypes.windll.kernel32.Wow64DisableWow64FsRedirection
    _revert = ctypes.windll.kernel32.Wow64RevertWow64FsRedirection
    def __enter__(self):
        self.old_value = ctypes.c_long()
        self.success = self._disable(ctypes.byref(self.old_value))
    def __exit__(self, type, value, traceback):
        if self.success:
            self._revert(self.old_value)

print'Disabling the Windows Updates Pop-up files'

def Disable_file(file_directory):
    import os
    try:
        cmd1=os.popen('takeown /f '+file_directory+' ').read()
        cmd2=os.popen('icacls '+file_directory+' /deny Everyone:(X)').read()
        print cmd1
        print cmd2
    except:
        print "File is not found"

def Registry_Edit():
    import os
    try:
        Add_file=os.popen('reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\MusNotification.exe" /v "debugger" /d "rundll32.exe" /f').read();
        print  Add_file
    except:
        print "File Path is not found"


Disable_file(fp1)
Disable_file(fp2)

print os.popen('rem').read()

Registry_Edit()

print 'Restart the endpoint to apply changes ....'