Skip to content

Commit e4fcb27

Browse files
authored
Fix broken links (#10895)
1 parent 41c3aad commit e4fcb27

File tree

5 files changed

+65
-60
lines changed

5 files changed

+65
-60
lines changed

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

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Management
5-
ms.date: 01/03/2023
5+
ms.date: 02/23/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-hotfix?view=powershell-5.1&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Get-HotFix
@@ -59,8 +59,8 @@ Server01 Update KB4480056 NT AUTHORITY\SYSTEM 1/24/2019 00:
5959
The `Get-Hotfix` command uses parameters to get hotfixes installed on remote computers. The results
6060
are filtered by a specified description string.
6161

62-
```
63-
PS> Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
62+
```powershell
63+
Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
6464
```
6565

6666
`Get-Hotfix` filters the output with the **Description** parameter and the string **Security** that
@@ -73,10 +73,10 @@ permission to access the remote computers and run commands.
7373
The commands in this example verify whether a particular update installed. If the update isn't
7474
installed, the computer name is written to a text file.
7575

76-
```
77-
PS> $A = Get-Content -Path ./Servers.txt
78-
PS> $A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79-
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
76+
```powershell
77+
$A = Get-Content -Path ./Servers.txt
78+
$A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79+
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
8080
```
8181

8282
The `$A` variable contains computer names that were obtained by `Get-Content` from a text file. The
@@ -185,7 +185,8 @@ Accept wildcard characters: False
185185

186186
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
187187
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
188-
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
188+
-WarningAction, and -WarningVariable. For more information, see
189+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
189190

190191
## INPUTS
191192

@@ -207,20 +208,20 @@ The **Win32_QuickFixEngineering** [WMI class](/windows/desktop/WmiSdk/retrieving
207208
a small system-wide update, commonly referred to as a quick-fix engineering (QFE) update, applied to
208209
the current operating system. This class returns only the updates supplied by Component Based
209210
Servicing (CBS). These updates aren't listed in the registry. Updates supplied by Microsoft Windows
210-
Installer (MSI) or the [Windows Update](https://update.microsoft.com) site aren't returned by
211-
**Win32_QuickFixEngineering**. For more information, see
211+
Installer (MSI) or the [Windows Update](https://www.catalog.update.microsoft.com/) site aren't
212+
returned by **Win32_QuickFixEngineering**. For more information, see
212213
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering).
213214

214215
The `Get-HotFix` output might vary on different operating systems.
215216

216217
## RELATED LINKS
217218

218-
[about_Arrays](../Microsoft.PowerShell.Core/About/about_Arrays.md)
219+
[about_Arrays](/powershell/module/microsoft.powershell.core/about/about_arrays)
219220

220221
[Add-Content](Add-Content.md)
221222

222223
[Get-ComputerRestorePoint](Get-ComputerRestorePoint.md)
223224

224-
[Get-Credential](../Microsoft.PowerShell.Security/Get-Credential.md)
225+
[Get-Credential](xref:Microsoft.PowerShell.Security.Get-Credential)
225226

226227
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering)

reference/7.2/Microsoft.PowerShell.Management/Get-HotFix.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Management
5-
ms.date: 01/03/2023
5+
ms.date: 02/23/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-hotfix?view=powershell-7.2&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Get-HotFix
@@ -59,8 +59,8 @@ Server01 Update KB4480056 NT AUTHORITY\SYSTEM 1/24/2019 00:
5959
The `Get-Hotfix` command uses parameters to get hotfixes installed on remote computers. The results
6060
are filtered by a specified description string.
6161

62-
```
63-
PS> Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
62+
```powershell
63+
Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
6464
```
6565

6666
`Get-Hotfix` filters the output with the **Description** parameter and the string **Security** that
@@ -73,10 +73,10 @@ permission to access the remote computers and run commands.
7373
The commands in this example verify whether a particular update installed. If the update isn't
7474
installed, the computer name is written to a text file.
7575

76-
```
77-
PS> $A = Get-Content -Path ./Servers.txt
78-
PS> $A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79-
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
76+
```powershell
77+
$A = Get-Content -Path ./Servers.txt
78+
$A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79+
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
8080
```
8181

8282
The `$A` variable contains computer names that were obtained by `Get-Content` from a text file. The
@@ -185,7 +185,8 @@ Accept wildcard characters: False
185185

186186
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
187187
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
188-
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
188+
-WarningAction, and -WarningVariable. For more information, see
189+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
189190

190191
## INPUTS
191192

@@ -207,18 +208,18 @@ The **Win32_QuickFixEngineering** [WMI class](/windows/desktop/WmiSdk/retrieving
207208
a small system-wide update, commonly referred to as a quick-fix engineering (QFE) update, applied to
208209
the current operating system. This class returns only the updates supplied by Component Based
209210
Servicing (CBS). These updates aren't listed in the registry. Updates supplied by Microsoft Windows
210-
Installer (MSI) or the [Windows Update](https://update.microsoft.com) site aren't returned by
211-
**Win32_QuickFixEngineering**. For more information, see
211+
Installer (MSI) or the [Windows Update](https://www.catalog.update.microsoft.com/) site aren't
212+
returned by **Win32_QuickFixEngineering**. For more information, see
212213
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering).
213214

214215
The `Get-HotFix` output might vary on different operating systems.
215216

216217
## RELATED LINKS
217218

218-
[about_Arrays](../Microsoft.PowerShell.Core/About/about_Arrays.md)
219+
[about_Arrays](/powershell/module/microsoft.powershell.core/about/about_arrays)
219220

220221
[Add-Content](Add-Content.md)
221222

222-
[Get-Credential](../Microsoft.PowerShell.Security/Get-Credential.md)
223+
[Get-Credential](xref:Microsoft.PowerShell.Security.Get-Credential)
223224

224225
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering)

reference/7.3/Microsoft.PowerShell.Management/Get-HotFix.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Management
5-
ms.date: 01/03/2023
5+
ms.date: 02/23/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-hotfix?view=powershell-7.3&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Get-HotFix
@@ -59,8 +59,8 @@ Server01 Update KB4480056 NT AUTHORITY\SYSTEM 1/24/2019 00:
5959
The `Get-Hotfix` command uses parameters to get hotfixes installed on remote computers. The results
6060
are filtered by a specified description string.
6161

62-
```
63-
PS> Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
62+
```powershell
63+
Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
6464
```
6565

6666
`Get-Hotfix` filters the output with the **Description** parameter and the string **Security** that
@@ -73,10 +73,10 @@ permission to access the remote computers and run commands.
7373
The commands in this example verify whether a particular update installed. If the update isn't
7474
installed, the computer name is written to a text file.
7575

76-
```
77-
PS> $A = Get-Content -Path ./Servers.txt
78-
PS> $A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79-
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
76+
```powershell
77+
$A = Get-Content -Path ./Servers.txt
78+
$A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79+
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
8080
```
8181

8282
The `$A` variable contains computer names that were obtained by `Get-Content` from a text file. The
@@ -185,7 +185,8 @@ Accept wildcard characters: False
185185

186186
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
187187
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
188-
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
188+
-WarningAction, and -WarningVariable. For more information, see
189+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
189190

190191
## INPUTS
191192

@@ -207,18 +208,18 @@ The **Win32_QuickFixEngineering** [WMI class](/windows/desktop/WmiSdk/retrieving
207208
a small system-wide update, commonly referred to as a quick-fix engineering (QFE) update, applied to
208209
the current operating system. This class returns only the updates supplied by Component Based
209210
Servicing (CBS). These updates aren't listed in the registry. Updates supplied by Microsoft Windows
210-
Installer (MSI) or the [Windows Update](https://update.microsoft.com) site aren't returned by
211-
**Win32_QuickFixEngineering**. For more information, see
211+
Installer (MSI) or the [Windows Update](https://www.catalog.update.microsoft.com/) site aren't
212+
returned by **Win32_QuickFixEngineering**. For more information, see
212213
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering).
213214

214215
The `Get-HotFix` output might vary on different operating systems.
215216

216217
## RELATED LINKS
217218

218-
[about_Arrays](../Microsoft.PowerShell.Core/About/about_Arrays.md)
219+
[about_Arrays](/powershell/module/microsoft.powershell.core/about/about_arrays)
219220

220221
[Add-Content](Add-Content.md)
221222

222-
[Get-Credential](../Microsoft.PowerShell.Security/Get-Credential.md)
223+
[Get-Credential](xref:Microsoft.PowerShell.Security.Get-Credential)
223224

224225
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering)

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

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Management
5-
ms.date: 01/03/2023
5+
ms.date: 02/23/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-hotfix?view=powershell-7.4&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Get-HotFix
@@ -59,8 +59,8 @@ Server01 Update KB4480056 NT AUTHORITY\SYSTEM 1/24/2019 00:
5959
The `Get-Hotfix` command uses parameters to get hotfixes installed on remote computers. The results
6060
are filtered by a specified description string.
6161

62-
```
63-
PS> Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
62+
```powershell
63+
Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
6464
```
6565

6666
`Get-Hotfix` filters the output with the **Description** parameter and the string **Security** that
@@ -73,10 +73,10 @@ permission to access the remote computers and run commands.
7373
The commands in this example verify whether a particular update installed. If the update isn't
7474
installed, the computer name is written to a text file.
7575

76-
```
77-
PS> $A = Get-Content -Path ./Servers.txt
78-
PS> $A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79-
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
76+
```powershell
77+
$A = Get-Content -Path ./Servers.txt
78+
$A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79+
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
8080
```
8181

8282
The `$A` variable contains computer names that were obtained by `Get-Content` from a text file. The
@@ -185,7 +185,8 @@ Accept wildcard characters: False
185185

186186
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
187187
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
188-
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
188+
-WarningAction, and -WarningVariable. For more information, see
189+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
189190

190191
## INPUTS
191192

@@ -207,18 +208,18 @@ The **Win32_QuickFixEngineering** [WMI class](/windows/desktop/WmiSdk/retrieving
207208
a small system-wide update, commonly referred to as a quick-fix engineering (QFE) update, applied to
208209
the current operating system. This class returns only the updates supplied by Component Based
209210
Servicing (CBS). These updates aren't listed in the registry. Updates supplied by Microsoft Windows
210-
Installer (MSI) or the [Windows Update](https://update.microsoft.com) site aren't returned by
211-
**Win32_QuickFixEngineering**. For more information, see
211+
Installer (MSI) or the [Windows Update](https://www.catalog.update.microsoft.com/) site aren't
212+
returned by **Win32_QuickFixEngineering**. For more information, see
212213
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering).
213214

214215
The `Get-HotFix` output might vary on different operating systems.
215216

216217
## RELATED LINKS
217218

218-
[about_Arrays](../Microsoft.PowerShell.Core/About/about_Arrays.md)
219+
[about_Arrays](/powershell/module/microsoft.powershell.core/about/about_arrays)
219220

220221
[Add-Content](Add-Content.md)
221222

222-
[Get-Credential](../Microsoft.PowerShell.Security/Get-Credential.md)
223+
[Get-Credential](xref:Microsoft.PowerShell.Security.Get-Credential)
223224

224225
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering)

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

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
33
Locale: en-US
44
Module Name: Microsoft.PowerShell.Management
5-
ms.date: 01/03/2023
5+
ms.date: 02/23/2024
66
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-hotfix?view=powershell-7.5&WT.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Get-HotFix
@@ -59,8 +59,8 @@ Server01 Update KB4480056 NT AUTHORITY\SYSTEM 1/24/2019 00:
5959
The `Get-Hotfix` command uses parameters to get hotfixes installed on remote computers. The results
6060
are filtered by a specified description string.
6161

62-
```
63-
PS> Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
62+
```powershell
63+
Get-HotFix -Description Security* -ComputerName Server01, Server02 -Credential Domain01\admin01
6464
```
6565

6666
`Get-Hotfix` filters the output with the **Description** parameter and the string **Security** that
@@ -73,10 +73,10 @@ permission to access the remote computers and run commands.
7373
The commands in this example verify whether a particular update installed. If the update isn't
7474
installed, the computer name is written to a text file.
7575

76-
```
77-
PS> $A = Get-Content -Path ./Servers.txt
78-
PS> $A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79-
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
76+
```powershell
77+
$A = Get-Content -Path ./Servers.txt
78+
$A | ForEach-Object { if (!(Get-HotFix -Id KB957095 -ComputerName $_))
79+
{ Add-Content $_ -Path ./Missing-KB957095.txt }}
8080
```
8181

8282
The `$A` variable contains computer names that were obtained by `Get-Content` from a text file. The
@@ -185,7 +185,8 @@ Accept wildcard characters: False
185185

186186
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
187187
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
188-
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
188+
-WarningAction, and -WarningVariable. For more information, see
189+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
189190

190191
## INPUTS
191192

@@ -207,18 +208,18 @@ The **Win32_QuickFixEngineering** [WMI class](/windows/desktop/WmiSdk/retrieving
207208
a small system-wide update, commonly referred to as a quick-fix engineering (QFE) update, applied to
208209
the current operating system. This class returns only the updates supplied by Component Based
209210
Servicing (CBS). These updates aren't listed in the registry. Updates supplied by Microsoft Windows
210-
Installer (MSI) or the [Windows Update](https://update.microsoft.com) site aren't returned by
211-
**Win32_QuickFixEngineering**. For more information, see
211+
Installer (MSI) or the [Windows Update](https://www.catalog.update.microsoft.com/) site aren't
212+
returned by **Win32_QuickFixEngineering**. For more information, see
212213
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering).
213214

214215
The `Get-HotFix` output might vary on different operating systems.
215216

216217
## RELATED LINKS
217218

218-
[about_Arrays](../Microsoft.PowerShell.Core/About/about_Arrays.md)
219+
[about_Arrays](/powershell/module/microsoft.powershell.core/about/about_arrays)
219220

220221
[Add-Content](Add-Content.md)
221222

222-
[Get-Credential](../Microsoft.PowerShell.Security/Get-Credential.md)
223+
[Get-Credential](xref:Microsoft.PowerShell.Security.Get-Credential)
223224

224225
[Win32_QuickFixEngineering class](/windows/desktop/CIMWin32Prov/win32-quickfixengineering)

0 commit comments

Comments
 (0)