cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Summary

This article provides steps for troubleshooting data retrieval from Microsoft App-V.

Synopsis

You are having troubles to retrieve data from Microsoft App-V for Spider.


Discussion

  • Get Credentials to connect to App-V server (keep in mind that if you're running the Command without credentials it is using the logged in user which might end in different results
    $cred = Get-Credential
    

  • Greate a PowerSHell Session on the target (App-V) server
    $psSession = New-PSSession -computerName "appvserver" -Authentication Kerberos -Credential $cred

  • Run the Get-AppVServerPackage command to get a list of packages in the context above
    Invoke-Command -Session $psSession -ScriptBlock {Get-AppVServerPackage } | ft

Whenever you get a PowerShell error, examine and solve it

Additional Information

Products

SWR6

Was this article helpful? Yes No
No ratings
Version history
Last update:
‎Oct 24, 2018 08:40 PM
Updated by: