Boot Runner 2 supports auto-login to launch virtual machine operating systems automatically. When users log out, shutdown or suspend a virtual machine, it will not log the user out of the OS X account automatically. Boot Runner 2 contains hooks that will help automate the logout of a virtual machine from the host OS X account and return to the Boot Runner Selection Screen.
The basic setup involves setting a Windows logout script to generate a particular file whenever the user logs out, shuts down or suspends the virtual machine. Boot Runner sees the file and runs a script to immediately log out of the OS X host account.
Depending on how the virtual host is configured you may need to create a share that can be read from and written to by both Windows and OS X. This share will contain a file that, when created, triggers the OS X account logout.
The file created by the Windows logout script is located at /Users/Shared/.com.twocanoes.bootrunnerlogout or defined by “LogoutFile" preference key. Boot Runner sees the file and runs a OS X script located at /Library/Application Support/Twocanoes/Boot Runner/logoutscript or path defined by “VMPostrunScript” preference key. You may modify the Boot Runner logout script to include other actions.
By default the logout script at /Library/Application Support/Twocanoes/Boot Runner/logoutscript simply logs out the user:
osascript -e 'tell application "loginwindow" to «event aevtrlgo»'
[Note: see this project for a customizable Logout On Idle app]
In Windows, create a batch file that generates a file in /Users/Shared/.com.twocanoes.bootrunnerlogout file (please note the "." at the beginning of the file name which make this file invisible and less likely to be inadvertently deleted or tampered with by users).
There are multiple ways to generate a file in Windows. In this example, the batch file script creates the file .com.twocanoes.bootrunnerlogout by inserting the text "deleteme" into the file stored in a shared location between OS X and Windows (the "deleteme" text is not required, just included for illustration). The share is represented by a volume named psf. The syntax is:
echo deleteme > \\psf\shared\.com.twocanoes.bootrunner.logout
Place the batch file in C:\Users\Public\Documents. To set this batch script to run whenever logging out of Windows, go to Run-> gpedit.msc and select Windows Settings-> Scripts-> Logoff
Click Add and browse to the batch file, select and it will appear in the scripts window.
Now, when a user logs off of the Windows virtual machine, the file .com.twocanoes.bootrunnerlogout will be created in the shared location. Boot Runner will detect the existence of the file and run a script to log out of the host OS X account, placing the user back at the Boot Runner Selection Screen. For cleanup, Boot Runner deletes the file .com.twocanoes.bootrunnerlogout.
Note:
Comments