sohel14_cse_ju
sohel14_cse_ju

Reputation: 2521

How to find the installed application on windows 10

I am developing windows app and i have side-loaded the app. For some debugging purpose i need to inspect the installation directory.

I looked for it in below directory but can't see it there.

C:\Program Files\WindowsApps

Where are the windows 10 apps installed on drive?

Upvotes: 0

Views: 1197

Answers (1)

Pratyay
Pratyay

Reputation: 1301

You can find your application data in the following path ..

C:\Users\Default\AppData\Local\Packages\(Your packageName)

The package name is usually somewhat like this "Microsoft.Windows.Cortana_cw5n1h2txyewy".. you will need to identify your package accordingly..

Upvotes: 1

Related Questions