473,661 Members | 2,448 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Stop and Restart WMI Service without System.Manageme nt

I have an application that fixes some common problems that prevent the SMS
Advanced Client from operating correctly. During this application I need to
stop the Windows Management Instrumentation (winmgmt) service, delete the
Repository directory, and then restart winmgmt which will then automatically
regenerate the Repository directory. Since I am stopping WMI I cannot use
System.Manageme nt to perform this. I have tried:

System.Diagnost ics.Process.Sta rt("CMD.EXE", "net pause winmgmt");

but this does not work if I try to use 'net pause' or 'net stop'. I have
successfully used this technique to execute other 'net' commands, but this
one will not work. The command 'net stop winmgmt' does work if I do this
manually at the cmd prompt outside of an application. Any help would be
greatly appreciated.
Jul 16 '06 #1
1 9795
System.Diagnost ics.Process.Sta rt("net", " pause winmgmt");
'net.exe' is not a command interpreter built-in it's a program.

Willy.

"Primera" <Pr*****@discus sions.microsoft .comwrote in message
news:33******** *************** ***********@mic rosoft.com...
|I have an application that fixes some common problems that prevent the SMS
| Advanced Client from operating correctly. During this application I need
to
| stop the Windows Management Instrumentation (winmgmt) service, delete the
| Repository directory, and then restart winmgmt which will then
automatically
| regenerate the Repository directory. Since I am stopping WMI I cannot use
| System.Manageme nt to perform this. I have tried:
|
| System.Diagnost ics.Process.Sta rt("CMD.EXE", "net pause winmgmt");
|
| but this does not work if I try to use 'net pause' or 'net stop'. I have
| successfully used this technique to execute other 'net' commands, but this
| one will not work. The command 'net stop winmgmt' does work if I do this
| manually at the cmd prompt outside of an application. Any help would be
| greatly appreciated.
Jul 16 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1931
by: Ger | last post by:
Hi, I have a problem with a Windows Service that I have created accessing System.Management.dll on a W2k3 environment. The Service runs fine on an XP machine but the same Service causes an error once it tries to access System.Management.Dll. The service is run using a Domain Admin acoount. The code is trying to set permissions for a file and looks like this:
2
14032
by: Paul Gronka | last post by:
I've got a VB.NET windows application (written in VS .NET 2003) that makes a call to WMI for retrieving the MAC Address from the client's PC. It works on 4 out of the 5 PC's tested so far. All the workstations are DELLs running XP SP1a with the 1.1 .NET Framework. The following line of code generates an exception on the one PC: Dim oMac As New System.Management.ManagementClass("Win32_NetworkAdapterConfiguration") The error it...
0
2273
by: Helge Jensen | last post by:
Having posted in microsoft.public.dotnet.framework.sdk and microsoft.public.dotnet.framework.wmi without receiving any response, I posthere on the off-chance that someone who isn't following those groups knows a solution. I'm using code (roughly like): using System; using System.Management; public class Foo {
3
7281
by: Husam | last post by:
Hi EveryBody In VB.Net how can I make windows application project that can start and stop the service manually Any help will be appreciated Husa
1
10248
by: lcifers | last post by:
I have an application that uses the following code to return the default printer: Dim moReturn As Management.ManagementObjectCollection Dim moSearch As Management.ManagementObjectSearcher Dim mo As Management.ManagementObject moSearch = New Management.ManagementObjectSearcher("Select * from Win32_Printer")
1
16369
by: schaf | last post by:
Hi all! I'm still trying to start/stop a service on a remote computer. (I promiss that's the last new post because of this problem from my side) My situation: I've an application running under the user paul (pw:paul123) on the computer A in the domain ABC. This application should stop / start a service, which is running on computer B (in workgroup ABCWG (NOT IN DOMAIN ABC)). On the computer B I have a user administrator (pw: adminTest)...
3
3523
by: JamesB | last post by:
I have a setup project that copies a bunch of files, a small management program, and also another .exe (that is run by a custom action) to install and start a service. Works fine first time, but the second time (i.e a user upgrades) the installer cannot overwrite the service .exe as it is in use. Is there any way to get the setup project to stop the service before copying the files etc? Thanks!
1
6755
Ravi L
by: Ravi L | last post by:
I have created a windows Service which invokes executables on remote machines, waits for it to complete and then proceeds to the next machine on the network. The Account type for the windows Service is "Network Service". For monitoring if the process is completed on the remote machine, I am using ManagementEventWatcher class. I get the following error when I start the Management event watcher object. System.Management.ManagementException:...
0
1818
Pakmarshal
by: Pakmarshal | last post by:
Hi, I have developed a windows service which records the applications (processes) that runs on the machine. To get the process start trigger i have used wmi. Obj_ManagementStartWatcher = New ManagementEventWatcher("Select * From Win32_ProcessStartTrace") AddHandler mObj_ManagementStartWatcher.EventArrived, AddressOf Proces_Arrived Obj_ManagementStartWatcher.Start() what I have noticed that if my machine RAM is almost full. and...
0
8341
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8851
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8754
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8542
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7362
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5650
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4177
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4343
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1740
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.