Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Hi,

Folgende Aufgabe:

Ich habe einen Array, in dem Service-namen drin stehen. Nun möchte ich per Schleife diesen Array durchlaufen und eine WMI-Abfrage starten, die prüft ob der Service gestartet wurde.

Hier mal mein Aufruf (ohne Schleife):


$objSoftware = $colSoftware[2]
$colItems= get-wmiobject -class "win32_service" -namespace "root\cimv2" -filter "Name='$objSoftware'"
[/PHP]

Allerdings kriege ich folgenden Fehler: "Get-WmiObject : Die Anfrage ist ungültig."

Könnt ihr mir sagen was an dem Code falsch ist?

Für alle die es interessiert, ich habe es nun mit Hilfe des get-service cmdlets gelöst:


$colSoftware=@("C:\Program Files\NetIQ\AppManager\bin\netiqccm.exe", "NetIQ", "C:\ZisService\ZEXECD.EXE","ZEXECD")
for($i = 1; $i -lt $colSoftware.length; $i = $i + 2)
{
$servObj = Get-Service | Where { $_.Name -eq $colSoftware[$i] }
if( $servObj.Status -like "")
{
write-host "! " $colSoftware[$i] " wurde nicht gefunden"
}
else
{
write-host $servObj.Status,"",$colSoftware[$i]
}
}
[/PHP]

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.