I would like to disable the Action Center messages in Windows. I know where the registry holds the values for these checks but those are machine specific. And I know that I can disable the complete service. But I do not want to disable the service, I only want to not show the notifications/alerts/messages.
To see these options I am talking about goto: cmd.exe -> RunDll32.exe shell32.dll,Control_RunDLL wscui.cpl
The security center will be started and click on the left on "Change Action Center settings".
Now I have referenced "C:\Windows\System32\wscui.cpl" in my C# project and added
using SecurityCenterAdmin;
I see I can create this object
SecurityCenterAdmin.WscAdmin admin = new WscAdmin();
admin.DoModalSecurityAction();
But I can find no references about it. Searching on Google for "WscAdmin msdn" or "SecurityCenterAdmin" yields no results.
Any hints?
Thanks in advance. Mike