I have a Python script which I ran pyInstaller on to create a portable windows exe which runs on Windows 7,8, and 10 devices. I signed the exe with Certum Open Source code signature. The app works great but I am finding:
- Windows Smartscreen warns users that I am an unknown developer and makes it too scary for people to run my app.
- Norton quarentines my app.
These are not good hoops for my users to have to jump through. I'm wondering what I can do to immediately address these.
As a secondary goal I am hoping there might be a way to submit the script to the Windows store. I am guessing I might need to have an installer for it instead of have it run as a portable exe? Do I need to create an appx? If so, what would the entry point be for a Python script frozen by pyInstaller?
In case it isn't obvious, I'm not a Windows programmer so I'm a bit lost.