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.

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?

share|improve this question

1 Answer

up vote 3 down vote accepted

If you are talking about the assembly from your other question, you can simply use wbemtest.exe:

  • Connect to Root namespace
  • Enum instances... button (Superclass name: __Namespace)
  • Delete instance named Test or MyTest

That will delete the entire namespace including all the classes you created. If you want to delete a class and leave the namespace

  • Connect to Root\Test
  • Enum classes... button (Recursive)
  • Delete the classes you want

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.