0

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

sysadmin1138
  • 131,083
  • 18
  • 173
  • 296
Shannon Wagner
  • 375
  • 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
  • 16
  • 37
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
  • 375
  • 3
  • 5
  • 20