To solve the problem with the reboot with WPI 8.5.7
I do like this. I set inside
core.js
function DeleteAllRegKeys()
{
position="core.js";
whatfunc="DeleteAllRegKeys()";
// Just in case. Don't want to have a restart of WPI for no reason
DeleteRegKey("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce\\WPIresume");
DeleteRegKey("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnceEx\\001\\1");
DeleteRegKey("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnceEx\\001\\");
I set inside
installer.js (line 198) (this reg file is writed also at line 456)
WriteRegKey("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce\\WPIresume",sysdir+'\\mshta.exe "'+wpipath+'\\Common\\Installer.hta"',"REG_SZ");
Using the fix given here:
http://www.msfn.org/...ost__p__1006639
Removing also inside global_lang.js
var optFloat=[],
However after the installation is done, when Windows restarts there is
a very long time a black screen (almost 4 minutes) before Windows starts!
Regards
*Edit: When I select inside Options | Features: MaintainAutoLogonCount=true;
This isn't applied and I don't see this option inside WPI_Log.txt. And I don't see this value inside installer_log.js (I added and works, now).
This post has been edited by myselfidem: 19 August 2012 - 04:36 AM