I have a python file, which contains a gui 'window.py', a powershell script 'get-aduser.ps1'. Is it possible to bundle these two into one exe?
The window.py file contains a combobox which runs the .ps1 script when run. The combobox is then filled with the output of the Powershell script.
Reason why I want to do this:
My colleagues should run the programm on their client, without having to install python and all the libraries used.
Everyone has the RSAT tools so this shouldnt be a problem when the powershell script is executed.