MSFN Forum: WPI 8.6 and beyond bug\bugfix thread - MSFN Forum

Jump to content


  • 4 Pages +
  • « First
  • 2
  • 3
  • 4
  • You cannot start a new topic
  • You cannot reply to this topic

WPI 8.6 and beyond bug\bugfix thread Rate Topic: -----

#61 User is offline   myselfidem 

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

Posted 09 May 2013 - 01:48 AM

Thanks gilles_gros !

Inside configwizard.js we can add OS 2K:

case 'cmd_cond_operatingsystem': 
 HandleCommandsSelectionMenu("{OS=Win8,Win7,Vista,XP,2K} "); 
 break; 



Cheers and regards

This post has been edited by myselfidem: 09 May 2013 - 04:34 AM



#62 User is offline   myselfidem 

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

Posted 18 May 2013 - 03:43 AM

It seems there is a little typo error inside optionswizard.js (on line: 1966)

tf.WriteLine("ExecuteBeforebit4="+ExecuteBeforebit64+";");


Change to:

tf.WriteLine("ExecuteBeforebit64="+ExecuteBeforebit64+";");


Regards

*Edit: Maybe we can change also inside optionswizard.js (lines: 1895 and 2038)

tf.WriteLine("// WPI Options 8.0.0");


Change to:

tf.WriteLine("// WPI Options 8.1.0");


*Edit2: We can change also inside configwizard.js (on line: 3118)

Change to:

tf.WriteLine("// WPI Config 8.1.0");


Inside networkwizard.js (on line: 2087)

Change to:

tf.WriteLine("// WPI Config 8.1.0");

This post has been edited by myselfidem: 18 May 2013 - 07:01 AM


#63 User is offline   Kelsenellenelvian 

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

Posted 18 May 2013 - 05:26 AM

Just a quick bookmark to show I have the changes up to here added in.

Thank you guys

#64 User is offline   myselfidem 

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

Posted 19 May 2013 - 02:47 AM

Thanks Kels!

Inside installer.js (on line: 1382)

The registry value need to be changed:

WriteRegKey("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\AutoLogonCount",Count,"REG_SZ");


Change to:

WriteRegKey("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\AutoLogonCount",Count,"REG_DWORD");


Thanks and regards

*Edit: However It seems to always keep the same Count value this registry file must works ("REG_SZ")...
But when we use this option the registry file isn't written inside the registry!
The existing key ("REG_DWORD") is not replaced with the new one ("REG_SZ).

This post has been edited by myselfidem: 19 May 2013 - 06:05 AM


#65 User is offline   myselfidem 

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

Posted 19 May 2013 - 11:13 AM

Inside globals.js we can read (on line 444):

// alert.js
var alertSound="%wpipath%\\Audio\\SoundsScheme\\Windows Exclamation.wav";


But the sound is missing inside WPI_v8.6.6, and we can find this one on previous WPI_v7.5.0

Or we can change the path to an existing sound inside globals.js:

var alertSound="%wpipath%\\Audio\\SoundsScheme\\Warning.wav";


Thanks and regards

This post has been edited by myselfidem: 19 May 2013 - 11:48 AM


#66 User is offline   myselfidem 

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

Posted 19 May 2013 - 04:29 PM

Inside jscript.js little typo errors on lines: 350 to 353; 370 and 371:

HKEY_LOCAL_MACHIBE

Key for AutoAdminLogon on line 353 and line 371:

WriteRegKey("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\AutoAdminLogon",1,"REG_SZ");


WriteRegKey("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\AutoAdminLogon",0,"REG_SZ");


Thanks and regards

#67 User is offline   myselfidem 

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

Posted Yesterday, 06:54 AM

Inside installer.js it seems it's missing some values:

Line 1252:
function ClearProgressBar()
{
    position="installer.js";
    whatfunc="ClearProgressBar()";


Line 1265:
function UpdateProgressBar(value)
{
    position="installer.js";
    whatfunc="UpdateProgressBar()";


Thanks to check if it's OK.

Thanks and regards

This post has been edited by myselfidem: Yesterday, 06:54 AM


#68 User is offline   Kelsenellenelvian 

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

Posted Yesterday, 09:18 AM

Got those.

#69 User is offline   myselfidem 

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

Posted Yesterday, 11:13 AM

Inside installer.js it seems is missing this function (like written on previous WPI_v8.2.0):


function CheckPendingFileRenameOperations()


Thanks and regards

*Edit: Oops...Sorry, I see this function is already in wmi.js ! :)

This post has been edited by myselfidem: Yesterday, 02:41 PM


#70 User is offline   myselfidem 

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

Posted Today, 01:17 AM

Inside core.js, I think we can remove: function getProductKey()

Because this one is already inside wmi.js

Thanks to check if it's OK.

Regards

*Edit: Inside WPI.hta (on line: 117), a little typo error

.cmd is witten twice:

WriteRegKey("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Associations\\LowRiskFileTypes", .....

This post has been edited by myselfidem: Today, 01:56 AM


#71 User is offline   myselfidem 

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

Posted Today, 09:52 AM

Inside installer_log.js are missing :

// Sounds tab
WriteLogLinePlain("   SndInstallWarningCB=" + SndInstallWarningCB);
WriteLogLinePlain("   SndInstallWarning=['" + SndInstallWarning + "'];");
WriteLogLinePlain("   SndWPIExitCB=" + SndWPIExitCB);
WriteLogLinePlain("   SndWPIExit=['" + SndWPIExit + "'];");



Inside globals.js we can remove the lines; because the file update.js no longer exits:

// update.js
 var UpdateVersion, UpdateLink, UpdateMD5, UpdateTitle, UpdateNotes;
 var UpdateAvailable;



Thanks and regards

This post has been edited by myselfidem: Today, 11:57 AM


Share this topic:


  • 4 Pages +
  • « First
  • 2
  • 3
  • 4
  • You cannot start a new topic
  • You cannot reply to this topic

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



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