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
description: Learn to apply an original equipment manufacturer (OEM) update to Azure Stack Hub.
3
+
description: Learn how to apply an original equipment manufacturer (OEM) update to Azure Stack Hub.
4
4
author: sethmanheim
5
5
ms.topic: how-to
6
-
ms.date: 06/24/2021
6
+
ms.date: 01/28/2025
7
7
ms.author: sethm
8
8
ms.lastreviewed: 03/04/2020
9
-
ms.reviewer: ppacent
10
9
11
10
# Intent: As an Azure Stack Hub operator, I want to apply an OEM update to Azure Stack Hub so I can get driver updates and security patches.
12
11
# Keyword: OEM update azure stack hub
@@ -23,15 +22,13 @@ In addition to Microsoft Azure Stack Hub updates, many OEMs also release regular
23
22
24
23
These OEM package updates are uploaded into the **updateadminaccount** storage account and applied via the Azure Stack Hub administrator portal. For more information, see [Applying OEM updates](#apply-oem-updates).
25
24
26
-
Ask your OEM about their specific notification process to ensure OEM package update notifications reach your organization.
27
-
28
-
Some hardware vendors may require a *hardware vendor VM* that handles the internal firmware update process. For more information, see [Configure hardware vendor VM](#configure-hardware-vendor-vm).
25
+
Ask your OEM about their specific notification process to ensure OEM package update notifications reach your organization. Some hardware vendors might require a *hardware vendor VM* that handles the internal firmware update process. For more information, see [Configure hardware vendor VM](#configure-hardware-vendor-vm).
29
26
30
27
## OEM contact information
31
28
32
29
This section contains OEM contact information and links to OEM Azure Stack Hub reference material.
33
30
34
-
| Hardware Partner| Region | URL |
31
+
| Hardware partner| Region | URL |
35
32
|-----|----|-----|
36
33
| Cisco | All |[Cisco Integrated System for Microsoft Azure Stack Hub Operations Guide](https://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/azure-stack/b_Azure_Stack_Operations_Guide_4-0/b_Azure_Stack_Operations_Guide_4-0_chapter_01000.html)<br><br>[UCS C-Series Rack-Mount UCS-Managed Server Software](https://www.cisco.com/c/en/us/support/servers-unified-computing/ucs-c-series-rack-mount-ucs-managed-server-software/series.html)|
37
34
| Dell EMC | All |[Cloud for Microsoft Azure Stack Hub 14G (account and login required)](https://support.emc.com/downloads/44615_Cloud-for-Microsoft-Azure-Stack-14G)<br><br>[Cloud for Microsoft Azure Stack Hub 13G (account and login required)](https://support.emc.com/downloads/42238_Cloud-for-Microsoft-Azure-Stack-13G)|
@@ -47,41 +44,41 @@ This section contains OEM contact information and links to OEM Azure Stack Hub r
47
44
Apply the OEM packages with the following steps:
48
45
49
46
> [!IMPORTANT]
50
-
> Before applying updates in Azure Stack Hub, ensure you've completed **ALL** steps in the [Pre-update checklist](release-notes-checklist.md) and have scheduled an appropriate maintenance window for the update type that you're applying.
47
+
> Before applying updates in Azure Stack Hub, ensure that you completed all steps in the [Pre-update checklist](release-notes-checklist.md), and you scheduled an appropriate maintenance window for the update type that you're applying.
51
48
52
49
1. Contact your OEM to:
53
50
- Determine the current version of your OEM package.
54
51
- Find the best method to download your OEM package.
55
-
2. Before applying an OEM package update, always apply the latest Azure Stack Hub hotfix available on your system's current Azure Stack Hub version. For more information on hotfixes, see [Azure Stack Hub hotfixes](azure-stack-servicing-policy.md).
56
-
3. Prepare your OEM package with the steps outlined in [Download update packages for integrated systems](azure-stack-servicing-policy.md).
57
-
4. Apply the updates with the steps outlined in [Apply updates in Azure Stack Hub](azure-stack-apply-updates.md).
52
+
1. Before you apply an OEM package update, always apply the latest Azure Stack Hub hotfix available on your system's current Azure Stack Hub version. For more information about hotfixes, see [Azure Stack Hub hotfixes](azure-stack-servicing-policy.md#hotfixes).
53
+
1. Prepare your OEM package with the steps outlined in [Download update packages for integrated systems](azure-stack-servicing-policy.md).
54
+
1. Apply the updates with the steps outlined in [Apply updates in Azure Stack Hub](azure-stack-apply-updates.md).
58
55
59
56
## Configure hardware vendor VM
60
57
61
-
Some hardware vendors may require a virtual machine (VM) to help with the OEM update process. Your hardware vendor is responsible for creating these VMs and documenting if you require `ProxyVM` or `HardwareManager` for **-VMType** when running the **Set-OEMExternalVM** cmdlet, as well as which credential should be used for **-Credential**. Once the VMs are created, configure them with the **Set-OEMExternalVM** from the privileged endpoint.
58
+
Some hardware vendors might require a virtual machine (VM) to help with the OEM update process. Your hardware vendor is responsible for creating these VMs and documenting if you require `ProxyVM` or `HardwareManager` for **-VMType** when running the **Set-OEMExternalVM** cmdlet, as well as which credential should be used for **-Credential**. Once the VMs are created, configure them with the **Set-OEMExternalVM** from the privileged endpoint.
62
59
63
-
For more information on the privileged endpoint in Azure Stack Hub, see [Using the privileged endpoint in Azure Stack Hub](azure-stack-privileged-endpoint.md).
60
+
For more information about the privileged endpoint in Azure Stack Hub, see [Using the privileged endpoint in Azure Stack Hub](azure-stack-privileged-endpoint.md).
64
61
65
62
1. Access the privileged endpoint.
66
63
67
-
```powershell
68
-
$cred = Get-Credential
69
-
$session = New-PSSession -ComputerName <IP Address of ERCS> `
2. Configure the hardware vendor VM using the **Set-OEMExternalVM** cmdlet. The cmdlet validates the IP address and credentials for **-VMType** `ProxyVM`. For **-VMType** `HardwareManager`, the cmdlet won't validate the input. The **-Credential** parameter provided to **Set-OEMExternalVM** is one that will be clearly documented by the hardware vendor documentation. It is *NOT* the CloudAdmin credential used with the privileged endpoint, or any other existing Azure Stack Hub credential.
71
+
1. Configure the hardware vendor VM using the **Set-OEMExternalVM** cmdlet. The cmdlet validates the IP address and credentials for **-VMType**`ProxyVM`. For **-VMType**`HardwareManager`, the cmdlet doesn't validate the input. The **-Credential** parameter provided to **Set-OEMExternalVM** is one that's clearly documented by the hardware vendor documentation. It isn't the **CloudAdmin** credential used with the privileged endpoint, or any other existing Azure Stack Hub credential.
75
72
76
-
```powershell
77
-
$VmCred = Get-Credential
78
-
Invoke-Command -Session $session
79
-
{
80
-
Set-OEMExternalVM -VMType <Either "ProxyVM" or "HardwareManager">
81
-
-IPAddress <IP Address of hardware vendor VM> -Credential $using:VmCred
82
-
}
83
-
```
73
+
```powershell
74
+
$VmCred = Get-Credential
75
+
Invoke-Command -Session $session
76
+
{
77
+
Set-OEMExternalVM -VMType <Either "ProxyVM" or "HardwareManager">
78
+
-IPAddress <IP Address of hardware vendor VM> -Credential $using:VmCred
0 commit comments