This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| vmware:scripts:getinfo [2018/02/02 18:20] – lunetikk | vmware:scripts:getinfo [2018/04/24 17:51] (current) – lunetikk | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Get infos of VMs ====== | ====== Get infos of VMs ====== | ||
| - | This script | + | The scripts |
| + | |||
| + | === Full vCenter === | ||
| <code powershell vminfo.ps1> | <code powershell vminfo.ps1> | ||
| Line 14: | Line 16: | ||
| foreach($vm in $vms){ | foreach($vm in $vms){ | ||
| $vminfo = "" | $vminfo = "" | ||
| - | $VMHost = Get-VM $vm.Name | select Host | + | $VMHost = Get-VMHost |
| $VMHost = $VMHost.Host | $VMHost = $VMHost.Host | ||
| $VMNetwork = Get-VM $vm.Name | Select {@($_.guest.IPAddress[0])} | $VMNetwork = Get-VM $vm.Name | Select {@($_.guest.IPAddress[0])} | ||
| Line 60: | Line 62: | ||
| (Get-Content $targetfile).replace(' | (Get-Content $targetfile).replace(' | ||
| </ | </ | ||
| + | |||
| + | === Host CPUs === | ||
| + | |||
| + | <code powershell hostcpus.ps1> | ||
| + | #Remove user and pass for pass-through auth | ||
| + | Connect-VIServer -Server < | ||
| + | # | ||
| + | |||
| + | $targetfile = " | ||
| + | |||
| + | get-vmhost | Select name, | ||
| + | </ | ||
| + | |||
| + | |||