How can I turn off messages for certain Action Center items?

I'd like to find a way to turn off messages for Windows Update, Network Firewall and Windows Backup. Ideally I'd like to do it with Group Policy however I can't find a policy for this. We're deploying Windows 7 right now and we'll need a solution that's domain-wide.Orange County District Attorney

Here's a script I made to uncheck Windows Update, Network firewall, Windows Backup for Windows 7 machines: (Just comment or uncomment both the Hold__ = True lines below)
Note: this only un-checks the boxes
Option Explicit
Dim WshShell:Set WshShell=CreateObject("Wscript.Shell")
On Error Resume Next
Dim HoldReg, HoldProblem, HoldWindowsUpdate, HoldSpyware, HoldInternet, HoldUAC, HoldFirewall, HoldVirus, HoldBackup, HoldCheckUpdates, HoldTroubleshooting
HoldProblem = False
HoldWindowsUpdate = False
HoldSpyware = False
HoldInternet = False
HoldUAC = False
HoldFirewall = False
HoldVirus = False
HoldBackup = False
HoldCheckUpdates = False
HoldTroubleshooting = False
Err.Clear()
'Windows Update
HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.103\CheckSetting")
If Err <> 0 Then
    HoldWindowsUpdate = True
ElseIf uBound(HoldReg) < 220 Then
    HoldWindowsUpdate = True
End If
Err.Clear()
'Spyware
HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.102\CheckSetting")
If Err <> 0 Then
'    HoldSpyware = True
ElseIf uBound(HoldReg) < 100 Then
'    HoldSpyware = True
End If
Err.Clear()
'Internet
HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.104\CheckSetting")
If Err <> 0 Then
'    HoldInternet = True
ElseIf uBound(HoldReg) < 100 Then
'    HoldInternet = True
End If
Err.Clear()
'UAC
HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{C8E6F269-B90A-4053-A3BE-499AFCEC98C4}.check.0\CheckSetting")
If Err <> 0 Then
'    HoldUAC = True
ElseIf uBound(HoldReg) < 100 Then
'    HoldUAC = True
End If
Err.Clear()
'Firewall
HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.101\CheckSetting")
If Err <> 0 Then
    HoldFirewall = True
ElseIf uBound(HoldReg) < 220 Then
    HoldFirewall = True
End If
Err.Clear()
'Virus
HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.100\CheckSetting")
If Err <> 0 Then
'    HoldVirus = True
ElseIf uBound(HoldReg) < 100 Then
'    HoldVirus = True
End If
Err.Clear()
'Windows Backup
HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{01979c6a-42fa-414c-b8aa-eee2c8202018}.check.100\CheckSetting")
If Err <> 0 Then
    HoldBackup = True
ElseIf uBound(HoldReg) < 100 Then
    HoldBackup = True
