2

Using VMWare PowerCLI, how can I set a snapshot of a VM without getting the confirmation prompt?

Get-Snapshot -VM VM -Name 'snapshotname'
JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
l0sts0ck
  • 373
  • 1
  • 4
  • 10

1 Answers1

1
Get-Snapshot -VM VM -Name 'snapshotname' -confirm:$false
JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
Ian M.
  • 91
  • 1
  • 6