![]() |
|||||||||||
|
#1
|
|||
|
|||
|
How to automatically shut-down VMWare before SD backup?
Is there a simple way to do this? My VMWare is already configured to save state before quitting. All I want is a way for SuperDuper to ask VMWare to quit (and wait for the quit) before it runs its backup.
Separately, I am getting an "must be unlocked" error when my scheduled SD job tries to run. If I run it manually I have to type in credentials. How do I set up the scheduled job to not require manual intervention? Thanks! |
|
#2
|
||||
|
||||
|
Well, you could try to use a before-copy shell script to do it. You'd want to run an Applescript that would send a "quit" event to VMWare. The script would look something like
Code:
#!/bin/sh osascript /path/to/the/applescript Code:
tell application "VMWare" to quit
__________________
--Dave Nanian |
|
#3
|
||||
|
||||
|
Or embed the AppleScript directly in the shell script:
Code:
#!/bin/sh osascript -e 'tell application "VMWare" to quit' |
|
#4
|
||||
|
||||
|
Nope, that should work as well, but I was replying on my phone and couldn't remember the "-e".
__________________
--Dave Nanian |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Cancel shut down during backup | krumeich | General | 3 | 12-17-2008 08:38 AM |
| Automated Backup Scheme with History | midget2000x | General | 5 | 08-31-2008 01:11 AM |
| Server drive won't mount after backup | rhennosy | General | 1 | 11-09-2007 03:49 PM |
| (Zero-length) File caused SuperDuper to abort backup | alancfrancis | General | 7 | 08-31-2005 10:42 AM |
| Shut down after backup | bradleyjames | General | 1 | 07-09-2005 04:52 PM |