From fbf74bc2299e2a510f6434fb52c28f8494df5758 Mon Sep 17 00:00:00 2001 From: navba-MSFT <57353862+navba-MSFT@users.noreply.github.com> Date: Fri, 8 Jul 2022 11:04:24 +0530 Subject: [PATCH] {AzureCXP} fixes Azure/azure-powershell#18204 Trusted launch requires the creation of new virtual machines. You can't enable trusted launch on existing virtual machines that were initially created without it. More Info: https://docs.microsoft.com/en-us/azure/virtual-machines/trusted-launch fixes Azure/azure-powershell#18204 --- src/Compute/Compute/help/Set-AzVMSecurityProfile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compute/Compute/help/Set-AzVMSecurityProfile.md b/src/Compute/Compute/help/Set-AzVMSecurityProfile.md index c06abf4359e5..d648efadfbe1 100644 --- a/src/Compute/Compute/help/Set-AzVMSecurityProfile.md +++ b/src/Compute/Compute/help/Set-AzVMSecurityProfile.md @@ -30,7 +30,7 @@ $VM = Set-AzVmSecurityProfile -VM $VM -SecurityType "TrustedLaunch" The first command gets the virtual machine named ContosoVM07 by using **Get-AzVm**. The command stores it in the $VM variable. -The second command sets the SecurityType enum to "TrustedLaunch" +The second command sets the SecurityType enum to "TrustedLaunch". Trusted launch requires the creation of new virtual machines. You can't enable trusted launch on existing virtual machines that were initially created without it. ## PARAMETERS