Thought this would be a no brainer, but I couldn't find this question in here.
Having trouble getting a simple powershell script to work for creating a checkpoint. It appears to complete successfully but I'm not seeing a checkpoint in SCVMM so I'm wondering if I'm missing something here.
Import-Module -Name "virtualmachinemanager"
Get-VMMServer SCVMMSERVER01.CORP.COM
Checkpoint-VM -Name Create-Checkpoint -AsJob -ComputerName COMPUTER001 -SnapshotName "Deployment-$((Get-Date).toshortdatestring())"
Thanks