End If
Err.Clear()
'Check for updates
HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{945a8954-c147-4acd-923f-40c45405a658}.check.42\CheckSetting")
If Err <> 0 Then
'    HoldCheckUpdates = True
ElseIf uBound(HoldReg) < 100 Then
'    HoldCheckUpdates = True
End If
Err.Clear()
'Troubleshooting
HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{A5268B8E-7DB5-465b-BAB7-BDCDA39A394A}.check.100\CheckSetting")
If Err <> 0 Then
'    HoldTroubleshooting = True
ElseIf uBound(HoldReg) < 100 Then
'    HoldTroubleshooting = True
End If
Err.Clear()
If HoldWindowsUpdate+HoldSpyware+HoldInternet+HoldUAC+HoldFirewall+HoldVirus+HoldBackup+HoldCheckUpdates+HoldTroubleshooting <> 0 Then
    WshShell.run "rundll32.exe shell32.dll,Control_RunDLL wscui.cpl", 1
    Wscript.Sleep 1000
    WshShell.SendKeys("+{TAB}") 'shift-tab
    WshShell.SendKeys("+{TAB}")
    WshShell.SendKeys("+{TAB}")
    WshShell.SendKeys("+{TAB}")
    WshShell.SendKeys("+{TAB}")
    WshShell.SendKeys("+{TAB}")
    WshShell.SendKeys("+{TAB}")
    WshShell.SendKeys("+{TAB}")
    WshShell.SendKeys("{ENTER}")
    Wscript.Sleep 500
    WshShell.SendKeys("{TAB}")
    If HoldWindowsUpdate Then
        WshShell.SendKeys(" ")
    End If
    WshShell.SendKeys("{TAB}")
    If HoldSpyware Then
        WshShell.SendKeys(" ")
    End If
    WshShell.SendKeys("{TAB}")
    If HoldInternet Then
        WshShell.SendKeys(" ")
    End If
    WshShell.SendKeys("{TAB}")
    If HoldUAC Then
        WshShell.SendKeys(" ")
    End If
    WshShell.SendKeys("{TAB}")
    If HoldFirewall Then
        WshShell.SendKeys(" ")
    End If
    WshShell.SendKeys("{TAB}")
    If HoldVirus Then
        WshShell.SendKeys(" ")
    End If
    WshShell.SendKeys("{TAB}")
    If HoldBackup Then
        WshShell.SendKeys(" ")
    End If
    WshShell.SendKeys("{TAB}")
    If HoldCheckUpdates Then
        WshShell.SendKeys(" ")
    End If
    WshShell.SendKeys("{TAB}")
    If HoldTroubleshooting Then
        WshShell.SendKeys(" ")
    End If
    WshShell.SendKeys("{TAB}")
    WshShell.SendKeys("{TAB}")
    WshShell.SendKeys("{TAB}")
    WshShell.SendKeys("{TAB}")
    Wscript.Sleep 500
    WshShell.SendKeys("{ENTER}")
    Wscript.Sleep 500
    WshShell.SendKeys "%{F4}" 'alt-f4
    If HoldWindowsUpdate Then
        HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.103\CheckSetting")
        If uBound(HoldReg) < 220 Then
            MsgBox "Problem unchecking Windows Update"
            HoldProblem = True
        End If
    End If
    If HoldSpyware Then
        HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.102\CheckSetting")
        If uBound(HoldReg) < 100 Then
            MsgBox "Problem unchecking Spyware"
            HoldProblem = True
        End If
    End If
    If HoldInternet Then
        HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.104\CheckSetting")
        If uBound(HoldReg) < 100 Then
            MsgBox "Problem unchecking Internet"
            HoldProblem = True
        End If
    End If
    If HoldUAC Then
        HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{C8E6F269-B90A-4053-A3BE-499AFCEC98C4}.check.0\CheckSetting")
        If uBound(HoldReg) < 100 Then
            MsgBox "Problem unchecking Firewall"
            HoldProblem = True
        End If
    End If
    If HoldFirewall Then
        HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.101\CheckSetting")
        If uBound(HoldReg) < 220 Then
            MsgBox "Problem unchecking Virus"
            HoldProblem = True
        End If
    End If
    If HoldVirus Then
        HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.100\CheckSetting")
        If uBound(HoldReg) < 100 Then
            MsgBox "Problem unchecking Backup"
            HoldProblem = True
        End If
    End If
    If HoldBackup Then
        HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{01979c6a-42fa-414c-b8aa-eee2c8202018}.check.100\CheckSetting")
        If uBound(HoldReg) < 100 Then
            MsgBox "Problem unchecking Backup"
            HoldProblem = True
        End If
    End If
    If HoldCheckUpdates Then
        HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{945a8954-c147-4acd-923f-40c45405a658}.check.42\CheckSetting")
        If uBound(HoldReg) < 100 Then
            MsgBox "Problem unchecking Check Updates"
            HoldCheckUpdates = True
        End If
    End If
    If HoldTroubleshooting Then
        HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{A5268B8E-7DB5-465b-BAB7-BDCDA39A394A}.check.100\CheckSetting")
        If uBound(HoldReg) < 100 Then
            MsgBox "Problem unchecking Troubleshooting"
            HoldProblem = True
        End If
    End If
    If HoldProblem Then
        Wscript.Sleep 1000
        WshShell.run "rundll32.exe shell32.dll,Control_RunDLL wscui.cpl", 1
        Wscript.Sleep 1000
        WshShell.SendKeys("+{TAB}") 'shift-tab
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("{ENTER}")
        MsgBox "Please select options manually"
    Else
        MsgBox "Done"
    End If
