Month July 2013

bat file as administrator

I wanted to be able to run a bat file as administrator in order to have an easy shortcut to edit my windows hosts file. Here’s what I found Shortcut to edit windows hosts file as Admin Creating the batch…

restart service over ssh

I recently ran in to trouble restarting neo4j over ssh here’s the fix: From machine calling neo4j host ssh -f $USER@$HOST ‘sh -c “( (nohup sudo restart 2>&1 >output.file </dev/null) & )”‘ Target Machine Sudoers Replace “someuser” with whatever…