I am kicking around ways to update Google Drive on our Macbooks.
The easiest way seems to be to script it:
Kill the process
Copy the App
Start the process
It seems like a script would be the best option. I am not a script writer, but here is my thought
killall "Google Drive"
cp -f "[networklocation]/Google Drive.app" ~/Applications
[Start the process]
Now how to actually write it is what I am trying to figure out (I am a Windows guy from WAY back and new to Bash). Can anyone get me started?