(Before we begin, just a note that I'm not an experienced coder. This question is a duplicate, however the referred questions are highly outdated, so some things might have changed in the last 10 years.)
I'm attempting to help a project out on GitHub, which asks for an .exe version of a VBS script.
The VBS script in question is this:
Set oShell = CreateObject ("Wscript.Shell")
oShell.Run "cmd /c python 1fichier-dl/gui.py", 0, false
This basically runs a Python script that makes a GUI for the program.
At first, I looked for a VBS to EXE converter. Programs like VBSedit did not work. I do know that VBS is not a compiled language, but I don't know how to make an equivalent program (in say, Python) that can run a specific program (with a path that is not specifically tied to a users' system).
So, does anyone know
- Any other (working) VBS to EXE (or to a compiled language) program that suites my needs?
- A code example (in a language like Python) that I can use to execute the program (gui.py, it's in a folder inside the main one named 1fichier-dl)?