kenemete2
kenemete2

Reputation: 57

Proper way of starting virtual process

With app-v 5.1 sequencer, i packaged files in [{AppVPackageDrive}]\folder1\folder2\app.exe

and have put .appv package in network share \\192.168.0.2\…\package.appv

Now, from client machine i want to run this app-v package.

This is what i did in powershell as Administrator:

$package = Add-AppvClientPackage -Path \\192.168.0.2\…\package.appv
Publish-AppvClientPackage $package

And this is what i did as normal user:

$p = Get-AppvClientPackage Package
Start-AppvVirtualProcess -AppvClientObject $p

Now the powershell asks me to:

Supply values for the following parameters: FilePath:

What should i enter?

Upvotes: 0

Views: 212

Answers (1)

Bogdan Mitrache
Bogdan Mitrache

Reputation: 11023

You also need to specify which EXE from that package (or outside the package) you want to launch. Get-AppvClientPackage returns only the package object.

Here is the doc on launching a virtual process:

Upvotes: 0

Related Questions