-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding .exe subprocess on windows host #140
Comments
Hi @georgebaileyster , You can refer to this subervice example on how to setup a bat script to start your own exe file. RequirementsIn general, your exe must satisfy the following requirements in order to be start with ArozOS
Setup Folder StructureIf your exe files satisfy the above requirement, you can put the exe file under the subservice folder under ArozOS root folder. It is recommend that the exe file follows the name of the folder. For example, you have a exe named "runthis.exe", then you can name your folder "runthis" , so the whole path will be
and then, you create an empty text file name Finally, create a file name
ArozOS will pass two parameters to the application, where %2 is the port in which your exe file should launch its web UI on. The port name will include ":" in front of the number (e.g. :8080 instead of just 8080). Use something like Setup Launch ModesIn order to let ArozOS knows how to launch your exe, you will also need a file named
Most of the options here are easy to understand. The most important one is StartDir, which is the path of the web ui is required to load. Generally, if you access your exe file web UI (assuming localhost) at
Then for StartDir, you need to fill in After the setup is done, restart your ArozOS and you will be able to see your subservice show up in ArozOS. |
Hi Toby, Many thanks for the insight will take a closer look over the weekend. However, I have noticed that there is no apparent way to block users from accessing the management gateway / system settings. This obviously means there is in fact no user control a anyone can do everything including sytem level and user creation and deletion. Is there a simple work around for this? Otherwise it is the perfect solution for our needs. Thanks. |
Well the user can still access the html files (front-end) of the modules. However, the agi runtime scope will block the user access to backend if the module is excluded from the user access module list, which is by design. The same goes with system settings. The html file are accessible but the user will not be able to load data / or interact with it. |
Hi, is there a simple way to manually install an .exe sub-process under a windows host OS? It is already a pre-built standalone application. Thanks for any suggestions.
The text was updated successfully, but these errors were encountered: