Skip to content

Commit 14baca0

Browse files
committed
toc
1 parent cf3b5d2 commit 14baca0

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

articles/virtual-machines/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,8 @@
432432
desplayName: export, image version, disk, SIG, gallery
433433
- name: Purchase plan information
434434
href: marketplace-images.md
435+
- name: Deprecated images FAQ
436+
href: deprecated-images.yml
435437
- name: VM Applications
436438
items:
437439
- name: Overview

articles/virtual-machines/deprecated-images.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,9 @@ sections:
8080
8181
8282
83-
Using Powershell commands:
83+
PowerShell:
8484
85-
List VM with deprecated images at version level:
86-
87-
To find VMs using a deprecated Version (Replace highlighted value with version you are looking for):
85+
List VM with deprecated images at version level. To find VMs using a deprecated Version (Replace highlighted value with version you are looking for):
8886
8987
```
9088
(Get-AzVM -ResourceGroupName $rgname -Name $vmname).StorageProfile.ImageReference.ExactVersion
@@ -97,8 +95,8 @@ sections:
9795
$vmsslist | where {$_.virtualMachineProfile.storageProfile.imageReference.Version -eq '14393.4402.2105052108'} | Select-Object -Property ResourceGroupName, Name, @{label='imageOffer'; expression={$_.virtualMachineProfile.storageProfile.imageReference.Offer}}, @{label='imagePublisher'; expression={$_.virtualMachineProfile.storageProfile.imageReference.Publisher}}, @{label='imageSKU'; expression={$_.virtualMachineProfile.storageProfile.imageReference.Sku}}, @{label='imageVersion'; expression={$_.virtualMachineProfile.storageProfile.imageReference.Version}}
9896
```
9997
100-
List VMSS with deprecated images at plan/SKU level
101-
To find VMSS using a deprecated SKU (Replace highlighted value with SKU you are looking for):
98+
List scale sets with deprecated images at plan/SKU level
99+
To find scale sets using a deprecated SKU (Replace highlighted value with SKU you are looking for):
102100
103101
```
104102
$vmsslist = Get-AzVmss
@@ -137,7 +135,7 @@ sections:
137135
138136
- To migrate to another Offer:
139137
140-
Powershell:
138+
PowerShell:
141139
142140
```
143141
Get-AzVMImage -Location "west europe" -PublisherName “MicrosoftWindowsServer”
@@ -151,7 +149,7 @@ sections:
151149
152150
- To migrate to another Plan: Search for other plans under the same offer and then migrate to that plan.
153151
154-
Powershell:
152+
PowerShell:
155153
156154
```
157155
Get-AzVMImage -Location "west europe" -PublisherName “MicrosoftWindowsServer” -Offer “WindowsServer”
@@ -165,7 +163,7 @@ sections:
165163
166164
- To migrate to another version: Search for another version (we suggest migrating to the latest version)
167165
168-
Powershell:
166+
PowerShell:
169167
170168
```
171169
Get-AzVMImage -Location "west europe" -PublisherName “MicrosoftWindowsServer” -Offer “WindowsServer” -Skus "2019-Datacenter-with-Containers"
@@ -180,7 +178,7 @@ sections:
180178
181179
You need to verify that your workloads are supported and will run properly on the new image before migrating your workloads to the new image.
182180
183-
Scale sets, in general, support image reference replacement (https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-upgrade-scale-set#os-updates) but VMs do not.
181+
Scale sets, in general, support [image reference replacement](../virtual-machine-scale-sets/virtual-machine-scale-sets-upgrade-scale-set#os-updates.md) but VMs do not.
184182
185183
186184
@@ -201,7 +199,7 @@ sections:
201199
Generally, yes. However, it is recommended to confirm against the list of valid versions in a Plan using Virtual Machine Images - List - REST API (Azure Compute) | Microsoft Docs
202200
203201
How can I check if a specific image is deprecated or scheduled for deprecation:
204-
You can check if an image is deprecated or scheduled for deprecation using the API (see image below): https://docs.microsoft.com/en-us/rest/api/compute/virtual-machine-images/get?tabs=HTTP.
202+
You can check if an image is deprecated or scheduled for deprecation using the [REST API](/rest/api/compute/virtual-machine-images/get?tabs=HTTP).
205203
If the image is deprecated, you will get a **VM Image is Deprecated** response. If the image is scheduled for deprecation, the response would show the date of the scheduled deprecation.
206204
207205

0 commit comments

Comments
 (0)