Enabling Remote Windows in a MK4 Golf
From the factory, the windows in a Mk4 Golf can be controlled using the key in the lock cylinder of the door, but it cannot be controlled using the remote buttons. However, this feature was actually programmed by the engineers, it was just never enabled in production vehicles.
The option is not exposed for tools like VCDS or OBDeleven, it is instead enabled through EEPROM coding, which can be done with a USB KKL OBD2 Cable as explained in this guide.
Required tools
- USB KKL OBD2 Cable
- Computer (Instructions are for Windows, but may work on Linux and Mac too.)
Getting started with kw1281test
- Download kw1281test here (Pick the .zip file for your operating system under "Assets").
- Extract the zip file to a folder on your computer.
- Navigate into the extracted folder, right click and choose "Open in Terminal".
- Connect the cable to your car and your computer.
- In the terminal type chgport and press enter. This will show you which COM port the cable is connected to (COM followed by a number).
Enabling remote windows
To enable remote windows, we need to change the value of 3 bytes in the EEPROM memory. First we will read the old values, and then determine what the new value should be and write it to the EEPROM.
To automatically provide you with the right commands, enter the details below
Reading the current values
We need to read the current value of three bytes in EEPROM memory (Address 4361, 4362 and 4363). For a 1C0 with com port COM1 enter the following three commands one by one:
kw1281test COM1 9600 46 ReadEeprom 4361
kw1281test COM1 9600 46 ReadEeprom 4362
kw1281test COM1 9600 46 ReadEeprom 4363
Writing the new values
If the current value is 10, the new value that needs to be written to the 3 bytes is 2. You can do that using the following three commands, run them one by one: remote windows should already be enabled.
kw1281test COM1 9600 46 WriteEeprom 4361 2
kw1281test COM1 9600 46 WriteEeprom 4362 2
kw1281test COM1 9600 46 WriteEeprom 4363 2
After writing the new values, disconnect the cable and test the remote windows, they should now work.