MSFN Forum: Languages, Themes, Manuals & Mods - MSFN Forum

Jump to content


  • 7 Pages +
  • 1
  • 2
  • 3
  • 4
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

Languages, Themes, Manuals & Mods The place for translations... Rate Topic: -----

#21 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,447
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 13 September 2012 - 08:51 AM

Yes, it's better to use sku: "Pro" for Windows 8 Pro or sku: "Pro Edition".

Windows 8 editions

Quote

Windows 8 Pro succeeds Windows 7 Professional and Ultimate and is targeted towards enthusiasts and business users; it includes all the features of Windows 8.


Regards

This post has been edited by myselfidem: 13 September 2012 - 09:05 AM



#22 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,334
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 September 2012 - 09:41 AM

Got them for next release, thanks guys.

#23 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,447
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 13 September 2012 - 12:08 PM

After testing Windows 8 Enterprise (eval) on Oracle VM VirtualBox the sku is 72:

wmi.js
case 72:
              OSSKU="Enterprise Edition";
              break;



Regards

#24 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,447
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 13 September 2012 - 02:44 PM

On the WPIW Home page (Home tab) , thanks to remove also: sample config (word and link 404)

For any questions about configuration see [the sample config] and read the FAQ.

Thanks and regards.

This post has been edited by myselfidem: 13 September 2012 - 02:45 PM


#25 User is offline   alfreire 

  • Member
  • PipPip
  • Group: Members
  • Posts: 121
  • Joined: 07-August 11
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 September 2012 - 02:58 PM

Attached lang_es.js with little corrections...
Regards... ;-)

Attached File(s)


This post has been edited by alfreire: 13 September 2012 - 03:06 PM


#26 User is offline   ZEUS__ 

  • Member
  • PipPip
  • Group: Members
  • Posts: 185
  • Joined: 03-January 08
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 September 2012 - 03:12 PM

updated Turkish Lang for WPI v8.6.2

This post has been edited by Kelsenellenelvian: 14 September 2012 - 05:32 PM


#27 User is offline   Dynaletik 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 652
  • Joined: 18-September 04
  • OS:none specified
  • Country: Country Flag

Posted 13 September 2012 - 04:56 PM

View Postmyselfidem, on 13 September 2012 - 12:08 PM, said:

After testing Windows 8 Enterprise (eval) on Oracle VM VirtualBox the sku is 72:

wmi.js
case 72:
              OSSKU="Enterprise Edition";
              break;


Regards


I think the "normal" Enterprise edition DOES NOT match this ID. The ID 72 is "Enterprise Evaluation", as this is what it says in my VMBox, too.

#28 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,334
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 September 2012 - 05:08 PM

Hey guys?

function getIEver() 
{ 
        position="wmi.js"; 
        whatfunc="getIEver()"; 
 
        IEver=WshShell.RegRead("HKLM\\Software\\Microsoft\\Internet Explorer\\svcVersion"); 
 
        if (IEver.substr(1,1) == ".") 
        { 
                IEver=IEver.substr(0,3); 
        } 
        else 
        { 
                IEver=IEver.substr(0,4); 
        } 
 
        return IEver; 
}


This doesn't work... IE 8 (possibly 7 and lower do not have the "svcVersion" key.

function getIEver() 
{ 
        position="wmi.js"; 
        whatfunc="getIEver()"; 
 
        IEver=WshShell.RegRead("HKLM\\Software\\Microsoft\\Internet Explorer\\Version"); 
 
        if (IEver.substr(1,1) == ".") 
        { 
                IEver=IEver.substr(0,3); 
        } 
        else 
        { 
                IEver=IEver.substr(0,4); 
        } 
 
        return IEver; 
}


Try this ^

#29 User is offline   Dynaletik 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 652
  • Joined: 18-September 04
  • OS:none specified
  • Country: Country Flag

Posted 13 September 2012 - 06:21 PM

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. ^^)

#30 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,447
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 14 September 2012 - 12:23 AM

View PostKelsenellenelvian, on 13 September 2012 - 05:08 PM, said:

..IE 8 (possibly 7 and lower do not have the "svcVersion" key.


Yes, you are right this key doens't exist for IE8 and lower Internet Explorer version.

However, testing the suggestion given by Dynaletik, works for me to detect IE8=8.0 or IE9=9.0

I can't test with IE10 now.

Thanks and regards

This post has been edited by myselfidem: 14 September 2012 - 01:03 AM


#31 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,334
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 14 September 2012 - 02:49 AM

View PostDynaletik, on 13 September 2012 - 06:21 PM, said:

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.

#32 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,447
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 14 September 2012 - 04:03 AM

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

#33 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,447
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 14 September 2012 - 11:39 AM

Here is the new french manual with Chapter-9.html updated for WPI update 8.6.2 (ChangeLog),

And adding also Chapter-6.html (line 93):

%USB%:


Thanks and regards

This post has been edited by myselfidem: 18 September 2012 - 01:08 AM


#34 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,334
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 14 September 2012 - 05:32 PM

First post updated.

#35 User is offline   Dynaletik 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 652
  • Joined: 18-September 04
  • OS:none specified
  • Country: Country Flag

Posted 15 September 2012 - 01:55 AM

Hey guys,

i just spent some time for updating WPI for Windows 8 on my system.

I attached some InstallBG Images + ProgressBar, current version of Dyna theme and german localized files.
Perhaps someone wants to use or improve it. :)

Cheers!

Attached File(s)

  • Attached File  WPI_8.rar (217.51K)
    Number of downloads: 14


#36 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,447
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 15 September 2012 - 05:54 AM

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

This post has been edited by myselfidem: 15 September 2012 - 11:07 AM


#37 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,334
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 15 September 2012 - 02:13 PM

got them

#38 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,447
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 18 September 2012 - 01:07 AM

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

View PostKelsenellenelvian, on 16 September 2012 - 07:30 PM, said:

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.

This post has been edited by myselfidem: 30 September 2012 - 07:06 AM


#39 User is offline   SunLion 

  • Newbie
  • Group: Members
  • Posts: 45
  • Joined: 22-October 07
  • OS:XP Pro x86
  • Country: Country Flag

Posted 18 September 2012 - 12:12 PM

Hi Kel, here is the file lang_br.js updated to version 8.6.2.

I've tested with the new version 8.6.2 and worked well.

Congratulations for your hard work

Attached File(s)


This post has been edited by SunLion: 18 September 2012 - 12:21 PM


#40 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,447
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 25 September 2012 - 12:48 PM

It is possible to add inside the manual Chapter-7.html:

Comparison operators

===   Identical (equal and of the same type)
!==   Not identical



JavaScript syntax

Regards

This post has been edited by myselfidem: 30 September 2012 - 06:31 AM


Share this topic:


  • 7 Pages +
  • 1
  • 2
  • 3
  • 4
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy