Provisioning Services


Citrix Brings the Love In February–Announcing XenApp / XenDesktop/Provisioning Services 7.8 and StoreFront 3.5

The much awaited improvements to StoreFront have arrived shedding the moniker “StoreFront 3.1 Tech Preview” and instead opting for StoreFront 3.5.  This release brings significant UI improvements as well as a gaggle of enhancements including optimal gateway routing for zones.  Kudos to Citrix to delivering these much desired features and […]


Quick and Dirty Powershell Script to Check PVS Write Cache Sizes

Add-PSSnapin Citrix* $reg=get-brokerdesktop -MaxRecordCount 9999 -RegistrationState Registered -DesktopGroupName VDIWIN7 -adminaddress citrixdc.contoso.local $results=@(); $reg | %{ $comp=$_.hostedmachinename; $cache=dir “\$compD$.vdiskcache” -force; $results+=”$comp;$($($cache.length)/1GB)”} $path0=”D:WriteCachelatest.txt” $path1=”D:WriteCachewc_$(get-date -format `”yyyy-MM-dd_hh-mm_ss`”).txt” $results | out-file $path0 $results | out-file $path1 Using this script you can go to Excel, Data, Import from Text, select Latest.txt, pivot table. Then all you […]