active questions tagged wmi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T17:53:47Z http://stackoverflow.com/feeds/tag/wmi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1311891/using-performancecounter-through-an-asp-net-ajax-call 0 Using PerformanceCounter through an ASP.NET AJAX call Peter Bridger 2009-08-21T13:17:33Z 2009-12-11T13:49:00Z <p>In our office we have a 40" LCD mounted to the wall that runs a full screen instance of Firefox that in turn hosts a series of modules. Each of these modules is a self contained DIV with an AJAX interface (through jQuery) to the server to perform it's function.</p> <p>One of these modules monitors our servers CPU, memory and disk usage.</p> <p>On the server side we used to use <strong>WMI</strong>, but with a re-write are trying to make use of the <strong>PerformanceCounter</strong> class in .net.</p> <p>However the problem with the PerformanceCounter class is that the default IIS anonymous account don't have the rights to recieve the required information.</p> <p>I have an account with the rights to retrieve these stats and tried to use the:</p> <pre><code>&lt;identity impersonate="true" ...account details... /&gt; </code></pre> <p>However this prevented IIS from running anything, so I'm guessing the account didn't have permissions on the web server.</p> <p>Basically what I'm after is an easy way to impersonate another account when using PerformanceCounter, as I could under WMI.</p> http://stackoverflow.com/questions/1884307/application-hangs-after-a-datagridview-is-populated 0 Application hangs after a DataGridView is Populated Uros Calakovic 2009-12-10T21:51:03Z 2009-12-10T21:55:48Z <p>I have a simple form with two buttons (Start and Stop) and a DataGridView. I am trying to populate the DataGridView with the results of a WMI query that enumerates Win32_Process instances and puts all process names in the only column of the DataGridView. The code looks like this:</p> <pre><code>using System; using System.Management; using System.Windows.Forms; namespace WindowsFormsApplication10 { public partial class Form1 : Form { ManagementObjectSearcher Searcher = new ManagementObjectSearcher(); SelectQuery Query = new SelectQuery(); ManagementOperationObserver Observer = new ManagementOperationObserver(); public Form1() { InitializeComponent(); Observer.Completed += new CompletedEventHandler(Observer_Completed); Observer.ObjectReady += new ObjectReadyEventHandler(Observer_ObjectReady); Grid.ColumnCount = 1; Grid.Columns[0].Name = "Name"; } private void Start_Click(object sender, EventArgs e) { Query.QueryString = "Select * From Win32_Process"; Searcher.Query = Query; Searcher.Get(Observer); } private void Observer_Completed (object sender, CompletedEventArgs e) { Grid.Refresh(); } private void Observer_ObjectReady (object sender, ObjectReadyEventArgs e) { string [] row = new string [] {e.NewObject["Name"].ToString()}; Grid.Rows.Add(row); Grid.Refresh(); } private void stop_Click(object sender, EventArgs e) { Observer.Cancel(); } } } </code></pre> <p>When I run the code using the 'Start Debugging' option it runs fine and populates the DataGridView. One strange thing (at least to me) I noticed is that in the Observer_ObjectReady the Grid.Refresh() line is never reached. When I run the code with 'Start Without Debugging' the DataGridView is populated but the form freezes immediately after that. How can I deal with this? (Sorry if this is not enough information - I am willing to provide more if necessary, but, as you might have noticed, I don't have much experience with C# or Visual Studio).</p> http://stackoverflow.com/questions/1879528/help-needed-to-get-process-id-for-psexec-exe-in-c 2 Help needed to get Process ID for PsExec.exe in C# ?? Jon K 2009-12-10T08:38:53Z 2009-12-10T10:06:45Z <p>Hi, </p> <p>I am using the below code to invoke PsExec.exe which invokes my console application in two servers, I am not able to grab the ProcessId of the invoked processes (my console apps).</p> <p>process.StandardOutput.ReadToEnd()); is only giving me the servernames but not the complete content.</p> <p>Can you please help me to get the process id's generated by PsExec.exe on the remote servers ??</p> <pre><code> Process process = new Process(); ProcessStartInfo psi = new ProcessStartInfo(@"PsExec.exe"); psi.UseShellExecute = false; psi.RedirectStandardOutput = true; psi.RedirectStandardError = true; psi.RedirectStandardInput = true; psi.WindowStyle = ProcessWindowStyle.Minimized; psi.CreateNoWindow = true; psi.Arguments = @"-i -u Username -p xxxxxx \\server1,server2 C:\data\GridWorker\GridWorker.exe 100000"; process.StartInfo = psi; process.Start(); Console.WriteLine(process.StandardOutput.ReadToEnd()); </code></pre> http://stackoverflow.com/questions/1868385/sql-server-xquery-return-null-instead-of-empty 1 SQL Server xQuery return NULL instead of empty highphilosopher 2009-12-08T17:05:55Z 2009-12-08T17:23:18Z <p>So in this example I'm trying to return a NULL instead of an empty nvarchar for element2 and element3. I can't seem to find an answer to this anywhere, or if it's even possible. I know I can check .exists() with a nullif of Case/When, but I'd rather not make that check for the sake of performance.</p> <pre> WqlEventQuery query = new WqlEventQuery(); query.EventClassName = "__InstanceCreationEvent"; query.Condition = "TargetInstance ISA 'Win32_NTLogEvent'"; query.GroupWithinInterval = new TimeSpan(0, 0, 10); System.Collections.Specialized.StringCollection collection = new System.Collections.Specialized.StringCollection(); collection.Add("TargetInstance.SourceName"); query.GroupByPropertyList = collection; query.HavingCondition = "NumberOfEvents > 25"; </pre> http://stackoverflow.com/questions/1867595/wmi-query-to-find-pid-and-vid 0 WMI query to find PID and VID larryonoff 2009-12-08T15:10:27Z 2009-12-08T15:10:27Z <p>My task is to find devices with specified PID and VID by using WMI queries.</p> <p>I have found that Win32_PnPEntity class property PNPDeviceID can be used, which <strong>sometimes</strong> contains PID and VID.</p> <p>Maybe someone know the good way, please answer then.</p> http://stackoverflow.com/questions/1861769/better-performance-wmi-vs-snmp 0 Better Performance: WMI vs SNMP? stjowa 2009-12-07T18:00:31Z 2009-12-07T18:08:05Z <p>What has better performance under Windows for retrieving stats like CPU/Memory/Disk usage, etc.? WMI or SNMP?</p> <p>Thanks,</p> <p>Steve</p> http://stackoverflow.com/questions/1464894/windows-impersonation-for-wmi-calls-via-python 0 Windows impersonation for WMI calls via python? slypete 2009-09-23T09:17:44Z 2009-12-04T03:47:13Z <p>I'm using PyWin32 to make WMI calls to the system in python from my django web application. My goal is to allow users to add printers to the system via a web interface. To do this, I'm using win32print.AddPrinterConnection.</p> <p>This works well running the development server under my user account. I can add all the printers I want. However, eventually, this will need to run under apache which runs as the LocalSystem account.</p> <p>This is problematic for two reasons:</p> <ol> <li>The LocalSystem account has no network privileges at all, and this is a network printer. The AddPrinterConnection WMI call eventually makes a COM call that will be disallowed.</li> <li>The LocalSystem account has no access to the domain these printers are on. They require a domain account to access.</li> </ol> <p>Therefore, I've come to the conclusion that I need to impersonate domain user(s) to accomplish this task. I've done so using the code found here:</p> <p><a href="http://code.activestate.com/recipes/81402/" rel="nofollow">http://code.activestate.com/recipes/81402/</a></p> <p>This seems to work as I'm able to verify that I've successfully impersonated the calling code. Unfortunately, after impersonation I always get this error from the win32print.AddPrinterConnection API call:</p> <pre><code>Exception Type: error Exception Value: (2, 'AddPrinterConnection', 'The system cannot find the file specified.') </code></pre> <p>Do you have any idea why this may be?</p> <p>Thanks a bunch! Pete</p> <p><strong>Update</strong></p> <p>Playing around, I noticed the the AddPrinterConnection API call completes successfully if the user that I'm impersonating is currently logged into the system. Once I log that user out and retry the command while impersonating that user, I get the error stated above.</p> <p>What is going on here?</p> http://stackoverflow.com/questions/832846/how-do-i-register-as-a-real-time-etw-consumer-for-nt-kernel-events 0 How do I register as a real-time ETW consumer for NT Kernel Events? wkf 2009-05-07T04:02:21Z 2009-12-03T23:06:20Z <p>I have been able to use logman with some success to dump some kernel traces. However, I'd like to be able to programatically enable real-time consumption of kernel events (mainly thread/process creation/deletion and file I/O) in my application. What is the best approach to this task?</p> http://stackoverflow.com/questions/1662794/detecting-eject-insert-of-removeable-media 0 Detecting Eject/Insert of Removeable Media md5sum 2009-11-02T18:11:36Z 2009-12-03T05:02:24Z <p>I am working on a project in which I need to be able to detect when a CD or a USB drive is inserted or removed. I found some source code that was supposed to do this very thing, however, nothing seems to happen when I insert or eject a CD. Could someone please verify that the source is correct, and give me any pointers as to what I may have done wrong here?</p> <pre><code>public class MyWindow { ManagementEventWatcher w; private void MyWindow_Loaded(object sender, RoutedEventArgs e) { WqlEventQuery query = new WqlEventQuery("__InstanceCreationEvent", new TimeSpan(0, 0, 1), @"TargetInstance ISA 'Win32_LogicalDisk' and TargetInstance.DriveType = 2"); ConnectionOptions opt = new ConnectionOptions(); opt.EnablePrivileges = true; ManagementScope ms = new ManagementScope("root\\CIMV2", opt); w = new ManagementEventWatcher(ms, query); w.EventArrived += new EventArrivedEventHandler(w_EventArrived); w.Start(); } private void w_EventArrived(object sender, EventArrivedEventArgs e) { PropertyData pd = e.NewEvent.Properties["TargetInstance"]; } } </code></pre> <p>When I set a breakpoint on the "PropertyData pd = ..." line, it never gets hit when I eject/insert a CD. Since I've not messed with this at all, and all of the examples I've seen online simply cite this same source code (with minor variations) I'm coming to you guys for help. Thanks for any advice you can offer!</p> <p>~md5sum~</p> http://stackoverflow.com/questions/1713389/wmi-vs-windows-apis 1 WMI vs Windows APIs RRUZ 2009-11-11T06:16:39Z 2009-12-02T23:01:46Z <p>There are any advantages or disadvantages of using the <a href="http://msdn.microsoft.com/en-us/library/aa394582%28VS.85%29.aspx" rel="nofollow">WMI</a> instead of <a href="http://msdn.microsoft.com/en-us/library/aa383749%28VS.85%29.aspx" rel="nofollow">Windows API</a> to access to the information of the system? as speed, additional permissions, memory usage.</p> <p>or depends on the WMI class and how the WMI implements the access to the information?</p> http://stackoverflow.com/questions/1832586/get-link-speed-win32perfrawdatatcpipnetworkinterface 0 Get Link Speed - Win32_PerfRawData_Tcpip_NetworkInterface Milde 2009-12-02T12:21:42Z 2009-12-02T15:02:21Z <p>Hi,</p> <p>I found <a href="http://stackoverflow.com/questions/849728/determining-the-network-connection-link-speed">Determining the network connection link speed</a> and now I am trying to correlate the data from <strong>Win32_PerfRawData_Tcpip_NetworkInterface</strong> with <strong>Win32_NetworkAdapter</strong> (or <strong>Win32_NetworkAdapterConfiguration</strong>).</p> <p>On the class <code>Win32_PerfRawData_Tcpip_NetworkInterface</code> I don't see any index or unique key that I can use to reference <code>Win32_NetworkAdapterConfiguration</code> or <code>Win32_NetworkAdapter. I tried to use the </code>Name<code> in </code>Win32_PerfRawData_Tcpip_NetworkInterface<code> and </code>Win32_NetworkAdapter`, but still they look different.</p> <p>e.g.</p> <blockquote> <p>Name: Intel(R) PRO/1000 PL Network Connection</p> </blockquote> <p>vs</p> <blockquote> <p>Name: Intel[R] PRO_1000 PL Network Connection</p> </blockquote> <p>Any hints?</p> <p>Thank you in advance,</p> <p>Milde</p> <p>===</p> <p>Maybe that piece of code will help you to help me guys :)</p> <pre><code># I got the DeviceID of a NIC and use it to get the "NetConnection ID": $objWMIService = Win32::OLE-&gt;GetObject("winmgmts:\\\\$computer\\root\\CIMV2") or die "Exit: WMI connection failed. \n"; $colNicSetts = $objWMIService-&gt;ExecQuery( "SELECT * FROM Win32_NetworkAdapter Where DeviceID = '$ID'", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly); foreach my $objItem (in $colNicSetts){ $NetConnID = $objItem-&gt;{NetConnectionID}; } # =&gt; $NetConnID stores "Intel(R) PRO/1000 PL Network Connection". # Now I tried to get the Link Speed with sth. like that: $collItems = $objWMIService-&gt;ExecQuery( "SELECT * FROM Win32_PerfRawData_Tcpip_NetworkInterface Where Name = '$NetConnID'", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly); foreach my $objItem (in $collItems){ $LinkSpeed = $objItem-&gt;{CurrentBandwidth}; } # "Win32_PerfRawData_Tcpip_NetworkInterface" contains "Intel[R] PRO_1000 PL Network" Connection # "Intel(R) PRO/1000 PL Network Connection" != Intel[R] PRO_1000 PL Network Connection # =&gt; $LinkSpeed empty </code></pre> http://stackoverflow.com/questions/1830750/best-method-for-gathering-ntfs-file-access-statistics 1 Best method for gathering NTFS file access statistics? Guy Gordon 2009-12-02T05:00:24Z 2009-12-02T05:09:24Z <p>I'd like advice on choosing a method to collect file access statistics on NTFS volumes under Windows Vista and Windows 7 (32 &amp; 64-bit). I'd like to count file create/open, delete, read/write accesses for every file. </p> <p>API hooking is out. I need system-wide counts, and both 32 and 64-bit OS without mucking up the OS. Also, I don't think Shell Notification would work.</p> <p>I know I could do it by installing a file system filter driver. The Windows DDK has a samples, and that's how Mark Russinovich's FileMon (Sysinternals) works.</p> <p>I think I might also accomplish this using WMI, but I'm not sure. That is one crazy messed up API. But if Microsoft will gather the stats for me, I'll use it.</p> <p>So the question is, which method would be best &amp; why. Am I missing another possibility, and would WMI do it?</p> http://stackoverflow.com/questions/208355/why-is-enumerating-installed-msi-packages-so-slow 0 Why is enumerating installed MSI packages so slow ? blue.tuxedo 2008-10-16T12:31:40Z 2009-12-01T20:02:11Z <p>This is a follow up from this <a href="http://stackoverflow.com/questions/198087/how-do-i-list-installed-msi-from-the-command-line">question</a>.</p> <p>I'm using this slightly modified script to enumerate all installed MSI packages:</p> <pre><code>strComputer = "." Set objWMIService = GetObject("winmgmts:" &amp; _ "{impersonationLevel=impersonate}!\\" &amp; _ strComputer &amp; _ "\root\cimv2") Set colSoftware = objWMIService.ExecQuery _ ("SELECT * FROM Win32_Product") If colSoftware.Count &gt; 0 Then For Each objSoftware in colSoftware WScript.Echo objSoftware.Caption &amp; vbtab &amp; _ objSoftware.Version Next Else WScript.Echo "Cannot retrieve software from this computer." End If </code></pre> <p>What is surprising however, is its abysmal performance. Enumerating the 34 installed MSI packages on my XP box takes between 3 and 5 minutes !</p> <p>By comparison, the Linux box that sits besides is taking 7s to enumerate 1400+ RPMs... <em>sigh</em></p> <p>Any clues on this ?</p> http://stackoverflow.com/questions/1183382/function-call-could-not-be-evaluated-timed-out 0 Function call could not be evaluated timed out dotnetdev 2009-07-25T23:49:56Z 2009-12-01T03:00:15Z <p>Hi,</p> <p>I wrote some basic code in C# like so:</p> <pre><code>//Connection credentials to the remote computer - not needed if the logged in account has access ConnectionOptions oConn = new ConnectionOptions(); oConn.Username = ""; oConn.Password = ""; System.Management.ManagementScope oMs = new System.Management.ManagementScope("\\MachineX", oConn); //get Fixed disk stats System.Management.ObjectQuery oQuery = new System.Management.ObjectQuery("select FreeSpace,Size,Name from Win32_LogicalDisk where DriveType=3"); //Execute the query ManagementObjectSearcher oSearcher = new ManagementObjectSearcher(oMs,oQuery); //Get the results ManagementObjectCollection oReturnCollection = oSearcher.Get(); //loop through found drives and write out info foreach( ManagementObject oReturn in oReturnCollection ) { // Disk name Console.WriteLine("Name : " + oReturn["Name"].ToString()); // Free Space in bytes Console.WriteLine("FreeSpace: " + oReturn["FreeSpace"].ToString()); // Size in bytes Console.WriteLine("Size: " + oReturn["Size"].ToString()); } </code></pre> <p>Where the username and password are provided as the credentials for my local desktop account.</p> <p>When I get to the line where the ManagementObjectCollection type is returned from the ManagementObjectSearcher Get() method, I get an error (at runtime) saying function call timed out when I try to evaluate this line (last line before the foreach loop).</p> <p>There is no exception so no more details on the error.</p> <p>How can I fix this? The code looks fine to me? This code is on another machine so I am using the code from here (pretty much follows the same steps): <a href="http://www.csharphelp.com/archives2/archive334.html" rel="nofollow">http://www.csharphelp.com/archives2/archive334.html</a></p> <p>Thanks</p> http://stackoverflow.com/questions/1787117/deviceid-format-for-ps-2-mouse 0 deviceID format for PS/2 mouse kingas 2009-11-24T00:50:14Z 2009-11-30T22:20:00Z <p>I would like to know the DeviceID and PNPDeviceID format for PS/2 Mouse. On my system Device ID for PS/2 mouse is ACPI\PNP0F13\4&amp;1F1D307&amp;0. So is the format is ACPI\PNPxxxx{something} or some thing else? I mean is ACPI is mandatory for PS/2 mouse?</p> http://stackoverflow.com/questions/1817459/better-code-using-jacob-and-wmi 0 Better Code Using Jacob and WMI stjowa 2009-11-30T01:30:14Z 2009-11-30T01:30:14Z <p>I am using JACOB to access system information through WMI. I have not found much documentation for WMI and Jacob on the web and was wondering if I could get some help in making the code a little more efficient.</p> <p>Here is the code:</p> <pre><code>String query = "SELECT * FROM Win32_PerfFormattedData_PerfOS_Processor WHERE Name='_Total'"; Variant vCollection = mActiveXWMI.invoke("ExecQuery", new Variant(query)); EnumVariant enumVariant = new EnumVariant(vCollection.toDispatch()); Dispatch item = null; while (enumVariant.hasMoreElements()) { item = enumVariant.nextElement().toDispatch(); cpuUsage = Double.parseDouble(Dispatch.call(item, "PercentProcessorTime").toString()); } </code></pre> <p>As one can see, it doesn't seem to make much sense of looping through a collection for just one item. I would like to just query for one column in the query statement and get the result from that as quickly and efficiently as possible, with as little overhead as possible.</p> <p>Does anyone have much experience with JACOB and retrieving these values in the best way possible?</p> <p>Thanks,</p> <p>Steve</p> http://stackoverflow.com/questions/1670754/biztalk-wmi-remote-wrapper 2 BizTalk WMI Remote Wrapper rvs01 2009-11-03T23:09:10Z 2009-11-29T20:38:52Z <p>Hi,</p> <p>I'm using MgmtClassGen.exe from the .Net Framework SDK to generate some WMI wrapper classes for BizTalk artifacts like hosts, host instances, etc.</p> <p>I'm using HostSetting.GetInstances() to get the local hosts (local BizTalk Server). This works fine. I'm now looking for a way to do the same for hosts on another BizTalk machine with a different BizTalk management database name. I can't find a way to do this using the wrapper classes. I do want the wrapper classes. Any idea how to connect to BizTalk Management database with name 'MyManagementDB' on server 'ServerX'?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1813158/baseevent-child-classes-does-size-matter 0 BaseEvent child classes, does size matter? tony 2009-11-28T17:33:07Z 2009-11-28T17:33:07Z <p>Hi If I make a new class which inherits from BaseEvent can I make it as large as I like? What's the practical implications of doing so? I guess increased network traffic if using with MOM but what if I'm monitoring it for short durations of time?</p> <p>Very basic question I'm sure but I'm new to WMI (and stack overflow for that matter)</p> <p>thanks</p> http://stackoverflow.com/questions/1807271/what-are-some-common-wmi-queries 0 What are some common WMI queries mrnye 2009-11-27T07:36:55Z 2009-11-27T10:58:00Z <p>I'm building a C# monitor app which uses WMI to grab some performance details of a remote computer. What are some good WMI queries to grab helpful stats such as CPU load, RAM usage, HDD free space, etc.</p> <p>For example, you can get the CPU load from the property "LoadPercentage" with the query "SELECT * FROM Win32_Processor".</p> <p>What are some other useful properties &amp; queries?</p> http://stackoverflow.com/questions/1797128/programmatically-differentiating-between-usb-floppy-drive-and-usb-flash-drive-in 3 Programmatically differentiating between USB Floppy Drive and USB Flash Drive in Windows cafebabe 2009-11-25T14:07:30Z 2009-11-27T08:22:14Z <p>On Windows (XP-7), is there a reliable way of programatically differentiating between USB floppy drives and USB flash drives in C++?</p> <p>At the moment, I'm using WMI to get updates when new <a href="http://msdn.microsoft.com/en-us/library/aa394173%28VS.85%29.aspx" rel="nofollow"><code>Win32_LogicalDisk</code></a> instances are detected, and then using the DriveType attribute of the LogicalDisk object to figure out a basic type. This works quite well, except that floppy drives and USB flash drives are both of DriveType <code>DRIVE_REMOVABLE</code>, so to differentiate between those (floppy vs. flash), I'm using the <a href="http://msdn.microsoft.com/en-us/library/aa510113.aspx" rel="nofollow"><code>IOCTL_STORAGE_GET_HOTPLUG_INFO</code></a> interface to figure out if the device is hotpluggable, and was working on the principal that that meant it was a flash drive and not a floppy. Again, I think this works quite well (if a little inefficient, using both the WDK API and WMI to get info ) in the case of internal floppy drives, but unfortunately USB Floppy drives are also hotpluggable a lot of the time, so there is no clear way to differentiate between flash and USB floppy drives, that I can see. I know there are properties that <em>may</em> work, like checking if its mapped to the reserved drives A: or B (edit: only relevant if the machine definitely has a floppy drive - see <a href="http://support.microsoft.com/kb/307844" rel="nofollow">MS-KB: How to change drive letter assignments in Windows XP</a>), or looking at the description, but I'd really like something a bit more reliable.</p> <p>Sorry about the long explanation, but just wanted to be clear! Thanks</p> http://stackoverflow.com/questions/1797758/check-for-daylight-saving-time-with-wmi-on-vista-win7 0 Check for daylight saving time with WMI on Vista/Win7 Piskvor 2009-11-25T15:36:18Z 2009-11-26T17:33:10Z <p>How do I find out if the computer I'm on has daylight saving time in effect? (preferably using WMI)</p> <p>According to <a href="http://gallery.technet.microsoft.com/scriptcenter/en-us/86090fa4-e409-4462-ac6c-4bc47f128d23" rel="nofollow">this article at TechNet</a>, I could query <code>SELECT DaylightInEffect FROM Win32_ComputerSystem</code>, but the property <code>DaylightInEffect</code> is not supported on Vista or Win7. As my program will run on various systems (XP, Vista, 7), I would appreciate some portable way of finding out.</p> http://stackoverflow.com/questions/587498/hyper-v-wmi-programming-question 0 Hyper-V/WMI programming Question James 2009-02-25T19:41:51Z 2009-11-26T12:00:06Z <p>I've looked at several objects in the "root\virtualization" name space but I have not been able to find where Hyper-V stores the path to the config file for a given virtual machine. I need to get this file path programmatically or at least just the home path of a given virtual machine would be fine as well. What WMI object and field stores the path to a given virtual machine (hint it's not Msvm_ComputerSystem) ?</p> http://stackoverflow.com/questions/1802658/edit-dmi-manufacturer-install-date-part-number-programmatically 0 Edit DMI (Manufacturer, install date, part number ) programmatically Ivri 2009-11-26T09:46:44Z 2009-11-26T11:42:36Z <p>Hi! I need to automate computer assembly process and that's why I wanna know if there is any way to edit DMI data: manufacturer name, install date, part number and serial number (for the whole system block). How can I do it? Using WMI the only thing I can do is to check them, but not to edit.</p> http://stackoverflow.com/questions/1770504/wmi-poor-performace 0 WMI Poor Performace DxCK 2009-11-20T13:44:04Z 2009-11-25T20:01:35Z <p>Hi</p> <p>I wrote a code in C# that maps logical drives to their physical disks, using WMI (System.Management). The code working perfectly, but slow like hell. In my machine (Windows 7 x64, Dual-Core with 3 GB RAM) it runs as least 1 second. 1 second is too slow for me, even 0.1 is more than enough to accomplish. I more than sore that this functionallity can be done in less than 0.1 second.</p> <p>Is there any Win32API functions that can help?</p> <p>Any other suggestions?</p> <p>this is my code so far:</p> <pre><code>List&lt;Dictionary&lt;string, string&gt;&gt; results = new List&lt;Dictionary&lt;string, string&gt;&gt;(); using (ManagementClass diskDriveClass = new ManagementClass(@"Win32_Diskdrive")) { using (ManagementObjectCollection diskDrives = diskDriveClass.GetInstances()) { foreach (ManagementObject diskDrive in diskDrives) { string deviceId = (string)diskDrive["DeviceId"]; Dictionary&lt;string, string&gt; logicalDisksResults = new Dictionary&lt;string, string&gt;(); Trace.WriteLine(deviceId); using (ManagementObjectCollection relatedPartitions = diskDrive.GetRelated("Win32_DiskPartition")) { foreach (ManagementObject relatedPartition in relatedPartitions) { Trace.WriteLine("-\t" + relatedPartition["Name"]); using (ManagementObjectCollection relatedLogicalDisks = relatedPartition.GetRelated("Win32_LogicalDisk")) { foreach (ManagementBaseObject relatedLogicalDisk in relatedLogicalDisks) { Trace.WriteLine("\t-\t" + relatedLogicalDisk["Name"] + " " + relatedLogicalDisk["FileSystem"]); logicalDisksResults.Add((string)relatedLogicalDisk["Name"], (string)relatedLogicalDisk["FileSystem"]); } } } } results.Add(logicalDisksResults); } } } </code></pre> http://stackoverflow.com/questions/1797991/wmi-win32-classes-on-x64 0 Wmi win32 classes on x64 Ivri 2009-11-25T16:06:47Z 2009-11-25T16:10:14Z <p>I'm developing .net application using wmi and win32_* WQL queries. <a href="http://msdn.microsoft.com/en-us/library/aa394084%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa394084%28VS.85%29.aspx</a> Will such application work on x64?</p> http://stackoverflow.com/questions/1795679/determine-users-accessing-a-shared-folder-using-powershell 0 Determine Users Accessing a Shared Folder Using PowerShell MagicAndi 2009-11-25T09:22:00Z 2009-11-25T10:28:50Z <p>Hi,</p> <p>I need to determine the users/sessions accessing a shared folder on a Windows XP (SP2) machine using a PowerShell script (v 1.0). This is the information displayed using Computer Management | System Tools | Shared Folders | Sessions. Can anyone give me pointers on how to go about this?</p> <p>I'm guessing it will require a WMI query, but my initial search online didn't reveal what the query details will be. </p> <p>Thanks, MagicAndi</p> http://stackoverflow.com/questions/473945/starting-a-program-on-a-remote-machine-in-wmi-but-also-opening-the-apps-window 0 starting a program on a remote machine in wmi, but also opening the apps window (in c#) jason baisden 2009-01-23T18:25:29Z 2009-11-24T22:36:54Z <p>I've browsed page after page after page of data on the web and everyone seems to say that you cannot have an executable remotely execute an application on another machine via WMI and have the window of that application display.</p> <p>Does anyone know a way around this?</p> <p>I have tried created 2 executables. 1 executable uses the Process class and simply starts an executable. Here's the code:</p> <pre><code> class Program { static void Main( string[ ] args ) { ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.CreateNoWindow = false; startInfo.UseShellExecute = false; startInfo.FileName = "C:\\folder\\Mexe.exe"; startInfo.WindowStyle = ProcessWindowStyle.Normal; //p.MachineName="server"; //p.Start(startInfo); Process p = Process.Start( startInfo ); } } </code></pre> <p>This executable resides on the remote machine.</p> <p>I have another executable that will be on the client's machine. This exe uses WMI in C# to remotely execute the application on the server via the commandline. I get a return code of 0. Nothing happens on the server.</p> <p>Any ideas what I might be doing wrong?</p> <p>I've also thought about creating a scheduled task in task scheduler on the server, but leaving the task disabled.</p> <p>Anyone have an idea what the C# code would be to have a WMI application kick off this task? Would there be a way to discern whether the task/application started finished?</p> http://stackoverflow.com/questions/1780066/python-windows-service-problems-works-when-using-debug-argument-but-not-while-s 0 Python Windows Service Problems - Works when using debug argument but not while started as a service? AWainb 2009-11-22T21:30:55Z 2009-11-24T09:37:43Z <p>Hello all, hopefully someone here can shed some light on my issue :D</p> <p>I've been creating a Windows XP service in python that is designed to monitor/repair selected Windows/Application/Service settings, atm I have been focusing on default DCOM settings.</p> <p>The idea is to backup our default configuration within another registry key for reference. Every 30 minutes (currently every 30 seconds for testing) I would like the service to query the current windows default DCOM settings from the registry and compare the results to the default configuration. If discrepancies are found, the service will replace the current windows settings with the custom configuration settings. </p> <p>I have already created/tested my class to handle the registry checking/repairing and so far it runs flawlessly.. Until I compile it to an exe and run it as a service.</p> <p>The service itself starts up just fine and it seems to loop every 30 seconds as defined, but my module to handle the registry checking/repairing does not seem to get run as specified.</p> <p>I created a log file and was able to obtain the following error:</p> <p>Traceback (most recent call last):<br> File "DCOMMon.pyc", line 52, in RepairDCOM<br> File "DCOMMon.pyc", line 97, in GetDefaultDCOM<br> File "pywmi.pyc", line 396, in <strong>call</strong><br> File "pywmi.pyc", line 189, in handle_com_error<br> x_wmi: -0x7ffdfff7 - Exception occurred.<br> Error in: SWbemObjectEx<br> -0x7ffbfe10 - </p> <p>When I stop the service and run the exe manually, specifying the debug argument: <strong>DCOMMon.exe debug</strong>, the service starts up and runs just fine, performing all tasks as expected. The only differences that I can see is that the service starts the process as the SYSTEM user instead of the logged on user which leads me to believe (just guessing here) that it might be some sort of missed permission/policy for the SYSTEM user? I have tested running the service as another user but there was no difference there either. </p> <p>Other thoughts were to add the wmi service to the dependencies of my service but truthfully I have no idea what that would do :P This is the first time I've attempted to create a windows service in python, without using something like srvany.exe. </p> <p>I have spent the better part of last night and today trying to google around and find some information regarding py2exe and wmi compatibility but so far the suggestions I have found have not helped solve the above issue.</p> <p>Any suggestions would be appreciated.</p> <p>PS: Don't hate me for the poor logging, I cut/pasted my logger from a different scripts and I have not made the appropriate changes, it might double up each line :P. The log file can be found here: "%WINDIR%\system32\DCOMMon.log"</p> <p><strong>UPDATE</strong></p> <p>I have tried to split this project up into two exe files instead of one. Let the service make and external call to the other exe to run the wmi registry portion. Again, when running with the <strong>debug</strong> arg it works just fine, but when I start it as a service it logs the same error message. More and more this is starting to look like a permission issue an not a program issue :(</p> <p><strong>UPDATE</strong></p> <p><strong>DCOMMon.py - Requires pywin32, wmi (renamed to pywmi),</strong></p> <pre><code># DCOMMon.py import win32api, win32service, win32serviceutil, win32event, win32evtlogutil, win32traceutil import logging, logging.handlers, os, re, sys, thread, time, traceback, pywmi # pywmi == wmi module renamed as suggested in online post import _winreg as reg DCOM_DEFAULT_CONFIGURATION = ["EnableDCOM", "EnableRemoteConnect", "LegacyAuthenticationLevel", "LegacyImpersonationLevel", "DefaultAccessPermission", "DefaultLaunchPermission", "MachineAccessRestriction", "MachineLaunchRestriction"] DCOM_DEFAULT_ACCESS_PERMISSION = [1, 0, 4, 128, 92, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 2, 0, 72, 0, 3, 0, 0, 0, 0, 0, 24, 0, 7, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0, 0, 0, 20, 0, 7, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0, 0, 0, 20, 0, 7, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0] DCOM_DEFAULT_LAUNCH_PERMISSION = [1, 0, 4, 128, 132, 0, 0, 0, 148, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 2, 0, 112, 0, 5, 0, 0, 0, 0, 0, 24, 0, 31, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0, 0, 0, 20, 0, 31, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0, 0, 0, 20, 0, 31, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 20, 0, 31, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 5, 4, 0, 0, 0, 0, 0, 20, 0, 31, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 5, 18, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0] DCOM_MACHINE_ACCESS_RESTRICTION = [1, 0, 4, 128, 68, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 2, 0, 48, 0, 2, 0, 0, 0, 0, 0, 20, 0, 3, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0, 0, 0, 20, 0, 7, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0] DCOM_MACHINE_LAUNCH_RESTRICTION = [1, 0, 4, 128, 72, 0, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 2, 0, 52, 0, 2, 0, 0, 0, 0, 0, 24, 0, 31, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0, 0, 0, 20, 0, 31, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 5, 32, 0, 0, 0, 32, 2, 0, 0] COMPUTER = os.environ["COMPUTERNAME"] REGISTRY = pywmi.WMI(COMPUTER, namespace="root/default").StdRegProv LOGFILE = os.getcwd() + "\\DCOMMon.log" def Logger(title, filename): logger = logging.getLogger(title) logger.setLevel(logging.DEBUG) handler = logging.handlers.RotatingFileHandler(filename, maxBytes=0, backupCount=0) handler.setLevel(logging.DEBUG) formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s") handler.setFormatter(formatter) logger.addHandler(handler) return logger def LogIt(filename=LOGFILE): #try: # if os.path.exists(filename): # os.remove(filename) #except: # pass log = Logger("DCOMMon", filename) tb = str(traceback.format_exc()).split("\n") log.error("") for i, a in enumerate(tb): if a.strip() != "": log.error(a) class Monitor: def RepairDCOM(self): try: repaired = {} dict1 = self.GetDefaultDCOM() dict2 = self.GetCurrentDCOM() compared = self.CompareDCOM(dict1, dict2) for dobj in DCOM_DEFAULT_CONFIGURATION: try: compared[dobj] if dobj == "LegacyAuthenticationLevel" or dobj == "LegacyImpersonationLevel": REGISTRY.SetDWORDValue(hDefKey=reg.HKEY_LOCAL_MACHINE, sSubKeyName="SOFTWARE\\Microsoft\\Ole", sValueName=dobj, uValue=dict1[dobj]) elif dobj == "DefaultAccessPermission" or dobj == "DefaultLaunchPermission" or \ dobj == "MachineAccessRestriction" or dobj == "MachineLaunchRestriction": REGISTRY.SetBinaryValue(hDefKey=reg.HKEY_LOCAL_MACHINE, sSubKeyName="SOFTWARE\\Microsoft\\Ole", sValueName=dobj, uValue=dict1[dobj]) elif dobj == "EnableDCOM" or dobj == "EnableRemoteConnect": REGISTRY.SetStringValue(hDefKey=reg.HKEY_LOCAL_MACHINE, sSubKeyName="SOFTWARE\\Microsoft\\Ole", sValueName=dobj, sValue=dict1[dobj]) except KeyError: pass except: LogIt(LOGFILE) def CompareDCOM(self, dict1, dict2): compare = {} for (key, value) in dict2.iteritems(): try: if dict1[key] != value: compare[key] = value except KeyError: compare[key] = value return compare def GetCurrentDCOM(self): current = {} for name in REGISTRY.EnumValues(hDefKey=reg.HKEY_LOCAL_MACHINE, sSubKeyName="SOFTWARE\\Microsoft\\Ole")[1]: value = REGISTRY.GetStringValue(hDefKey=reg.HKEY_LOCAL_MACHINE, sSubKeyName="SOFTWARE\\Microsoft\\Ole", sValueName=str(name))[1] if value: current[str(name)] = str(value) else: value = REGISTRY.GetDWORDValue(hDefKey=reg.HKEY_LOCAL_MACHINE, sSubKeyName="SOFTWARE\\Microsoft\\Ole", sValueName=str(name))[1] if not value: value = REGISTRY.GetBinaryValue(hDefKey=reg.HKEY_LOCAL_MACHINE, sSubKeyName="SOFTWARE\\Microsoft\\Ole", sValueName=str(name))[1] current[str(name)] = value return current def GetDefaultDCOM(self): default = {} # Get Default DCOM Settings for name in REGISTRY.EnumValues(hDefKey=reg.HKEY_CURRENT_USER, sSubKeyName="Software\\DCOMMon")[1]: value = REGISTRY.GetStringValue(hDefKey=reg.HKEY_CURRENT_USER, sSubKeyName="Software\\DCOMMon", sValueName=str(name))[1] if value: default[str(name)] = str(value) else: value = REGISTRY.GetDWORDValue(hDefKey=reg.HKEY_CURRENT_USER, sSubKeyName="Software\\DCOMMon", sValueName=str(name))[1] if not value: value = REGISTRY.GetBinaryValue(hDefKey=reg.HKEY_CURRENT_USER, sSubKeyName="Software\\DCOMMon", sValueName=str(name))[1] default[str(name)] = value return default class DCOMMon(win32serviceutil.ServiceFramework): _svc_name_ = "DCOMMon" _svc_display_name_ = "DCOM Monitoring Service" _svc_description_ = "DCOM Monitoring Service" _svc_deps_ = ["EventLog"] def __init__(self, args): win32serviceutil.ServiceFramework.__init__(self, args) self.hWaitStop = win32event.CreateEvent(None, 0, 0, None) self.isAlive = True def SvcDoRun(self): import servicemanager servicemanager.LogMsg(servicemanager.EVENTLOG_INFORMATION_TYPE, servicemanager.PYS_SERVICE_STARTED, (self._svc_name_, ': DCOM Monitoring Service - Service Started')) self.timeout=30000 # In milliseconds while self.isAlive: rc = win32event.WaitForSingleObject(self.hWaitStop, self.timeout) if rc == win32event.WAIT_OBJECT_0: break else: servicemanager.LogMsg(servicemanager.EVENTLOG_INFORMATION_TYPE, servicemanager.PYS_SERVICE_STARTED, (self._svc_name_, ': DCOM Monitoring Service - Examining DCOM Configuration')) Monitor().RepairDCOM() servicemanager.LogMsg(servicemanager.EVENTLOG_INFORMATION_TYPE, servicemanager.PYS_SERVICE_STOPPED, (self._svc_name_, ': DCOM Monitoring Service - Service Stopped')) return def SvcStop(self): self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING) win32event.SetEvent(self.hWaitStop) LOG.close() self.isAlive = False return #def ctrlHandler(ctrlType): # return True if __name__ == '__main__': # win32api.SetConsoleCtrlHandler(ctrlHandler, True) #print Monitor().RepairDCOM() win32serviceutil.HandleCommandLine(DCOMMon) </code></pre> <p><strong>DCOMMon_setup.py - Requires py2exe (self executable, no need for py2exe arg)</strong></p> <pre><code># DCOMMon_setup.py (self executable, no need for py2exe arg) # Usage: # DCOMMon.exe install # DCOMMon.exe start # DCOMMon.exe stop # DCOMMon.exe remove # DCOMMon.exe debug # you can see output of this program running python site-packages\win32\lib\win32traceutil try: # (snippet I found somewhere, searching something??) # if this doesn't work, try import modulefinder import py2exe.mf as modulefinder import win32com, sys for p in win32com.__path__[1:]: modulefinder.AddPackagePath("win32com", p) for extra in ["win32com.shell"]: #,"win32com.mapi" __import__(extra) m = sys.modules[extra] for p in m.__path__[1:]: modulefinder.AddPackagePath(extra, p) except ImportError: print "NOT FOUND" from distutils.core import setup import py2exe, sys if len(sys.argv) == 1: sys.argv.append("py2exe") #sys.argv.append("-q") class Target: def __init__(self, **kw): self.__dict__.update(kw) # for the versioninfo resources self.version = "1.0.0.1" self.language = "English (Canada)" self.company_name = "Whoever" self.copyright = "Nobody" self.name = "Nobody Home" myservice = Target( description = 'DCOM Monitoring Service', modules = ['DCOMMon'], cmdline_style='pywin32' #dest_base = 'DCOMMon' ) setup( options = {"py2exe": {"compressed": 1, "bundle_files": 1, "ascii": 1, "packages": ["encodings"]} }, console=["DCOMMon.py"], zipfile = None, service=[myservice] ) </code></pre> http://stackoverflow.com/questions/1476018/how-to-know-the-cpu-and-memory-usage-of-a-process-with-wmi 0 How to know the CPU and memory usage of a process with WMI? luc 2009-09-25T08:06:59Z 2009-11-24T01:01:14Z <p>I am using a wmi and python in order to track the behavior of the process running on my machine.</p> <pre> from win32com.client import GetObject wmi = GetObject('winmgmts:') processes = wmi.InstancesOf('Win32_Process') for process in processes: print process.ProcessId, process.Name </pre> <p>The Win32_Process has a <a href="http://msdn.microsoft.com/en-us/library/aa394372%28VS.85%29.aspx" rel="nofollow">lot of information</a> but I don't see anything for tracking the CPU consumption. The window Task Monitor is showing this info so I think it is possible to get it.</p> <p>I thought that the WorkingSetSize property is giving the memory consumption of the process but I can see different value from what is given by TaskMonitor.</p> <p>How to get these 2 values for a given process?</p> <p>Update: Task Monitor shows the PrivateWorkingSetSize which seems to be not available with the Win32_Process. What is the difference betwen WorkingSetSize and PrivateWorkingSetSize?</p> http://stackoverflow.com/questions/1773171/starting-application-pools-with-wmi-adsi-c-hangs-immediately-after-reboot 0 Starting application pools with WMI\ADSI (C#) hangs immediately after reboot Omri 2009-11-20T20:52:34Z 2009-11-23T01:33:17Z <p>Hi, </p> <p>I have encountered a strange situation where starting an application pool from a windows service (written in C#, set to "Automatic" startup) using WMI or ADSI immediately after the server reboots hangs. </p> <p>I'll describe the issue: </p> <p>We are developing a large application (Windows 2003 Server SP2, IIS 6.0) which contains the following main processes (these processes are invoked &amp; initialized using a windows service startup procedure when the application is started): </p> <p>1) XServer1.exe, XServer2.exe - These processes are native COM-Exe servers, contains some logics, but mainly supplies COM objects to other processes via DCOM (mainly .NET2COM interOp calls &amp; pure COM calls). For example, some of the classic ASP "Application Scope static objects" (w3wp.exe) are COM objects which "live" inside these processes.</p> <p>2) dllhost.exe - this is a COM+ application. Some of our DLLs are loaded into this process which acts as a "state server" (the same idea as the ASP.NET out-of-proc sessions server, but for classic ASP pages). </p> <p>3) 3 different IIS application pools (we'll call them appPool1\2\3) - containers of our ASP pages, ASP.NET pages, WCF services etc. Code (native C++ COM dlls &amp; C#) in these application pools (w3wp.exe's) usually makes DCOM calls to the processes described in (1) &amp; (2). Only appPool1 can be configured as a Web Garden. </p> <p>In order to Start\Stop our application we have written a windows Service (C#) which controls these procedures. Our service process is called XWinService.exe. The service depends on the following windows services (the list began with the first 4 services, ongoing tries made the list like this...): </p> <p>W3SVC </p> <p>aspnet_state </p> <p>COMSysApp </p> <p>DcomLaunch </p> <p>winmgmt </p> <p>lanmanserver </p> <p>lanmanworkstation </p> <p>seclogon </p> <p>Browser </p> <p>TermService </p> <p>The summary of the Stop procedure of the application (implemented by the service): </p> <p>1) Stop all 3 IIS application pools (appPool1\2\3) - This is done to prevent w3wp.exe processes to jump alive when the application is shut-down. This is implemented with WMI from C# (system.Management.dll) </p> <p>2) Stop XServer1\2.exe </p> <p>3) Stop the COM+ application (dllhost.exe). </p> <p>The summary of the Start procedure of the application (implemented by the service): </p> <p>1) Execute the Stop procedure - This ensures that no HTTP hits will wake a w3wp.exe process before it's time. </p> <p>2) Invokes &amp; Initializes the XServer1\2.exe COM-Exe servers - Initialization is required prior to any w3wp.exe invocation. Only after some object had been initialized, w3wp.exe's can access these servers. This is implemented by .NET2COM InterOp (eventually DCOM). </p> <p>3) Invokes &amp; initialized the dllhost.exe (COM+ application) process - This is implemented by the ComAdmin Catalog API (C#). </p> <p>4) Starts our 3 application pools - This allows incoming HTTP hits to wake w3wp.exe processes and start serving requests. </p> <p>This is the C# code which is responsible to start\stop application pools (WMI). This code runs in our service processes (XWinService.exe): </p> <pre><code> ConnectionOptions co = new ConnectionOptions(); ManagementScope scope = new ManagementScope(@"\\localhost\root\MicrosoftIISV2", co); foreach (string appPool in AppPools) { string objPath = string.Format("IISApplicationPool.Name='W3SVC/AppPools/{0}'", appPool); using (ManagementObject mc = new ManagementObject(objPath)) { mc.Scope = scope; if (Operation.ToLower() == "start") { mc.InvokeMethod("Start", null, null); // ### The problematic line of code ### } else if (Operation.ToLower() == "stop") { mc.InvokeMethod("Stop", null, null); } else if (Operation.ToLower() == "recycle") { mc.InvokeMethod("Recycle", null, null); } } </code></pre> <p>}</p> <p> </p> <p><strong>Now the issue:</strong> </p> <p>Prior to rebooting the server, starting the service manually (from the services.msc tool) succeeds without any problems. also, stopping it is OK. We have set the service to start "Automatic", that is, will start when the server (Win2K3 SP2) starts and rebooted the server. When the server started (the login screen appeared), our service was "stuck" (status = "Starting") and will NEVER (it hang for 2 days!) start. </p> <p>Analyzing the processes reveled the following: </p> <p>1) The XWinService.exe process was stuck on the problematic line of code (### above ###). This hanged for 2 days until we killed the process. Please note: Shutting down the application pools (the Start procedure begins with a Stop procedure) did not hang! </p> <p>2) From a DUMP file taken (with DebugDiag tool) from XWinService.exe during this "hang" we can see the thread which is waiting. This is the (native) stack trace of it: </p> <pre><code> Thread 6 - System ID 2784 Entry point mscorwks!Thread::intermediateThreadProc Create time 11/19/2009 1:40:05 PM Time spent in user mode 0 Days 00:00:00.078 Time spent in kernel mode 0 Days 00:00:00.781 This thread is making a COM call to multi-threaded apartment (MTA) in process 884 Function Source ntdll!KiFastSystemCallRet ntdll!NtRequestWaitReplyPort+c rpcrt4!LRPC_CCALL::SendReceive+230 rpcrt4!I_RpcSendReceive+24 ole32!ThreadSendReceive+138 ole32!CRpcChannelBuffer::SwitchAptAndDispatchCall+112 ole32!CRpcChannelBuffer::SendReceive2+d3 ole32!CAptRpcChnl::SendReceive+ab ole32!CCtxComChnl::SendReceive+1a9 rpcrt4!NdrProxySendReceive+43 rpcrt4!NdrClientCall2+206 rpcrt4!ObjectStublessClient+8b rpcrt4!ObjectStubless+f …. </code></pre> <p>This thread is calling (via DCOM) a component in process 884, which is svchost.exe, running the following services: AeLookupSvc, AudioSrv, Browser, CryptSvc, dmserver, EventSystem, helpsvc, lanmanserver, lanmanworkstation, Schedule, seclogon, SENS, ShellHWDetection, TrkWks, winmgmt, wuauserv, WZCSVC. </p> <p>As you can see the "winmgmt" service (responsible for WMI) is running in this process and our service depends on it, so our service will start after winmgmt is started (the same for IIS W3SVC service).</p> <p>The svchost.exe process (884) was dumped and we can see a thread (waiting for a DCOM call to end) accessing process 2880 which is - wmiprvse.exe (I guess this is the WMI server. Don't know if it's relevent, but there were 2 instances of this process). This is the native call stack of the thread (in svchost.exe):</p> <pre><code> Thread 48 - System ID 3816 Entry point wbemcore!CCoreQueue::_ThreadEntry Create time 11/19/2009 1:40:56 PM Time spent in user mode 0 Days 00:00:00.00 Time spent in kernel mode 0 Days 00:00:00.00 This thread is making a COM call to multi-threaded apartment (MTA) in process 2880 Function Source ntdll!KiFastSystemCallRet ntdll!NtRequestWaitReplyPort+c rpcrt4!LRPC_CCALL::SendReceive+230 rpcrt4!I_RpcSendReceive+24 ole32!ThreadSendReceive+138 ole32!CRpcChannelBuffer::SwitchAptAndDispatchCall+112 ole32!CRpcChannelBuffer::SendReceive2+d3 ole32!CAptRpcChnl::SendReceive+ab ole32!CCtxComChnl::SendReceive+1a9 … </code></pre> <p>3) Setting our service to "Manual" and starting it (manually - after logging into the server or starting it remotely from a different server immediately after reboot) is OK - nothing hangs. </p> <p>4) We deleted our service (from the registry!) and placed a batch file in the windows "startup" folder. This batch files calls the service's code, but runs it as a normal C# executable. After server reboot, it also hang on the same problematic line of code (again... for 2 days until we killed it). </p> <p>5) Using ADSI (System.DirectoryServices) instead of WMI had the same results (starting the application pools hanged!). </p> <p>We have been digging into this for the past 2 weeks... </p> <p>My questions: </p> <p>========== </p> <p>1) Did anyone encounter the same issue? </p> <p>2) Does anyone know why it hangs? Is there any additional service dependency we should take in mind? </p> <p>3) Does anyone have a solution for this issue? </p> <p>4) Why is this happening after a reboot only when the service to set to "Automatic" startup? If we do it manually - everything is Ok!</p> <p>Thanks in advanced,</p> <p>Omri</p> <p><strong>*</strong> Small update:** </p> <p>We have noticed that on VMs (VMware stations) the service hangs after reboot for an average of ~40min, until it starts (note: it never fails to start, but 40min is way too much). An event log message is recorded in the system event log stating that our service hanged for more than 16min (source: Service Control Manager, Event ID: 7044). </p> <p>On "regular" machines (real metals) the average time until the service starts is ~55 hours!!! Again, an event log entry is recorded as described above.</p> <p>The avergae values were calculated from 10 differens VMs &amp; 8 different "real" servers.</p>