G-regL
6/13/2017 - 2:30 PM

SNIP | VMware - VM - Rename VMs

SNIP | VMware - VM - Rename VMs

#VMs that are only lowercase
get-vm | ? Name -cmatch '^[a-z0-9]*$' |%{ Set-VM -VM $_ -Name $_.Name.ToUpper() -Confirm:$False}

#VMs that are anything except uppercase (and templates, and vROps)
get-vm | ? Name -cnotmatch '^[A-Z0-9]*$' |?{$_.Name -notlike "w2k*" -and $_.Name -notlike "*TMP_*" -and $_.Name -notlike "vROps"} |%{ Set-VM -VM $_ -Name $_.Name.ToUpper() -Confirm:$False}