Else
    MsgBox "No changes made"
End If
Set WshShell = Nothing

Similar Messages

  • How can I turn off imessage for just one of my contacts? Me and my husband just upgraded (both had iphone 4), I got the iphone 5s and he got he note 3. All my text to him automatically send as a imessage. Ive tried to delete his contact and then went back

    How can I turn off imessage for just one of my contacts? Me and my husband just upgraded (both had iphone 4), I got the iphone 5s and he got he note 3. All my text to him automatically send as a imessage. Ive tried to delete his contact and then went back in and reentered it but that doesnt work.

    Have your husband text the word "stop" to 48369. This should take his number out of the iMessage system.
    Go into your settings under messaging and make sure the box to send as an SMS if iMessage is unavailable is checked.
    Hopefully this will get your messages sending/receiving to each other.

  • How can I turn off imessaging for one person bc she not longer has an iPhone and we can send or receive txt now?

    How do I turn off imessaging for one person ?

    You don't.
    She has to do it.
    https://daw.apple.com/cgi-bin/WebObjects/DSAuthWeb.woa/wa/classicLogin?appIdKey= 58ef9db8ff4d201409e7270a68e4408ae1678e1618204c476572a1b5e5fb3518&path&language=U S-EN

  • Mail shows up in several different inboxes, including the one it was intended. How can I turn off notifications for these duplicate messages?

    I would like to turn off notifications for duplicate mail messages.
    Thanks,
    Ralph Sapertein

    Kurt told you how to turn it off. To learn the Spotlight differences between Tiger and Leopard, see http://www.pinkmutant.com/articles/Leopard/leospot.html and my mod to Finder's Find at http://discussions.apple.com/message.jspa?messageID=6725932 for what you can change so you can find stuff excluded by Leopard's default structure.

  • How can I turn off messages on iPad while students are at school

    Is there any great way to turn off messages on the ipad without shutting down the ports required to connect to Apple on the firewall? Kids will be kids but teachers are pressing administration for solution. If you shut off messages, I may be mistaken but you can't restrict the kid from turning it back on correct?

    If you own/control the iPads that run iOS 6, you can turn off Messages via Apple Configurator or an MDM solution and the students would, to the best of my knowledge, not be able to turn that back on without knowing the Restrictions passcode. For personally owned iPads, the only way to block Messages would be to block the ports at your router. Messages uses port 5222, so if you block that port, that should block the transmission of messages, though the students will still try. For more information on ports, see:
    http://support.apple.com/kb/HT4245
    Of course if the student has a cell connection on a personally-owned device, there won't be any way you can block the sending of messages at all.
    Regards.

  • How can you turn off notifications for app store?

    Each time I  go to a forum site, it tells me there is an app for Tapatalk for the site to chat with.  If I click on cancel, it continues to pop up each time I try to respond on the forum.  If I click on OK, it takes me to the app store to buy the app for Tapatalk, which I do not want.  How do I turn off this notification that keeps popping up?  I do not see anyway to do this in the settings.

    I hate that too.   What you are seeing is a 'feature' of the forum's website.   They want you to down load their app.  It's not coming from apple, but the website.

  • How can I turn off ring for notifications e.g. messages but not for calls?

    Simple question:
    Is there a combination of settings where I can turn off sounds and vibrate for notifications e.g. whatsapp, facebook but still have it vibrate for calls.
    E.g. if its in my pocket I'd prefer not to keep getting vibrations, but it would be necessary to know if someone is calling
    Thanks

    i dont know about whatsapp or other 3rd party apps 0 they may have setting options to do what you want - but for text messages and Facebook posts you can go to Settings/Sounds and set the sound for those 2 things to None

  • How can I turn off sound for a single application?

    So I'm playing iTunes while browsing the web. I come to a webpage with some really annoying Macromdia Flash content. Lots of noise. I'd like to turn the sound off for my browser (Firefox) without turning off iTunes. Similar problem occurs when I'm playing games ... I'd sometimes like to be able to play my own music instead of the game soundtrack. So I'd like to be able to tell the game to be silent without turning the sound of my Mac off completely.
    On my Windows XP machine, whatever application currently has control of the sound is the only one that can make noise. On the Mac the sounds layer together. That's much better in the case of, for example, e-mail app signaling that new mail has arrived. But it is really annoying for the two cases I mentioned above.
    Is there any way in the MacOSX operating system to control the volume for a particular application? Is there any other sound control software that folks know about that I should consider acquiring?

    Kinda funny... I found this article while searching for an answer to my question:
    http://docs.info.apple.com/article.html?artnum=93610
    At the very end of the article, it mentions the "bug" that only one app on Windows can play direct sound at a time. That's exactly the "feature" I'm looking for on the Mac. Funny how one person's bug is another's feature.

  • How can I turn off notifications for parental control time limits?

    Tears of frustration from my two boys every night as their parentally controlled hour of Minecraft is spoiled by the countdown warnings which HAVE to be clicked -  amounting to fatal hesitation in their game in progress.
    Can these time notifications be made passive - or turned off completely?
    Ideas for a workaround?

    i dont know about whatsapp or other 3rd party apps 0 they may have setting options to do what you want - but for text messages and Facebook posts you can go to Settings/Sounds and set the sound for those 2 things to None

  • How can I turn off push for sent items in an Exchange account?

    I have an Exchange account set up in iOS8.3.  I would like to set the sent folder to fetch rather than push.  And while I can go into my list of pushed mailboxes and uncheck the Sent folder, the change does not stick and goes right back to push when I go back into the settings.  This was not the case in iOS7.  I was just wondering if this was a bug in iOS8 or if this behavior is by design.  I already checked with my Exchange admins, and they stated that there is no policy preventing users from setting push and fetch as they please.  Thanks!

    But why turn off battery charging, makes no sense in this case. You either run off the battery or plug it in and run off the battery while it is charging.
    The power draw won't change appreciably.
    My bad power consumption will change
    It would seem the best strategy would be to get on with a fully charged battery plug in the laptop and let it trickle charge as you use it. Given the length of the flight this should give you the longest use with the minimum amount of draw from the seat outlet.

  • How can i turn off apps for using cellular data??????

    I. Having a problem of turning off apps from using my data. Whenever  i close it, all the apps just automatically activate them when i go back to my home screen or i go to another page. Can anybody give me a solution??? Thanks in advance!!!! >&lt;

    Yes i did that, but when i went back to my home screen all the applications that i've choose to not using data just automatically activate themselves.... ><

  • How can I turn off message sound at night?

    I have turned on notification sounds for arriving Mail messages using Rules. 
    This works fine, except that I would like to silence it at night since the sounds actually
    interrupt my sleep.
    I can do this on my Google smartphone.  Why can't I find a way to silence the notifications
    at some clock interval?
    I have looked in the Sound panel of System Preferences too, but haven't found a way to declare a silent period..
    Anyone know how to do this?

    I neglected to make it clear in my original post that this problem occurs on an iMac running MacOS 10.7.5.
    I saw similar threads referring to the iPhone,  but this is a MacOS question..

  • How can I turn off admin for Guest?

    I am the administrator and was using the guest user for my job. I was looking at to settings and saw one to use as administrator and lost all my info in guest. I just want to reset the guest user back to where it was before I stupidly played with settings. Please help.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state '''while saving your essential information'''.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Can I turn off messaging for a phone?

    My family share plan includes a phone for my elderly mother, who lives in a different state. She uses her phone occasionally to place calls, but does not text. Nonetheless, she receives a handful of spam and marketing texts every month. Is there any way I can block these so that I don't have to pay for them?
    My mom is completely tech-phobic, so I'm looking for a solution that I can implement on my end.
    Thanks in advance for any suggestions you can provide!

    Yes, if logged in as the Account Owner in your MyVerizon account, you can put a text block on her line yourself, or you can call Customer Service and have them do it.
    Customer Service:
    Dial *611 from a cell phone
    (800) 922-0204
    Monday - Sunday 6 am - 11 pm

  • Can you turn off notification for emails

    How can you turn off notification for email but leave it on for text?

    Suds57  Thanks for posting, made me look a little deeper because I kept looking in general settings not specific app settings.  Appreciate both of the responses to this!

Maybe you are looking for