Tag: windows
Installing Windows GPLPV Drivers in Xen
by specialj on Jan.18, 2012, under virtualization
I’ve done this enough times to know it by heart but I remember when I tried to find documentation on this step I ran into countless inaccurate and outdated examples. So here’s what I do to get the Windows GPL PV drivers installed under Xen.
- Download the drivers from meadowcourt.org. As of 1/18/2012 the latest version is 0.11.0.308. You’ll need to get the appropriate drivers for your OS.
- turn testsigning off on Windows
- bcedit
- I like to check out the config first
- bcdedit /set {current} testsigning on
- this turns testsigning on
- bcdedit
- I usually run this again to make sure “testsigning Yes” appears
- restart windows. upon restart the system should indicate it is in “Test Mode”
- install the drivers msi file that was downloaded. I always choose “Typical” installation. I choose not to restart at this point.
- create new default boot option
- bcdedit /copy {current} /d “GPLPV
- this will copy the current boot setup into a new one called GPLPV
- pay attention to the id returned here
- bcdedit /default ID
- replace ID with the id from the copy command
- this sets the new menu to be the default
- bcdedit /set {default} loadoptions GPLPV
- this makaes this option use GPLPV drivers
- bcdedit
- double check everything
- restart windows
Enabling remote desktop on Windows
by specialj on Jan.19, 2010, under Sysadmin
I sent this to a client who didn’t know how to enable remote desktop administration in windows.