Author Topic: Actual Apple keyboard... help...  (Read 1340 times)

0 Members and 1 Guest are viewing this topic.

Offline Micky Love

  • Thread Starter
  • Posts: 10
Actual Apple keyboard... help...
« on: Sat, 10 January 2015, 16:30:32 »
Hi !

Ok, I know, that's not a mechanical keyboard, but since it's a keyboard forum, you guys maybe know the answer...
I would like to be able to use my Mac keyboard on my newly build pc. Problem is that it's not mapped correctly
for windows... Is there an easy way to remap it ? maybe with a driver/mapping software ?? I have search the net
but I didn't find any easy/safe solution...

Any input is welcome.

Thanks !

I'm talking about this keyboard:http://store.apple.com/ca/product/MB110LL/B/apple-keyboard-with-numeric-keypad-english-usa

Offline Daniel Beardsmore

  • Posts: 1874
  • Location: Hertfordshire, England
  • RIP
    • Boring twaddle
Re: Actual Apple keyboard... help...
« Reply #1 on: Sat, 10 January 2015, 17:15:18 »
There's two approaches:

1) Update the Registry: I use SharpKeys on my ThinkPad to make Alt Gr into RWin

2) Runtime remapping: I use AutoHotkey for much of my remapping

Option (1) requires a reboot for each change, and therefore isn't overly suited for keyboard swapping.

Option (2) can be stopped, started and amended at will with no alterations to the OS configuration.

Option (2) will typically fail to operate when the current window represents a high-integrity process, being any elevated process, and any program set to run in high integrity without elevation, such as Task Manager in Windows 8 (don't know about Vista/7 here). A code-signed program placed into a correct directory (e.g. Program Files or Program Files (x86)) can talk to elevated processes, but unless AutoHotkey is now signed, all remappings are suspended when the active process is high-integrity.

Also, option (2) does not work within remote controls sessions (remotely controlling another computer), since remote control clients ignore software hooks, while option (1) works perfectly.

Which approach you choose depends on your needs.

With AutoHotkey, the following will reverse Windows and alt:

LWin::LAlt
LAlt::LWin
RWin::RAlt
RAlt::RWin

There are other oddities though, such as figuring out how to get print screen back.
Bore Awards
Most Boring Person on the Planet – 2011 Winner


Offline jacobolus

  • Posts: 3670
  • Location: San Francisco, CA
Re: Actual Apple keyboard... help...
« Reply #3 on: Sat, 10 January 2015, 17:32:23 »
Turn your PC into a hackintosh. BAM, problem solved.

Offline blazarcher

  • Posts: 18
Re: Actual Apple keyboard... help...
« Reply #4 on: Sat, 10 January 2015, 19:05:02 »
I'd definitely try AutoHotkey, it's really easy to use and it should work without much problems.
Filco Majestouch Ninja - Poker I

Offline Coreda

  • Posts: 780
Re: Actual Apple keyboard... help...
« Reply #5 on: Sat, 10 January 2015, 19:21:23 »
Autohotkey is great. I have it running for all kinds of useful things (word replacement, focus-less scroll, and others) although I don't use it for most of my remappings as I've found it doesn't work 100% of the time. For single key remappings I use KeyTweak, however this updates the system as Daniel Beardsmore mentioned in the first approach above.

Offline spiceBar

  • Posts: 998
    • ChessTiger.com
Re: Actual Apple keyboard... help...
« Reply #6 on: Sat, 10 January 2015, 20:32:13 »
Turn your PC into a hackintosh. BAM, problem solved.

I have standardized on PC keyboards. So even on my Macs, which includes one Hackintosh, I always use PC keyboards. :)

Offline Micky Love

  • Thread Starter
  • Posts: 10
Re: Actual Apple keyboard... help...
« Reply #7 on: Sat, 10 January 2015, 20:55:51 »
Ok, very good !
I will take a look at Autohotkey...

Daniel, what a great answer, good explanations, thank you !!