Change DCOM config security settings using Powershell

Looks like you would do it using WMI. Get an instance of: Win32_DCOMApplicationSetting like this: $dcom = Get-WMIObject -Class Win32_DCOMApplicationSetting -Filter ‘Description=”Something”‘ Now you have access to the SetAccessSecurityDescriptor and SetLaunchSecurityDescriptor methods. From: http://msdn.microsoft.com/en-us/library/windows/desktop/aa384905(v=vs.85).aspx DCOM applications DCOM application instances have several security descriptors. Starting with Windows Vista, use methods of the Win32_DCOMApplicationSetting class to get … Read more