Skip to content

Commit 9d4afb0

Browse files
authored
Merge pull request #280036 from ju-shim/guest-os-r
Cloud Services - retire Guest OS Family 2, 3, 4 notice
2 parents a80ee24 + 0b820e7 commit 9d4afb0

File tree

2 files changed

+79
-9
lines changed

2 files changed

+79
-9
lines changed
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
title: Guest OS family 2, 3, and 4 retirement notice | Microsoft Docs
3+
description: Information about when the Azure Guest OS Family 2, 3, and 4 retirement happened and how to determine if you're affected.
4+
services: cloud-services
5+
ms.subservice: auto-os-updates
6+
author: raiye
7+
manager: timlt
8+
ms.service: cloud-services
9+
ms.topic: article
10+
ms.date: 07/08/2024
11+
ms.author: raiye
12+
ms.custom: compute-evergreen
13+
---
14+
15+
# Guest OS Family 2, 3, and 4 retirement notice
16+
17+
The retirement of Azure Guest OS Families 2, 3, and 4 was announced in July 2024, with the following end-of-life dates:
18+
- **Windows Server 2008 R2:** December 2024
19+
- **Windows Server 2012 and Windows Server 2012 R2:** February 2025
20+
21+
If you have questions, visit the [Microsoft question page for Cloud Services](/answers/topics/azure-cloud-services.html) or [contact Azure support](https://azure.microsoft.com/support/options/).
22+
23+
## Are you affected?
24+
25+
Your Cloud Services or [Cloud Services Extended Support](../cloud-services-extended-support/overview.md) are affected if any one of the following applies:
26+
27+
1. You have a value of `osFamily` = `2`, `3`, or `4` explicitly specified in the `ServiceConfiguration.cscfg` file for your Cloud Service.
28+
1. The Azure portal lists your Guest Operating System family value as *Windows Server 2008 R2*, *Windows Server 2012*, or *Windows Server 2012 R2*.
29+
30+
To find which of your cloud services are running which OS Family, you can run the following script in Azure PowerShell, though you must [set up Azure PowerShell](/powershell/azure/) first.
31+
32+
```powershell
33+
foreach($subscription in Get-AzureSubscription) {
34+
Select-AzureSubscription -SubscriptionName $subscription.SubscriptionName
35+
36+
$deployments=get-azureService | get-azureDeployment -ErrorAction Ignore | where {$_.SdkVersion -NE ""}
37+
38+
$deployments | ft @{Name="SubscriptionName";Expression={$subscription.SubscriptionName}}, ServiceName, SdkVersion, Slot, @{Name="osFamily";Expression={(select-xml -content $_.configuration -xpath "/ns:ServiceConfiguration/@osFamily" -namespace $namespace).node.value }}, osVersion, Status, URL
39+
}
40+
```
41+
42+
Your cloud services are impacted by this retirement if the `osFamily` column in the script output contains a `2`, `3`, `4`, or is empty. If empty, the default `osFamily` column value is `5`.
43+
44+
## Recommendations
45+
46+
If you're affected, we recommend you migrate your Cloud Service or [Cloud Services Extended Support](../cloud-services-extended-support/overview.md) roles to one of the supported Guest OS Families:
47+
48+
**Guest OS family 7.x** - Windows Server 2022 *(recommended)*
49+
50+
1. Ensure that your application is using Visual Studio 2019 or newer with Azure Development Workload as selected and your application is targeting .NET framework version 4.8 or newer.
51+
1. Set the osFamily attribute to "7" in the `ServiceConfiguration.cscfg` file, and redeploy your cloud service.
52+
53+
**Guest OS family 6.x** - Windows Server 2019
54+
55+
1. Ensure that your application is using SDK 2.9.6 or later and your application is targeting .NET framework 3.5 or 4.7.2 or newer.
56+
1. Set the osFamily attribute to "6" in the `ServiceConfiguration.cscfg` file, and redeploy your cloud service.
57+
58+
## Important clarification regarding support
59+
60+
The announcement of the retirement of Azure Guest OS Families 2, 3, and 4, effective May 2025, pertains specifically to the operating systems within these families. This retirement doesn't extend the overall support timeline for Azure Cloud Services (classic) beyond the scheduled deprecation in August 2024. [Cloud Services Extended Support](../cloud-services-extended-support/overview.md) continues support with Guest OS Families 5 and newer.
61+
62+
Customers currently using Azure Cloud Services who wish to continue receiving support beyond August 2024 are encouraged to transition to [Cloud Services Extended Support](../cloud-services-extended-support/overview.md). This separate service offering ensures continued assistance and support. Cloud Services Extended Support requires a distinct enrollment and isn't automatically included with existing Azure Cloud Services subscriptions.
63+
64+
## Next steps
65+
66+
Review the latest [Guest OS releases](cloud-services-guestos-update-matrix.md).

articles/cloud-services/toc.yml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,20 @@
8484
href: cloud-services-python-how-to-use-service-management.md
8585
- name: Mitigating speculative execution
8686
href: mitigate-se.md
87-
- name: Guest OS patches
88-
href: cloud-services-guestos-msrc-releases.md
89-
- name: Guest OS retirement
87+
- name: Guest OS
9088
items:
91-
- name: Retirement policy
92-
href: cloud-services-guestos-retirement-policy.md
93-
- name: Family 1 retirement notice
94-
href: cloud-services-guestos-family1-retirement.md
95-
- name: Guest OS release news
96-
href: cloud-services-guestos-update-matrix.md
89+
- name: Guest OS patches
90+
href: cloud-services-guestos-msrc-releases.md
91+
- name: Guest OS retirement
92+
items:
93+
- name: Retirement policy
94+
href: cloud-services-guestos-retirement-policy.md
95+
- name: Family 1 retirement notice
96+
href: cloud-services-guestos-family1-retirement.md
97+
- name: Family 2, 3, 4 retirement notice
98+
href: cloud-services-guestos-family-2-3-4-retirement.md
99+
- name: Guest OS release news
100+
href: cloud-services-guestos-update-matrix.md
97101
- name: Cloud Services Role config XPath cheat sheet
98102
href: cloud-services-role-config-xpath.md
99103
- name: Manage certificates

0 commit comments

Comments
 (0)