Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
354 B

  1. On Error Resume Next
  2. For Each Service in GetObject("winmgmts:{impersonationLevel=Impersonate}").ExecQuery _
  3. ("Associators of {Win32_service.Name=""NetDDE""} Where AssocClass=Win32_DependentService Role=Dependent" )
  4. WScript.Echo Service.Path_.DisplayName
  5. Next
  6. if Err <> 0 Then
  7. WScript.Echo Err.Number, Err.Description, Err.Source
  8. End if