Copy all Tags to your DRaaS vCenter
Copy all required tags to your recovery vCenter to bring your DR Plans into compliance
353 total views, 6 views today
Copy all required tags to your recovery vCenter to bring your DR Plans into compliance
353 total views, 6 views today
On occasion, I’ve noticed that people can sometimes forget to take a host out of maintenance mode in vROPs after completing some work in vCenter. I have created a short PowerCLI script that will pull a list of hosts from a specified CSV file, connect to your vCenter & vROPs then exit the listed hosts
917 total views, 1 views today
Just a quick post to say that I’ve started uploading some of the scripts I’ve been using to my GitHub Repository. More will come over the next few weeks Support PowerCLI Menu vSphere Replication Failover Menu 1,732 total views, 1 views today
1,732 total views, 1 views today
A PowerCLI function that prompts you to select from your Clusters, Hosts, Datastores & Networks. It will then deploy a VM according to the sizes you input 1,610 total views, 1 views today
1,610 total views, 1 views today
For those of us still relatively new to PowerCLI and working towards automating as many robotic tasks as possible, there is a handy tool in vCenter called Code Capture. This has been available since vCenter Server Appliance (VCSA) 6.7U2 in the developer centre so its not exactly new but a lot of people don’t realise
2,103 total views, 2 views today
A super quick post about an issue you’re only really likely to see the first time you use PowerCLI on a system. If youre vCenter is using a certificate that’s not trusted by your device you will see the error: “The SSL Connection could not be established, see inner exception” Fortunately, it’s a quick fix
5,005 total views, 1 views today
ESXi6.5 Security Hardening Guide OK, take a seat… this is going to be a long script! I have put together a menu system that will report on all ESXi6.5 Security Hardening Guide settings that are NOT DEFAULT, if you have made additional changes to your configuration you should go through the entire SHG to ensure
4,189 total views, 5 views today
The script below pulls a list of your clusters with their CPU & Memory Total Capacity as well as how much has been provisioned. It then displays the ratio to physical to virtual to help you maintain your over-commitment ratios. Its setup as a function so you can choose whether to display text on screen
1,571 total views, 2 views today
The script below will pull a list of all of your hosts and display the real time metrics for Power Usage, CPUusage% & Memoryusage% to allow you to make changes to your power settings etc and see what impact it has on utilization for a given % of demand. get-vmhost | Select name, @{N=“Time“;E={$(get-date -f
4,399 total views, 1 views today
The below command will create a host profile for each host found in $global:CLUChoice, The profile will be named “VMhostName-Profile” and will include the date the profile was taken in the description $global:DCChoice – Datacenter$global:CLUChoice – Cluster Get-Datacenter $global:DCChoice | Get-Cluster $global:CLUChoice | Get-VMHost | ForEach-Object -Process { New-VMHostProfile -Name “$($_.Name)-Profile” -Description “$($_.Name)) Profile. This
1,589 total views, 1 views today