install-templates-msvc.bat on windows 8

Hello, I’m running on Windows 8 x64 and the test compilations its ok,

had some problems on the install-templates-msvc.bat file causing some crash.

result that arguments were causing the problems.

changed in C:2d-2.0-x-2.0.4\template\msvc\InstallWizardForVS2010.js

from

function main() { // Decode command line arguments var bDebug = false; var bQuiet = false; var bElevated = false;

to

function main() {
// Decode command line arguments
var bDebug = false;
var bQuiet = false;
var bElevated = true;

then run the script on cmd with admin privileges and vuala!

hope it helps someone.

Thanks, I will test it before next version releases.