Standalone on Windows: (auto)start NCC in the background (no cmd window visible)

I found a way to start NCC in the background (no CMD window will stay visible), so there will be just the java process running.

What you have to do:
- Paste the two files (attachment) in the directory where your runNcc.bat is located
- Run StartNccInvisible.bat to run Ncc in the background

Of course you can create a shortcut for StartNccInvisible.bat anywhere for convenience or put it in the autostart.

Content of invis.vbs:
CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False

Content of StartNccInvisible.bat:
wscript.exe "invis.vbs" "runNcc.bat"
(wscript.exe is a windows application)