Skip to content

Commit 5a91cc6

Browse files
Fix links
1 parent f1e4277 commit 5a91cc6

File tree

4 files changed

+68
-44
lines changed

4 files changed

+68
-44
lines changed

reference/5.1/Microsoft.PowerShell.Management/Get-Process.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,10 @@ The first pipeline gets all processes that have a working set greater than 20 MB
116116
value greater than `20000000` bytes.
117117

118118
The second pipeline uses a
119-
[comparison statement](xref:Microsoft.PowerShell.Core.Where-Object#description) and the `MB`
120-
[numeric literal suffix](about_Numeric_Literals.md) as a concise alternative to the first pipeline.
121-
In PowerShell, `MB` represents a mebibyte (MiB) multiplier. `20MB` is equal to `20971520` bytes.
119+
[comparison statement](../Microsoft.PowerShell.Core/Where-Object.md#description) and the `MB`
120+
[numeric literal suffix](../Microsoft.PowerShell.Core/About/about_Numeric_Literals.md) as a concise
121+
alternative to the first pipeline. In PowerShell, `MB` represents a mebibyte (MiB) multiplier.
122+
`20MB` is equal to `20971520` bytes.
122123

123124
### Example 4: Display processes on the computer in groups based on priority
124125

@@ -164,7 +165,8 @@ Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName StartTime
164165

165166
This example retrieves processes from the local computer and pipes each **Process** object to the
166167
`Format-Table` cmdlet. `Format-Table` recreates the default output display of a **Process** object
167-
using a mixture of property names and [calculated properties](about_Calculated_Properties.md). The
168+
using a mixture of property names and
169+
[calculated properties](../Microsoft.PowerShell.Core/About/about_Calculated_Properties.md). The
168170
display includes an additional **StartTime** property not present in the default display.
169171

170172
### Example 6: Get version information for a process
@@ -474,14 +476,14 @@ On computers running 64-bit Windows, the 64-bit version of PowerShell gets the m
474476
> [Win32_Process](/windows/desktop/CIMWin32Prov/win32-process) class.
475477

476478
To get process information from a remote computer, use the `Invoke-Command` cmdlet. For more
477-
information, see [Invoke-Command](xref:Microsoft.PowerShell.Core.Invoke-Command).
479+
information, see [Invoke-Command](../Microsoft.PowerShell.Core/Invoke-Command.md).
478480

479481
You can use the Windows Management Instrumentation (WMI)
480482
[Win32_Process](/windows/desktop/CIMWin32Prov/win32-process) class in PowerShell as an alternative
481483
to `Get-Process`. For more information, see:
482484

483485
- [Example 8: Find the owner of a process](#example-8-find-the-owner-of-a-process)
484-
- [Get-CimInstance](xref:CimCmdlets.Get-CimInstance)
486+
- [Get-CimInstance](../CimCmdlets/Get-CimInstance.md)
485487

486488
The default display of a **Process** object is a table view that includes the following columns.
487489

@@ -504,8 +506,12 @@ For a description of all available **Process** object members, see
504506

505507
## RELATED LINKS
506508

507-
- [Debug-Process](xref:Microsoft.PowerShell.Management.Debug-Process)
508-
- [Get-Process](xref:Microsoft.PowerShell.Management.Get-Process)
509-
- [Start-Process](xref:Microsoft.PowerShell.Management.Start-Process)
510-
- [Stop-Process](xref:Microsoft.PowerShell.Management.Stop-Process)
511-
- [Wait-Process](xref:Microsoft.PowerShell.Management.Wait-Process)
509+
[Debug-Process](Debug-Process.md)
510+
511+
[Get-Process](Get-Process.md)
512+
513+
[Start-Process](Start-Process.md)
514+
515+
[Stop-Process](Stop-Process.md)
516+
517+
[Wait-Process](Wait-Process.md)

reference/7.4/Microsoft.PowerShell.Management/Get-Process.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,10 @@ The first pipeline gets all processes that have a working set greater than 20 MB
113113
value greater than `20000000` bytes.
114114

115115
The second pipeline uses a
116-
[comparison statement](xref:Microsoft.PowerShell.Core.Where-Object#description) and the `MB`
117-
[numeric literal suffix](about_Numeric_Literals.md) as a concise alternative to the first pipeline.
118-
In PowerShell, `MB` represents a mebibyte (MiB) multiplier. `20MB` is equal to `20971520` bytes.
116+
[comparison statement](../Microsoft.PowerShell.Core/Where-Object.md#description) and the `MB`
117+
[numeric literal suffix](../Microsoft.PowerShell.Core/About/about_Numeric_Literals.md) as a concise
118+
alternative to the first pipeline. In PowerShell, `MB` represents a mebibyte (MiB) multiplier.
119+
`20MB` is equal to `20971520` bytes.
119120

120121
### Example 4: Display processes on the computer in groups based on priority
121122

@@ -157,7 +158,8 @@ NPM(K) PM(M) WS(M) CPU(s) Id SI ProcessName StartTime
157158

158159
This example retrieves processes from the local computer and pipes each **Process** object to the
159160
`Format-Table` cmdlet. `Format-Table` recreates the default output display of a **Process** object
160-
using a mixture of property names and [calculated properties](about_Calculated_Properties.md). The
161+
using a mixture of property names and
162+
[calculated properties](../Microsoft.PowerShell.Core/About/about_Calculated_Properties.md). The
161163
display includes an additional **StartTime** property not present in the default display.
162164

163165
### Example 6: Get version information for a process
@@ -436,14 +438,14 @@ On computers running 64-bit Windows, the 64-bit version of PowerShell gets the m
436438
> [Win32_Process](/windows/desktop/CIMWin32Prov/win32-process) class.
437439

438440
To get process information from a remote computer, use the `Invoke-Command` cmdlet. For more
439-
information, see [Invoke-Command](xref:Microsoft.PowerShell.Core.Invoke-Command).
441+
information, see [Invoke-Command](../Microsoft.PowerShell.Core/Invoke-Command.md).
440442

441443
On Windows, you can use the Windows Management Instrumentation (WMI)
442444
[Win32_Process](/windows/desktop/CIMWin32Prov/win32-process) class in PowerShell as an alternative
443445
to `Get-Process`. For more information, see:
444446

445447
- [Example 8: Find the owner of a process](#example-8-find-the-owner-of-a-process)
446-
- [Get-CimInstance](xref:CimCmdlets.Get-CimInstance)
448+
- [Get-CimInstance](../CimCmdlets/Get-CimInstance.md)
447449

448450
The default display of a **Process** object is a table view that includes the following columns.
449451

@@ -465,8 +467,12 @@ For a description of all available **Process** object members, see
465467

466468
## RELATED LINKS
467469

468-
- [Debug-Process](xref:Microsoft.PowerShell.Management.Debug-Process)
469-
- [Get-Process](xref:Microsoft.PowerShell.Management.Get-Process)
470-
- [Start-Process](xref:Microsoft.PowerShell.Management.Start-Process)
471-
- [Stop-Process](xref:Microsoft.PowerShell.Management.Stop-Process)
472-
- [Wait-Process](xref:Microsoft.PowerShell.Management.Wait-Process)
470+
[Debug-Process](Debug-Process.md)
471+
472+
[Get-Process](Get-Process.md)
473+
474+
[Start-Process](Start-Process.md)
475+
476+
[Stop-Process](Stop-Process.md)
477+
478+
[Wait-Process](Wait-Process.md)

reference/7.5/Microsoft.PowerShell.Management/Get-Process.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,10 @@ The first pipeline gets all processes that have a working set greater than 20 MB
113113
value greater than `20000000` bytes.
114114

115115
The second pipeline uses a
116-
[comparison statement](xref:Microsoft.PowerShell.Core.Where-Object#description) and the `MB`
117-
[numeric literal suffix](about_Numeric_Literals.md) as a concise alternative to the first pipeline.
118-
In PowerShell, `MB` represents a mebibyte (MiB) multiplier. `20MB` is equal to `20971520` bytes.
116+
[comparison statement](../Microsoft.PowerShell.Core/Where-Object.md#description) and the `MB`
117+
[numeric literal suffix](../Microsoft.PowerShell.Core/About/about_Numeric_Literals.md) as a concise
118+
alternative to the first pipeline. In PowerShell, `MB` represents a mebibyte (MiB) multiplier.
119+
`20MB` is equal to `20971520` bytes.
119120

120121
### Example 4: Display processes on the computer in groups based on priority
121122

@@ -157,7 +158,8 @@ NPM(K) PM(M) WS(M) CPU(s) Id SI ProcessName StartTime
157158

158159
This example retrieves processes from the local computer and pipes each **Process** object to the
159160
`Format-Table` cmdlet. `Format-Table` recreates the default output display of a **Process** object
160-
using a mixture of property names and [calculated properties](about_Calculated_Properties.md). The
161+
using a mixture of property names and
162+
[calculated properties](../Microsoft.PowerShell.Core/About/about_Calculated_Properties.md). The
161163
display includes an additional **StartTime** property not present in the default display.
162164

163165
### Example 6: Get version information for a process
@@ -436,14 +438,14 @@ On computers running 64-bit Windows, the 64-bit version of PowerShell gets the m
436438
> [Win32_Process](/windows/desktop/CIMWin32Prov/win32-process) class.
437439

438440
To get process information from a remote computer, use the `Invoke-Command` cmdlet. For more
439-
information, see [Invoke-Command](xref:Microsoft.PowerShell.Core.Invoke-Command).
441+
information, see [Invoke-Command](../Microsoft.PowerShell.Core/Invoke-Command.md).
440442

441443
On Windows, you can use the Windows Management Instrumentation (WMI)
442444
[Win32_Process](/windows/desktop/CIMWin32Prov/win32-process) class in PowerShell as an alternative
443445
to `Get-Process`. For more information, see:
444446

445447
- [Example 8: Find the owner of a process](#example-8-find-the-owner-of-a-process)
446-
- [Get-CimInstance](xref:CimCmdlets.Get-CimInstance)
448+
- [Get-CimInstance](../CimCmdlets/Get-CimInstance.md)
447449

448450
The default display of a **Process** object is a table view that includes the following columns.
449451

@@ -465,8 +467,12 @@ For a description of all available **Process** object members, see
465467

466468
## RELATED LINKS
467469

468-
- [Debug-Process](xref:Microsoft.PowerShell.Management.Debug-Process)
469-
- [Get-Process](xref:Microsoft.PowerShell.Management.Get-Process)
470-
- [Start-Process](xref:Microsoft.PowerShell.Management.Start-Process)
471-
- [Stop-Process](xref:Microsoft.PowerShell.Management.Stop-Process)
472-
- [Wait-Process](xref:Microsoft.PowerShell.Management.Wait-Process)
470+
[Debug-Process](Debug-Process.md)
471+
472+
[Get-Process](Get-Process.md)
473+
474+
[Start-Process](Start-Process.md)
475+
476+
[Stop-Process](Stop-Process.md)
477+
478+
[Wait-Process](Wait-Process.md)

reference/7.6/Microsoft.PowerShell.Management/Get-Process.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,10 @@ The first pipeline gets all processes that have a working set greater than 20 MB
113113
value greater than `20000000` bytes.
114114

115115
The second pipeline uses a
116-
[comparison statement](xref:Microsoft.PowerShell.Core.Where-Object#description) and the `MB`
117-
[numeric literal suffix](about_Numeric_Literals.md) as a concise alternative to the first pipeline.
118-
In PowerShell, `MB` represents a mebibyte (MiB) multiplier. `20MB` is equal to `20971520` bytes.
116+
[comparison statement](../Microsoft.PowerShell.Core/Where-Object.md#description) and the `MB`
117+
[numeric literal suffix](../Microsoft.PowerShell.Core/About/about_Numeric_Literals.md) as a concise
118+
alternative to the first pipeline. In PowerShell, `MB` represents a mebibyte (MiB) multiplier.
119+
`20MB` is equal to `20971520` bytes.
119120

120121
### Example 4: Display processes on the computer in groups based on priority
121122

@@ -157,7 +158,8 @@ NPM(K) PM(M) WS(M) CPU(s) Id SI ProcessName StartTime
157158

158159
This example retrieves processes from the local computer and pipes each **Process** object to the
159160
`Format-Table` cmdlet. `Format-Table` recreates the default output display of a **Process** object
160-
using a mixture of property names and [calculated properties](about_Calculated_Properties.md). The
161+
using a mixture of property names and
162+
[calculated properties](../Microsoft.PowerShell.Core/About/about_Calculated_Properties.md). The
161163
display includes an additional **StartTime** property not present in the default display.
162164

163165
### Example 6: Get version information for a process
@@ -436,14 +438,14 @@ On computers running 64-bit Windows, the 64-bit version of PowerShell gets the m
436438
> [Win32_Process](/windows/desktop/CIMWin32Prov/win32-process) class.
437439

438440
To get process information from a remote computer, use the `Invoke-Command` cmdlet. For more
439-
information, see [Invoke-Command](xref:Microsoft.PowerShell.Core.Invoke-Command).
441+
information, see [Invoke-Command](../Microsoft.PowerShell.Core/Invoke-Command.md).
440442

441443
On Windows, you can use the Windows Management Instrumentation (WMI)
442444
[Win32_Process](/windows/desktop/CIMWin32Prov/win32-process) class in PowerShell as an alternative
443445
to `Get-Process`. For more information, see:
444446

445447
- [Example 8: Find the owner of a process](#example-8-find-the-owner-of-a-process)
446-
- [Get-CimInstance](xref:CimCmdlets.Get-CimInstance)
448+
- [Get-CimInstance](../CimCmdlets/Get-CimInstance.md)
447449

448450
The default display of a **Process** object is a table view that includes the following columns.
449451

@@ -465,8 +467,12 @@ For a description of all available **Process** object members, see
465467

466468
## RELATED LINKS
467469

468-
- [Debug-Process](xref:Microsoft.PowerShell.Management.Debug-Process)
469-
- [Get-Process](xref:Microsoft.PowerShell.Management.Get-Process)
470-
- [Start-Process](xref:Microsoft.PowerShell.Management.Start-Process)
471-
- [Stop-Process](xref:Microsoft.PowerShell.Management.Stop-Process)
472-
- [Wait-Process](xref:Microsoft.PowerShell.Management.Wait-Process)
470+
[Debug-Process](Debug-Process.md)
471+
472+
[Get-Process](Get-Process.md)
473+
474+
[Start-Process](Start-Process.md)
475+
476+
[Stop-Process](Stop-Process.md)
477+
478+
[Wait-Process](Wait-Process.md)

0 commit comments

Comments
 (0)