Jump to content

Dienste bei Windows 2000 Advanced Server


Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Recommended Posts

Posted

Tach auch,

 

habe folgendes Problem:

 

Ich habe in meiner Dienste liste noch Dienste stehen von Programmen die ich

nicht mehr benutze.

 

Wie bekommt man die aus der Liste der Services wieder raus.

Hat einer ne Idee ??

 

 

Vielen Danke & Gruß

 

Deathstar

Posted

Dienste deaktivieren und in Registry unter HKLM\services löschen. Aber sehr Vorsichti!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Und wenn du keine Erfahrungen mit Registry hast, lieber lassen!!!!!

Posted

wieder einmal ein zitat aus meinem ms-lieblingstool ;)

Remove a Service

 

Description

Removes a hypothetical service named DbService.

 

Script Code

 

strComputer = "."

Set objWMIService = GetObject("winmgmts:" _

& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set colListOfServices = objWMIService.ExecQuery _

("Select * from Win32_Service Where Name = 'DbService'")

For Each objService in colListOfServices

objService.StopService()

objService.Delete()

Next

 

The System Administration Scripting Guide, part of the Windows .NET Server Resource Kit. For more information, contact scripter@microsoft.com.

  • 4 months later...
Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...