I am trying to unjoin a machine from the domain and attempted with the following code<br><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">import wmi</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">wm = wmi.WMI()</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">wm.Win32_ComputerSystem.UnjoinDomainOrWorkgroup(2, &#39;ADMINPASSWORD&#39;, &#39;DOMAIN\ADMINUSER&#39;)</span><br>
<br><span style="font-family: courier new,monospace;">Traceback (most recent call last):</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  File &quot;&lt;stdin&gt;&quot;, line 1, in ?</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">  File &quot;C:\Python24\Lib\site-packages\wmi.py&quot;, line 396, in __call__</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    handle_com_error (error_info)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">  File &quot;C:\Python24\Lib\site-packages\wmi.py&quot;, line 189, in handle_com_error</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    raise x_wmi, &quot;\n&quot;.join (exception_string)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">wmi.x_wmi: -0x7ffdfff7 - Exception occurred.</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  Error in: SWbemObjectEx</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">  -0x7ffbefd1 - Invalid method Parameter(s)</span><br><br>I dont understand why its calling these Invalid method parameters. All that it wants is an (Int, Str, Str) when using thru Python otherwise it is (Str, Str, int) as described here. <a href="http://msdn.microsoft.com/en-us/library/aa393942(VS.85).aspx">http://msdn.microsoft.com/en-us/library/aa393942(VS.85).aspx</a><br>
<br>Any pointer? <br>Thanks,<br>Gowtham N<br><br>