I wanted to run a batch file invisibly, without cmd.exe showing. The solution I found online was to make a .vbs file:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "target-bat-file.bat" & Chr(34), 0
Set WshShell = Nothing
It works but I can't find the process in Task Manager for the life of me. I'd appreciate it if you could point me to it.
Knowing barely anything about cybersec, it does make me wonder how secure Windows really is but that's outside the scope of the post :)
Thank you!