Sendet die Ausgabe get-process>process.txt an die angegebene Datei.
Sends output to the get-process>process.txt specified file.
Um alle Eigenschaften zu suchen, geben Sie "get-process | get-member" ein.
To find all the properties, type "get-process | get-member".
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.
This command starts a trace of metadata processing, parameter binding, and cmdlet creation and destruction of the "get-process notepad" expression.
Beispiel: get-process -id 664, 2060.
For example, get-process -id 664, 2060.
Geben Sie beispielsweise get-process - ein, und drücken Sie dann die TAB-TASTE, um einen Parameter für das Cmdlet auszuwählen.
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.
For example, type get-process - and then press TAB to select from the parameters for the cmdlet.
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 | format-list -property name, basepriority, priorityclass This command displays the name, base priority, and priority class of each process on the computer.
C:\PS>$p = get-process C:\PS>$p | out-gridview Beschreibung - Mit diesem Befehl werden ebenfalls die auf dem lokalen Computer ausgeführten Prozesse abgerufen und an ein Rasteransichtsfenster gesendet.
C:\PS>$p = get-process C:\PS>$p | out-grid view This command also gets the processes running on the local computer and sends them to a grid view window.
C:\PS>get-process | out-host -paging Beschreibung - Mit diesem Befehl werden die Prozesse auf dem System auf jeweils einer Seite angezeigt.
C:\PS>get-process | out-host -paging This command displays the processes on the system one page at a time.
Um die PID eines Prozesses zu suchen, geben Sie get-process ein.
To find the PID of a process, type get-process.
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 -name svchost | where-object {$True} This command lists all of the processes named "svchost".
C:\PS>get-process sql* -module Beschreibung - Dieser Befehl ruft mit dem Module-Parameter die Module ab, die vom Prozess geladen wurden.
C:\PS>get-process sql* -module This command uses the Module parameter to get the modules that have been loaded by the process.