misc/powershell/snapshots4everyone.ps1
adam 2d132e2fbf other old stuff for archiving.
yes I remembered to strip my sublime text license key out of the w10 boilerplate :P
2023-03-07 10:59:06 -05:00

7 lines
263 B
PowerShell

vboxland
./VBoxManage list vms |
Select-String -Pattern "\{[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}\}" |
Foreach-Object {
$vmName = """$($_.Matches[0])"""
./VBoxManage.exe snapshot $vmName take "$(Get-Date -Format "yyyy-MM-ddThh-mm-ss.ffff")"
}