Yeah, same issue. Vista's supposed to automatically detect if an application requires admin rights, but fails to do so for the autorun.exe on the S&M DVD.
Just browse to the DVD Root, and select the compatibility settings for the autorun.exe to always run as administrator.
Telltale Team: this could have been avoided if the autorun.exe had a manifest stating the requirement for admin rights. Maybe helpful in the future.
Example manifest:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0"
processorArchitecture="X86"
name="ExeName"
type="win32"/>
<description>elevate execution level</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
This manifest can of course be in the exe itself, or just in the same folder, named autorun.exe.manifest.
By the way, I love the commentary for the cutscenes