Install the Surface SDK SP1 Workstation Edition on x64
Join the DZone community and get the full member experience.
Join For FreeAs before, this is a totally unsupported setup, so if official support from Microsoft is required, this is not for you.
Please note that you will still need to meet the other hardware and software requirements of the SDK.
To perform the actions in this guide you will need to install Orca,
a tool for editing MSI files, included with the Windows SDK.
Unfortunately, this utility isn’t available separately and will require
you to download the full SDK to get it. You can download the Windows Vista or Windows 7 SDK here.
1) Extract the MSI to its individual files
This can be done with the following command performed in an elevated cmd window:
msiexec /a SurfaceSDKWE.msi /qb TARGETDIR=c:\surface (or some other TARGETDIR of your choosing)
When complete, you will have a new directory at TARGETDIR filled with a smaller MSI and all the files contained within the original MSI.
2) Remove the platform check from the MSI
Open the newly extracted SurfaceSDKWE.msi file in Orca. Select LaunchCondition from the left pane. In the right pane, select the row labeled Installed OR NOT VersionNT64, right-click, and select Drop Row. This will remove the check for a 64-bit OS.
After the rows are dropped, save the MSI using the standard File –> Save menu option.
3) Patch the setupcustomaction.exe file
This executable is called during the SDK installation process. Because the installer will launch as a 64-bit application, so will this executable, which will force it to write some registry values into the wrong location. Therefore we have to patch this file using the corflags.exe utility included in Visual Studio and the .NET SDK.
If you have the full Visual Studio installed, simply open an elevated Visual Studio Command Prompt from the Start Menu and the path to corflags.exe will automatically be loaded. Otherwise, you should find this in the C:\Program Files\Microsoft SDKs\Windows\v6.1\Bin directory and you can set your PATH environment variable appropriately.
With the path to corflags.exe in your PATH environment variable, change to the following directory:
<TARGETDIR from above>\Microsoft Surface\v1.0
Inside this directory, run the following command:
corflags setupcustomaction.exe /32bit+ /force
You will get a warning that the file is strong named signed. You can safely ignore this.
4) Install the SDK
Now that the MSI and setupcustomaction.exe have been patched, run the extracted and patched SurfaceSDKWE.msi file from the TARGETDIR location, not the original MSI file. As long as you have the other prerequisites installed, the SDK will install without issue.
5) Patch the executables / Build and fix the samples
These steps are identical to last time, so I will just link to the original blog post here.
And there we have it. A patched and working Surface SDK SP1 running under Vista/Windows 7 x64. As always, run this at your own risk, but let me know how it works out for you if you give it a try.
Published at DZone with permission of Brian Peek, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments