JustinCEO wrote:On the ancient guest OS X it did ask me to confirm it was a standard American keyboard and had me hit a couple of keys
That process hasn't changed as far as I know. In any event, in order to force OSX to ask you again for the layout, some people suggested to delete "
/Library/Preferences/com.apple.keyboardtype.plist", but that file didn't exist on my real OSX 10.11.6 installation. It did exist on my 10.6 VM.
Looking around I found another file that might do what you want, "
/Library/Preferences/com.apple.HIToolbox.plist":
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AppleCurrentKeyboardLayoutInputSourceID</key>
<string>com.apple.keylayout.US</string>
<key>AppleDefaultAsciiInputSource</key>
<dict>
<key>InputSourceKind</key>
<string>Keyboard Layout</string>
<key>KeyboardLayout ID</key>
<integer>0</integer>
<key>KeyboardLayout Name</key>
<string>U.S.</string>
</dict>
<key>AppleEnabledInputSources</key>
<array>
<dict>
<key>InputSourceKind</key>
<string>Keyboard Layout</string>
<key>KeyboardLayout ID</key>
<integer>0</integer>
<key>KeyboardLayout Name</key>
<string>U.S.</string>
</dict>
</array>
</dict>
</plist>
This seems like the file responsible for this. I deleted
both files, and OSX 10.6 asked me for the layout again, on the next reboot.
But this is definitely not a VirtualBox problem, I suggest you treat it like that...