I've built a Windows 10 Hosted Web App (HWA) using MS Visual Studio 2015. Now, I've investigated if there is a way to create a standalone installer for it - which bundles the generated .appx
and related files into a one-click executable. Sadly, so far, I've only succeded to sideload the HWA bundle by using the provided PowerShell script.
In this context, I've looked at the NSIS (Nullsoft Scriptable Install System) to create an Installer for this HWA. So far there seems to be only "preliminary Windows 10 support" according to the latest changelogs (see section Version F.2 3.0 Beta 2).
So my questions are:
- How can I create a standalone installer without the need to invoke PowerShell installation routines?
- What does "preliminary Windows 10 support" mean for
appx
applications?
Note:
I'm interested in non-Windows-Store based approaches as the app should only be distributed to a group of verified customers by local installation.
EDIT-1:
I'm open to ideas on other (non NSIS-based) installer creation approaches.