Jump to content

Languages, Themes, Manuals & Mods


Recommended Posts

Yes, like I said the problem is the following:

With IE 10 under Windows 8, the "Version" says "9.10", but "svcVersion" says "10.0". I do not know how this will be when installing IE 10 on Win7 or Vista.

Please test this:

function getIEver()
{
position="wmi.js";
whatfunc="getIEver()";

IEver=WshShell.RegRead("HKLM\\Software\\Microsoft\\Internet Explorer\\Version");

if (IEver.substr(0,4) == "9.10")
{
IEver=WshShell.RegRead("HKLM\\Software\\Microsoft\\Internet Explorer\\svcVersion").substr(0,4);
}
else
{
if (IEver.substr(1,1) == ".")
{
IEver=IEver.substr(0,3);
}
else
{
IEver=IEver.substr(0,4);
}
}

return IEver;
}

This should now check if IE version is 9.10, which it is on my Win8 system. If yes, it uses the svcVersion instead.

If not, it checks if the version is "x.x" or "xx.x" to cut it down properly. (If the version value is later on modified by MS, perhaps they just forgot it. ^^)

Thats pretty much what I was thinking too. Works fine now.

Link to comment
Share on other sites


Thanks for the new manual. However could you change or remove inside Chapter-6.html (line 322)


Note: This cannot be checked by WMI, so it is based on whether or not a battery exists and a PCMCIAController exists. Not perfect by any means

Regards

Link to comment
Share on other sites

About Windows 8 Editions, I think the OSSKU's numbers discusssed here:

http://www.msfn.org/...ost__p__1011481

Are now: thanks to check if it's OK!

Inside wmi.js (function getOSsku(sku)) the lines below:


case 27:
OSSKU="Enterprise N Edition";
break;

case 48:
OSSKU="Pro Edition";
break;

case 49:
OSSKU="Professional N Edition";
break;

case 72:
OSSKU="Enterprise Evaluation Edition";
break;

case 98:
OSSKU="8 N Edition";
break;

case 99:
OSSKU="8 China Edition";
break;

case 100:
OSSKU="8 Single Language Edition";
break;

case 101:
OSSKU="8 Core Edition";
break;

case 103:
OSSKU="Professional Edition with Media Center";
break;

}

return OSSKU;
}

And inside wmi.js [function getOSver()]

Change:

if (Caption.indexOf("Windows 8") != -1) 

To:


if (Caption.indexOf("8") != -1)

Regards

Edited by myselfidem
Link to comment
Share on other sites

French manual updated with the new Licence.txt and removed the old one (french) as:

The sale on WPI licenses will end on 9-20-2012.

Regards

*Edit: could you remove on the "Windows Post-Install Wizard Main Thread...." (inside Conditions; post 4):

Note: This cannot be checked by WMI, so it is based on whether or not a battery exists and a PCMCIAController exists. Not perfect by any means.

And maybe add: Returns: Laptop, Notebook or Desktop.

Edited by myselfidem
Link to comment
Share on other sites

  • 4 weeks later...
  • 1 month later...

Hi Kel, here is the manual translated in Ukrainian and updated lang file.

Could You tell me what should i change, to get a Ukrainian manual clicking on "Manual" button?

Edited by chymax3m
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...