open-cue-service
open-cue-service copied to clipboard
Hide program
I have a suggestion, it is quite annoying to have the console open all the time, the best would be to make an option that would hide the window or that would allow the window to be reduced in the system tray.
You can start the program via windows task scheduler, then it will not be visible and you can also start it automatically on pc start.
In the Windows task scheduler, create a new task, in the "General" tab select "Run whether user is logged on or not" option under "Security options". Also enable "Do not store password" option. In the "Action" tab add a new action, which runs the .bat
script.
Task scheduler should work, but just adding an alternative here, if you run this AHK script as admin, it should hide the window if you have not renamed the exe.
`SetTitleMatchMode,2
idToHide:="open-cue-service.exe ahk_class ConsoleWindowClass ahk_exe open-cue-service.exe"
WinHide,% idToHide`
But keep in mind, you will need to use task manager or another method to kill the exe if something goes wrong say with icue and the service crashes. For me I tend to keep it on a second virtual desktop so its out of the way but easy to close for any reason.