Will this survive an update? It lets me (unelevated) start and stop the Everything service.
If updating merely stops the service and the client, replaces Everything.exe, and starts them again, I suspect the answer is "Yes". If updating uninstalls/installs the service, I suspect "No".
I don't use Everything often ... only when experimenting. So I don't want it running all the time. After the command above, toggling between using Everything and not using it is relatively easy (without a UAC prompt).
Code:
subinacl /service Everything /grant=zz\vefatica=TOP
I don't use Everything often ... only when experimenting. So I don't want it running all the time. After the command above, toggling between using Everything and not using it is relatively easy (without a UAC prompt).
Code:
iff "%1" eq "1" then
net start everything
delay 2
start g:\tc20\everything.exe -startup
elseiff "%1" eq "0" then
start g:\tc20\everything.exe -quit
net stop everything
endiff