Reputation: 485
I have a windows 10 uwp app that runs fine when i have it sideloaded in my computer or any users computer where they have full admin priviliges. i use appxbundle and click on install button to install the same. Even powershell installation works fine.
Some of our clients don't have access to C: drive and the installation of UWP app is incomplete or fails because they don't have any install permissions.
Is it possible to run UWP app stand alone or specify a different install location which is other than C drive where user has both read and write permissions .
I tried to use .exe generated in the bin folder of uwp x64/Release folder but that doesn't run as uwp doesn't support exe
Upvotes: 0
Views: 1130
Reputation: 1
follow these steps
Press Windows key + I together to open Settings.
Click on System > Storage.
Click on Change where new content is saved under More storage settings.
Select D drive using the drop down menu under New apps will save to.
You can also install an app and later move the app to a different drive.
To move an app to a different drive:
Press Windows key + I together to open Settings.
Click on Apps > Apps & features.
Click on the app that you want to move, and select Move.
Select the destination drive.
Upvotes: 0
Reputation: 8666
Currently, there is no such feature in UWP. UWP can't change the install process when installing, which means UWP apps can't choose where apps should be installed.
But there is a setting for Windows 10 that could change the location where the UWP apps are installed.
You can choose one drive from the drop-down menu under "New apps will save to" and then click Apply. A new folder called "WindowsApps" will be created in the drive you've chosen. And any new UWP app will be installed in this folder. Please note Windows 10 will only install new apps to the currently selected location. Existing apps do not get moved to the new location.
Upvotes: 1