Skip to content

Commit 5df42f8

Browse files
authored
Removal of Win2008R2SP1 image from PS (#20445)
* initial dev * changelog
1 parent 02bed37 commit 5df42f8

File tree

5 files changed

+2
-9
lines changed

5 files changed

+2
-9
lines changed

src/Compute/Compute/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
2121
-->
2222
## Upcoming Release
23+
* Removed the image `Win2008R2SP1` from the list of available images and documentation. This image is no longer available on the backend so the client tools need to sync to that change.
2324

2425
## Version 5.2.0
2526
* Fixed issue found for `Set-AzVmssVMRunCommand` [#19985]

src/Compute/Compute/Manual/VirtualMachineScaleSetCreateOrUpdateMethod.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ public partial class NewAzureRmVmss : ComputeAutomationBaseCmdlet
5151
"Win2016Datacenter",
5252
"Win2012R2Datacenter",
5353
"Win2012Datacenter",
54-
"Win2008R2SP1",
5554
"Win10")]
5655
public string ImageName { get; set; } = "Win2016Datacenter";
5756

src/Compute/Compute/Strategies/ComputeRp/Images.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,6 @@
7474
"sku": "2012-Datacenter",
7575
"version": "latest"
7676
},
77-
"Win2008R2SP1": {
78-
"publisher": "MicrosoftWindowsServer",
79-
"offer": "WindowsServer",
80-
"sku": "2008-R2-SP1",
81-
"version": "latest"
82-
},
8377
"Win10": {
8478
"publisher": "MicrosoftVisualStudio",
8579
"offer": "Windows",

src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,6 @@ public class NewAzureVMCommand : VirtualMachineBaseCmdlet
221221
"Win2016Datacenter",
222222
"Win2012R2Datacenter",
223223
"Win2012Datacenter",
224-
"Win2008R2SP1",
225224
"Win10")]
226225
[Alias("ImageName")]
227226
public string Image { get; set; } = "Win2016Datacenter";

src/Compute/Compute/help/New-AzVM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ Accept wildcard characters: False
664664
```
665665

666666
### -Image
667-
The friendly image name upon which the VM will be built. These include: Win2022AzureEditionCore, Win2019Datacenter, Win2016Datacenter, Win2012R2Datacenter, Win2012Datacenter, Win2008R2SP1, UbuntuLTS, CentOS, CoreOS, Debian, openSUSE-Leap, RHEL, SLES.
667+
The friendly image name upon which the VM will be built. These include: Win2022AzureEditionCore, Win2019Datacenter, Win2016Datacenter, Win2012R2Datacenter, Win2012Datacenter, UbuntuLTS, CentOS, CoreOS, Debian, openSUSE-Leap, RHEL, SLES.
668668

669669
```yaml
670670
Type: System.String

0 commit comments

Comments
 (0)