Forum Discussion
/appvve equivalent
Hi Dian,
I work at a large ISV on a product that allows roaming application settings across sessions and devices, independent of the Windows user profile.
For native Win32 applications, our agent can directly load and save these settings when the app starts and exits. For App-V apps, we use /appvve to launch our agent into the virtual environment, so that it can load and save the settings from inside of the bubble.
For MSIX I'd ideally see something like /msixve (:-), but if there would be another way for code running outside the VE to access the settings in the container, that might also work.
Happy to discuss this further if that's useful.
Thanks,
Arnout
Hi,
I don't have that much experience with App-V, so I might be missing something here.
Isn't the appve switch similar in functionality with the cmdlet Invoke-CommandInDesktopPackage?
https://docs.microsoft.com/en-us/windows/uwp/porting/desktop-to-uwp-debug#test-your-app
P.S. We have an update in progress for this free tool, to also support msix/appx packages on top of its current support for app-v. It should help out a little bit more with debugging. (If you have any tips/improvements to recommend leave me a PM)
- Arnout GrootveldJul 24, 2018Copper Contributor
Thanks, Bogdan, you're not missing anything :-) Invoke-CommandInDesktopPackage is pretty much the equivalent of https://docs.microsoft.com/en-us/powershell/module/appvclient/start-appvvirtualprocess, so thank you for bringing that to my attention!
Unfortunately, behind the scenes the implementation has changed from a https://support.microsoft.com/en-us/help/2848278/how-to-launch-processes-inside-the-app-v-5-0-virtualized-environment to an undocumented COM interface, at least for now. Still, stuff to experiment with :-)