Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to retrieve the Azure VM deallocated date using PowerShell?
To get the Azure VM deallocated date using PowerShell we can use the below command.
PS C:\> Get-AzVM -VMName Win2k16VM1 -ResourceGroupName TestVMRG -Status
Here it will retrieve the PowerState of the VM.

To retrieve the date when the VM was deallocated, we need to filter out the result.
PS C:\> $vm = Get-AzVM -VMName Win2k16VM1 -ResourceGroupName TestVMRG - Status PS C:\> $vm.Statuses[0].Time
Output
Saturday, June 19, 2021 12:49:16 PM
Advertisements
