Skip to content

Instantly share code, notes, and snippets.

@csamsel
Created February 6, 2018 10:52
Show Gist options
  • Select an option

  • Save csamsel/4a45318fa94394acf124f7250e8fe31c to your computer and use it in GitHub Desktop.

Select an option

Save csamsel/4a45318fa94394acf124f7250e8fe31c to your computer and use it in GitHub Desktop.
remove invalid VMs from ESXi inventory without vCenter
for a in $(vim-cmd vmsvc/getallvms 2>&1 |grep invalid |awk '{print $4}'|cut -d \' -f2);do vim-cmd vmsvc/unregister $a;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment