VDI – Virtual Desktop
How to ThinApp the vSphere 5.1 vCenter Client for Windows 7
Creating a ThinApp package of the vSphere client is much like creating other ThinApp packages. Lets start by starting the ThinApp Setup Capture client and taking a pre-scan of the target system.
Posted in Desktop Virtualization, ThinApp, VDI - Virtual Desktop, View, vmware | 5 Comments »
How to ThinApp Microsoft Office 2010
So, open ThinApp install scan.. take your pre-scan, and get office installed. During the install, make sure you select everything to run from computer, so that every component gets installed.
Posted in Desktop Virtualization, ThinApp, VDI - Virtual Desktop, View, vmware | No Comments »
How to ThinApp Firefox
First… download Firefox.. duh right :) Then open your ThinApp setup capture application, it will illustrate the steps required to ThinApp your application. Click Next.
Posted in Desktop Virtualization, VDI - Virtual Desktop, View, vmware | No Comments »
Find the installed Citrix Receiver version using Windows Powershell
$workstations = Get-Content .\pclist.txt $datestamp = Get-Date -Format “yyyyMMdd” foreach ($workstation in $workstations) { $cdviewer = “\\$workstation\C$\Program Files\Citrix\ICA Client\CDViewer.exe” if (Test-Path $cdviewer) { $citrixver = (Get-Command $cdviewer).FileVersionInfo.FileVersion } else { $citrixver = “Not Installed” } “$workstation | $citrixver” | Out-File -Append .\citrix_results-$datestamp.txt }
Posted in Citrix, Citrix XenDesktop, Microsoft, Powershell, VDI - Virtual Desktop | 1 Comment »