Vertaling van "get-process" in Duits
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Sends output to the get-process>process.txt specified file.
To find all the properties, type "get-process | get-member".
Um alle Eigenschaften zu suchen, geben Sie "get-process | get-member" ein.
This command starts a trace of metadata processing, parameter binding, and cmdlet creation and destruction of the get-process notepad expression.
Mit diesem Befehl wird eine Ablaufverfolgung der Metadatenverarbeitung, Parameterbindung und Cmdlet-Erstellung sowie der Zerstörung des Ausdrucks get-process notepad gestartet.
This command starts a trace of metadata processing, parameter binding, and cmdlet creation and destruction of the "get-process notepad" expression.
Mit diesem Befehl wird eine Ablaufverfolgung der Metadatenverarbeitung, Parameterbindung und Cmdlet-Erstellung sowie der Zerstörung des Ausdrucks "get-process notepad" gestartet.
For example, get-process -id 664, 2060.
Beispiel: get-process -id 664, 2060.
For example, type get-process - and then press TAB to select from the parameters for the cmdlet.
Geben Sie beispielsweise get-process - ein, und drücken Sie dann die TAB-TASTE, um einen Parameter für das Cmdlet auszuwählen.
C:\PS>get-process | format-list -property name, basepriority, priorityclass This command displays the name, base priority, and priority class of each process on the computer.
C:\PS>get-process | format-list -property name, basepriority, priorityclass Beschreibung - Mit diesem Befehl werden Name, Basispriorität und Prioritätsklasse der einzelnen Prozesse auf dem Computer angezeigt.
C:\PS>get-process | out-host -paging This command displays the processes on the system one page at a time.
C:\PS>get-process | out-host -paging Beschreibung - Mit diesem Befehl werden die Prozesse auf dem System auf jeweils einer Seite angezeigt.
To find the PID of a process, type get-process.
Um die PID eines Prozesses zu suchen, geben Sie get-process ein.
C:\PS>get-process -name svchost | where-object {$True} This command lists all of the processes named "svchost".
C:\PS>get-process -name svchost | where-object {$True} Beschreibung - Mit diesem Befehl werden alle Prozesse mit dem Namen "svchost" aufgelistet.
C:\PS>get-process sql* -module This command uses the Module parameter to get the modules that have been loaded by the process.
C:\PS>get-process sql* -module Beschreibung - Dieser Befehl ruft mit dem Module-Parameter die Module ab, die vom Prozess geladen wurden.
C:\PS>start-job -name WinRm -scriptblock {get-process winrm} This command runs a background job that gets the WinRM process on the local computer.
C:\PS>start-job -name WinRm -scriptblock {get-process winrm} Beschreibung - Mit diesem Befehl wird ein Hintergrundauftrag ausgeführt, der den WinRM-Prozess auf dem lokalen Computer abruft.
To ensure the command creates an array, use the array subexpression operator, , as shown in the following example: $LocalProcesses = (get-process co*) Even if the command returns a single process, the $LocalProcesses variable is an array.
Um sicherzustellen, dass mit dem Befehl ein Array erstellt wird, verwenden Sie den Arrayteilausdruckoperator ( ), wie im folgenden Beispiel veranschaulicht: $LocalProcesses = (get-process co*) Selbst wenn vom Befehl ein einziger Prozess zurückgegeben wird, ist die $LocalProcesses-Variable ein Array.