VMware vCenter Documentation Script Version 1.1

This release is a minor release, fixing a few issues and adding one additional set of information. Bug Fixes: Save as PDF not saving Help text in script not showing for Get-Help .\VMware_Inventory.ps1 -full Removed some extra parameters not used in this script Fixed calculation for CPU\Memory heatmap New Data: Added installed VCenter plugins As always, this and many other documentation scripts can be found on CarlWebster.com

VMware vCenter Documentation Script Version 1.0

One of the last (and sometimes most painful) steps in most deployment or upgrade projects is the documentation step. Producing usable, accurate documentation can be difficult but it is one of the most important steps in every technology project – the larger the environment, the more important the documentation. VMware vSphere is one of the most powerful, efficient, secure and robust x86 server virtualization platforms available today. It allows the enterprise to consolidate server and … Read more…

XenApp and XenDesktop 7 Useful Powershell Reference

Here’s a quick list of Powershell commands I find myself using frequently. I’ll keep this updated. Get a list of all brokered connections [code language=”powershell”] Get-BrokerConnectionLog | Sort BrokeringTime [/code] I always sort by BrokeringTime because the order appears to be odd otherwise because the log is updated with the initial brokering time as well as the EndTime. Add an application to multiple delivery groups [code language=”powershell”] Add-BrokerApplication -Name "AppNameHere" -DesktopGroup "NewDesktopGroupHere" [/code] Adding an … Read more…