Basically, is there a way to run a batch file that runs continuously in the background start without having the console window open? My roomate's teenage kids keep killing my UPS control batch file and no matter how many times I tell them not to, they do. Its either make it invisible, or have two batch files running that detect if the other goes diwn and reruns it, or kick the kids off of the fileserver/entertainment center PC...
Also, it has to be able to run at boot and be ready to run tasks, so it can't be relegated to another user desktop.
Any ideas?
Edit: I found a method that might work, but havent tested it yet:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "C:\Batch Files\syncfiles.bat" & Chr(34), 0
Set WshShell = Nothing
Put into a text.VBS type file.
Anyone ever use this? Is the process name still visible in taskmanager?
Edit2: OK, nevermind, the script above works just fine. Maybe someone else will find it useful.