I've published schema, and no longer have the dll's that contained the wmi provider that the schema was published from. How can I remove the schema?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
If you are talking about the assembly from your other question, you can simply use wbemtest.exe:
That will delete the entire namespace including all the classes you created. If you want to delete a class and leave the namespace
If there are multiple machines this can be automated using WMI scripting library or System.Management. With MOF you can use #pragma deleteclass. If the schema was created with #pragma autorecover you need to remove the entry from HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WBEM\CIMOM\autorecover mofs |
|||
|
|