07/12/23 01:05:05 MvfwMqql0
というわけで、Automatorで"AppleScriptを実行"を選んで下記をコピペでそれっぽい動作になるはず
もち仮想マシン名は自分のに変更してくださいな
自己責任でどぜう
on run {input, parameters}
tell application "VMware Fusion"
activate
end tell
tell application "System Events"
tell process "VMware Fusion"
keystroke "L" using command down -- virtual machine libraries
delay 0.1
keystroke "Windows XP Home Edition" -- virtual machine name
delay 0.1
key code 36 -- enter key
delay 0.2
key code 36 using control down & command down -- full screen
end tell
end tell
end run