You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The **Get-Process** cmdlet gets the processes on a local or remote computer.
51
+
The **Get-Process** cmdlet gets the processes on a local computer.
56
52
57
53
Without parameters, this cmdlet gets all of the processes on the local computer.
58
54
You can also specify a particular process by process name or process ID (PID) or pass a process object through the pipeline to this cmdlet.
@@ -201,34 +197,11 @@ To view all of the properties, pipe the results of a **Get-Process** command to
201
197
202
198
## PARAMETERS
203
199
204
-
### -ComputerName
205
-
Specifies the computers for which this cmdlet gets active processes.
206
-
The default is the local computer.
207
-
208
-
Type the NetBIOS name, an IP address, or a fully qualified domain name (FQDN) of one or more computers.
209
-
To specify the local computer, type the computer name, a dot (.), or localhost.
210
-
211
-
This parameter does not rely on Windows PowerShell remoting.
212
-
You can use the *ComputerName* parameter of this cmdlet even if your computer is not configured to run remote commands.
213
-
214
-
```yaml
215
-
Type: String[]
216
-
Parameter Sets: Name, Id, InputObject
217
-
Aliases: Cn
218
-
219
-
Required: False
220
-
Position: Named
221
-
Default value: None
222
-
Accept pipeline input: True (ByPropertyName)
223
-
Accept wildcard characters: False
224
-
```
225
-
226
200
### -FileVersionInfo
227
201
Indicates that this cmdlet gets the file version information for the program that runs in the process.
228
202
229
203
On Windows Vista and later versions of Windows, you must open Windows PowerShell with the Run as administrator option to use this parameter on processes that you do not own.
230
204
231
-
You cannot use the *FileVersionInfo* and *ComputerName* parameters of the **Get-Process** cmdlet in the same command.
232
205
To get file version information for a process on a remote computer, use the Invoke-Command cmdlet.
233
206
234
207
Using this parameter is equivalent to getting the **MainModule.FileVersionInfo** property of each process object.
@@ -279,37 +252,6 @@ Accept pipeline input: False
279
252
Accept wildcard characters: False
280
253
```
281
254
282
-
### -InformationAction
283
-
Type the NetBIOS name, an IP address, or a fully qualified domain name of one or more computers. To specify the local computer, type the computer name, a dot (.), or "localhost".
284
-
285
-
This parameter does not rely on Windows PowerShell remoting. You can use the ComputerName parameter of Get-Process even if your computer is not configured to run remote commands.```yaml
Type the NetBIOS name, an IP address, or a fully qualified domain name of one or more computers. To specify the local computer, type the computer name, a dot (.), or "localhost".
300
-
301
-
This parameter does not rely on Windows PowerShell remoting. You can use the ComputerName parameter of Get-Process even if your computer is not configured to run remote commands.```yaml
302
-
Type: String
303
-
Parameter Sets: (All)
304
-
Aliases: iv
305
-
306
-
Required: False
307
-
Position: Named
308
-
Default value: None
309
-
Accept pipeline input: False
310
-
Accept wildcard characters: False
311
-
```
312
-
313
255
### -InputObject
314
256
Specifies one or more process objects.
315
257
Enter a variable that contains the objects, or type a command or expression that gets the objects.
@@ -331,7 +273,6 @@ Indicates that this cmdlet gets the modules that have been loaded by the process
331
273
332
274
On Windows Vista and later versions of Windows, you must open Windows PowerShell with the Run as administrator option to use this parameter on processes that you do not own.
333
275
334
-
You cannot use the *Module* and *ComputerName* parameters of the **Get-Process** cmdlet in the same command.
335
276
To get the modules that have been loaded by a process on a remote computer, use the **Invoke-Command** cmdlet.
336
277
337
278
This parameter is equivalent to getting the Modules property of each process object.
0 commit comments