0

How can I clear the cache of all settings and configurations for all of my Application Virtualization (App-V) applications?

sysadmin1138
  • 133,124
  • 18
  • 176
  • 300
Shannon Wagner
  • 385
  • 3
  • 5
  • 20

2 Answers2

1

The App-V repair command reverts an application's virtualized filesystem back to it's original state.

The App-V Client UI provides access to the repair command:

enter image description here

Using Powershell you can achieve the same thing:

Repair-AppvClientPackage -Name 7-zip
alx9r
  • 1,643
  • 3
  • 17
  • 38
0

You can use the sftmime command to change and configure App-V packages, and applications.

To clear all settings and configurations for all of your App-V applications, run the following command from a command prompt:

sftmime clear obj:app

By default, sftmime is located in the following folder:

C:\Program Files\Microsoft Application Virtualization Client
Shannon Wagner
  • 385
  • 3
  • 5
  • 20