Is there a way to dump the DCOM settings for a given DCOM object on the command line, if the GUID is known? (Maybe using PowerShell)
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
I've never done it but it looks like you could use the comadmin class to begin exploring the administrative interfaces ( See http://msdn.microsoft.com/en-us/library/ms683573(v=vs.85) for an overview of the comadmin namespace |
|||
|
|
reg query /s ‹path›over the usual places (HKEY_CLASSES_ROOT\AppId\‹GUID›, ...) shouldn't be too hard to put together. In PSH It would be more work becauseGet-ItemPropertyto get the values doesn't have a recursive option, so a combination ofGet-ChildItem -recurseandGet-ItemPropertywould be needed. – Richard Jul 20 '12 at 9:12