TagStudio icon indicating copy to clipboard operation
TagStudio copied to clipboard

[suggestion] [provided] Executable

Open Conorsmine opened this issue 1 year ago • 0 comments

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.

Conorsmine avatar Apr 25 '24 19:04 Conorsmine