##========================================================== # Virtualistic.nl presents : Get App-V Application List # Created by : Aleks Nikolic # Created on : 17-12-2009 # Version : 1.0 ##========================================================== $MachineName = read-host "Enter name of the Computer to list the App-V Apps from" $reg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey('LocalMachine', $MachineName) $regKey= $reg.OpenSubKey("SOFTWARE\Microsoft\SoftGrid\4.5\Client\Applications\" ) Write-Host "=============================================" Write-Host "Available App-V Applications on" $MachineName Write-Host "=============================================" Foreach($sub in $regKey.GetSubKeyNames()){$sub}