Merging dev with master #7

Merged
ofilter merged 14 commits from dev into master 2023-05-21 22:24:36 +02:00
Showing only changes of commit 4951c160b9 - Show all commits

View File

@ -105,9 +105,9 @@ class VM_SCVMM:_Generic_VirtualMachine
{
return @{"PoweredOn"=$true;"PoweredOff"=$false}[$this.__VMObject.VirtualMachineState]
}
# __Load_Snapshots(){
# Get-SCVMCheckpoint -VM $this.Get_Name() # -VMMServer $this.__ServerObject.url
# }
__Load_Snapshots(){
Get-SCVMCheckpoint -VM $this.Get_Name() # -VMMServer $this.__ServerObject.url
}
#Get-SCVMCheckpoint
}
@ -124,9 +124,9 @@ class VM_vSphere:_Generic_VirtualMachine
{
return @{ "PoweredOn" = $true; "PoweredOff" = $false }[$this.__VMObject.PowerState]
}
# __Load_Snapshots(){
# Get-Snapshot -VM $this.Get_Name() # -VIServer $this.__ServerObject.url
# }
__Load_Snapshots(){
Get-Snapshot -VM $this.Get_Name() # -VIServer $this.__ServerObject.url
}
}
class VirtualizationServer