I have created a Basic MSI project using InstallShield 2014 to generate MSI release packages for my desktop application. I am using Installscript rule files as custom actions to install dependency libraries & driver packages for my desktop app and it is working fine in MSI build as expected.
Now I want to generate UWP app releases to install the same application in Windows 10 S machines from Windows Store. So I have downloaded & installed a trial version of Installshield 2016 professional edition which will support us to generate UWP app packages from existing MSI project - http://learn.flexerasoftware.com/IS-WBNR-InstallShield-2016-Whats-New.
I have followed these steps to generate UWP app from my existing Basic MSI project - https://www.youtube.com/watch?v=0K5XTJ2aV6o. UWP app release package (.appx) generated successfully and installed in Windows 10 machine. But it ignored my custom action scripts and it is not installed any dependency libraries and drivers. I am getting installation success message but actually, it installed nothing.
I have noticed the build logs and found the following warning messages. Looks like my custom scripts ignored in UWP app package. Do we need to change any settings to make it accept my custom actions?
ISDEV: warning -9018: Custom action 'ISLockPermissionsCost' will be ignored
ISDEV: warning -9018: Custom action 'ISLockPermissionsInstall' will be ignored
ISDEV: warning -9018: Custom action 'MY_OLD_APP_REMOVAL' will be ignored
ISDEV: warning -9018: Custom action 'MY_DRIVERS_INSTALLATION' will be ignored
ISDEV: warning -9018: Custom action 'MY_DRIVERS_UNINSTALLER' will be ignored
ISDEV: warning -9018: Custom action 'MY_CONFIG_FILE' will be ignored
ISDEV: warning -9018: Custom action 'MY_SET_DEFAULT_OPTIONS' will be ignored
Please provide me the way to resolve this problem.