The Set-AzVMOperatingSystem cmdlet sets operating system properties during the creation of a new virtual machine.
You can specify logon credentials, computer name, and operating system type.
Examples
Example 1: Set operating system properties for a new virtual machine
The first command converts a password to a secure string, and then stores it in the $SecurePassword variable.
For more information, type Get-Help ConvertTo-SecureString.
The second command creates a credential for the user FullerP and the password stored in $SecurePassword, and then stores the credential in the $Credential variable.
For more information, type Get-Help New-Object.
The third command gets the availability set named AvailabilitySet03 in the resource group named ResourceGroup11, and then stores that object in the $AvailabilitySet variable.
The fourth command creates a virtual machine object, and then stores it in the $VirtualMachine variable.
The command assigns a name and size to the virtual machine.
The virtual machine belongs to the availability set stored in $AvailabilitySet.
The next four commands assign values to variables to use in the following command.
Because you could specify these strings directly in the Set-AzVMOperatingSystem command, this approach is used only for readability.
However, you might use an approach such as this in scripts.
The final command sets operating system properties for the virtual machine stored in $VirtualMachine.
The command uses the credentials stored in $Credential.
The command uses variables assigned in previous commands for some parameters.
Example 2: Set operating system properties for a new virtual machine with hot patching enabled
The first command converts a password to a secure string, and then stores it in the $SecurePassword variable.
For more information, type Get-Help ConvertTo-SecureString.
The second command creates a credential for the user FullerP and the password stored in $SecurePassword, and then stores the credential in the $Credential variable.
For more information, type Get-Help New-Object.
The third command gets the availability set named AvailabilitySet03 in the resource group named ResourceGroup11, and then stores that object in the $AvailabilitySet variable.
The fourth command creates a virtual machine object, and then stores it in the $VirtualMachine variable.
The command assigns a name and size to the virtual machine.
The virtual machine belongs to the availability set stored in $AvailabilitySet.
The next four commands assign values to variables to use in the following command.
Because you could specify these strings directly in the Set-AzVMOperatingSystem command, this approach is used only for readability.
However, you might use an approach such as this in scripts.
The final command sets operating system properties for the virtual machine stored in $VirtualMachine.
The command uses the credentials stored in $Credential.
The command uses variables assigned in previous commands for some parameters.
The command enables Hotpatching on the virtual machine.
Example 3: Set operating system properties for a new Linux virtual machine
The first command converts a password to a secure string, and then stores it in the $SecurePassword variable.
For more information, type Get-Help ConvertTo-SecureString.
The second command creates a credential for the user FullerP and the password stored in $SecurePassword, and then stores the credential in the $Credential variable.
For more information, type Get-Help New-Object.
The third command gets the availability set named AvailabilitySet03 in the resource group named ResourceGroup11, and then stores that object in the $AvailabilitySet variable.
The fourth command creates a virtual machine object, and then stores it in the $VirtualMachine variable.
The command assigns a name and size to the virtual machine.
The virtual machine belongs to the availability set stored in $AvailabilitySet.
The next two commands assign values to variables to use in the following command.
The final command sets operating system properties for the virtual machine stored in $VirtualMachine.
The command uses the credentials stored in $Credential.
The command uses variables assigned in previous commands for some parameters.
The command sets the patch mode value on the virtual machine to "AutomaticByPlatform".
Example 4: Set operating system properties with a Credential parameter when the VM does not have an OSProfile.
Specifies the user name and password for the virtual machine as a PSCredential object.
To obtain a credential, use the Get-Credential cmdlet.
For more information, type Get-Help Get-Credential.
Specifies a string to be passed to the virtual machine. For more information see Custom Data on Azure VMs.
Note: It is not recommended to store sensitive information in custom data.
Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
Specifies the mode of in-guest patching to IaaS virtual machine.
Possible values are: AutomaticByPlatform - Patch installation for the virtual machine will be managed by Azure. Use with -Windows or -Linux. Requires -ProvisionVMAgent. Requires -EnableAutoUpdate when used with -Windows. AutomaticByOS - Patch installation for the virtual machine will be managed by the OS. Use with -Windows. Requires -ProvisionVMAgent and -EnableAutoUpdate. Manual - You control the application of patches to a virtual machine. Use with -Windows. Requires -ProvisionVMAgent. ImageDefault - Patch installation managed by the default settings on the OS image. Use with -Linux.
Specifies the local virtual machine object on which to set operating system properties.
To obtain a virtual machine object, use the Get-AzVM cmdlet.
Create a virtual machine object by using the New-AzVMConfig cmdlet.
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable,
-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see
about_CommonParameters.
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.