TagStudio
TagStudio copied to clipboard
[suggestion] [provided] Executable
Heya, it's me again;
I created a small .exe file that simply executes the start_win.bat file via the system call start start_win.bat.
This is the whole C-Code I used to create the .exe:
#include <stdlib.h>
int main(void) {
system("start hide_bat.vbs");
return 0;
}
I also then used Resource Hacker to change the icon to the tagstudio\resources\icon.ico provided by the source-code.
The code, exe and vbs file(s) are provided here.