December 14, 201312 yr French manual updated on Chapter 9 and minor changes (fr.rar folder):https://www.mediafire.com/folder/6696bficr91ar/WPIWThanks and regards Edited December 14, 201312 yr by myselfidem
December 15, 201312 yr when try to open wpi 8.7, it gives me error that some removed lines from lang file:I remove these lines and now it's OK.-lblEnable64BitProcessing[lang]-optKeep[lang]lang_tr.js
December 15, 201312 yr Author Got it in the download now Zeus Edited December 15, 201312 yr by Kelsenellenelvian
December 25, 201312 yr Hi!There was some bug in the Hungarian file. Here is the new one for 8.7.0.lang_hu.js Edited December 25, 201312 yr by ssjoco
January 31, 201412 yr All language files have been updated inside WPI_v8.7.1. thanks to Kels!*Edit: However some lines needs to be translated at last for WPI_v8.7.1// v8.6+lblNumberOfCores[lang] = ['Number Of Cores'];lblNumberOfLogicalProcessors[lang] = ['Number Of Logical Processors'];lblProductKey[lang] = ['Product Key'];lblKeyboardLayout[lang] = ['Keyboard Layout'];// v8.7lblWindows8[lang] = ['Windows 8'] Edited January 31, 201412 yr by myselfidem
January 31, 201412 yr All language files have been updated inside WPI_v8.7.1. thanks to Kels! I have 8.7.1 and lblEnable64BitProcessing is still there.
January 31, 201412 yr Error is on line 532 inside lang_pl.js and inside lang_no.js (line 533) and maybe others language files; remove this line:lblTrue64Bits[lang] = ['Prawdziwe 64 Bity'];Check also your config.js file and remove all lines using WPI_v8.7.1:bit64[pn]=['yes'];andbit64[pn]=['no']; Edited February 1, 201412 yr by myselfidem
February 4, 201412 yr Hello Kell..Update Lang Dutch file add line Windows 8:PS:Thanks for the Update!.lang_nl.js Edited February 4, 201412 yr by Whatsup
February 6, 201412 yr About [function DownloadFile] inside installer.js, we can change:On line 1080, change:cmd = '"'+ReplacePath(" % programfiles % \\Internet Explorer\\iexplore.exe")+'" ' + cmd;To (look at spaces):cmd = '"'+ReplacePath("%programfiles%\\Internet Explorer\\iexplore.exe")+'"' + cmd;From line 1400, change to: if (FileExists(windir+"\\System32\\WindowsPowerShell\\v1.0\\powershell.exe")) { cmdLine = 'Powershell -NoProfile Import-Module BitsTransfer -cmdlet Start-BitsTransfer; Start-BitsTransfer -Source ' + URL + ' -Destination "$env:temp\\'+Filename+'" -TransferType Download'; fsoCmd = true; } else { cmdLine = '"'+wpipath+'\\Tools\\BitsAdmin.exe" /transfer WPI /download /priority high ' + URL + ' "%TEMP%\\'+Filename+'"'; fsoCmd = true; } if (AlwaysShowOutputWindow || ShowDownloadOutput) fsoCmd = false; ReturnCode = WshShell.Run(ReplacePath(cmdLine), fsoCmd ? 0 : 1, true); if (ReturnCode == 0) WriteLogLine(cmdName + ' ' + getText(InstallDownloadSuccess) + ' (' + getText(ReturnedCode) + ' ' + ReturnCode + '): ' + URL); else WriteLogLine(cmdName + ' ' + getText(InstallDownloadFail) + ' (' + getText(ReturnedCode) + ' ' + ReturnCode + '): ' + URL); UpdateInstallList(("div" + i + "_" + j + "_" + FailNum), ""); cmd = ReplacePath('"%TEMP%\\'+Filename+'"' + Args) || ReplacePath('"$env:temp\\'+Filename+'"' + Args); return cmd;Now downloading files works fine!Regards*Edit: post updated Edited February 9, 201412 yr by myselfidem
February 9, 201412 yr To avoid errors with "Resume Button" and "Abort Button ", we can change inside Installer.hta:function PauseInstaller(){ if (!UserPaused) { UserPaused=true; WriteRegKey("HKEY_CURRENT_USER\\Software\\WPI\\UserPaused",1,"REG_DWORD"); document.getElementById("Pause").innerHTML=getText(btnResume); return; } else { UserPaused=false; WriteRegKey("HKEY_CURRENT_USER\\Software\\WPI\\UserPaused",0,"REG_DWORD"); document.getElementById("Pause").innerHTML=getText(btnPause); }}To:function PauseInstaller(){ if (!UserPaused) { UserPaused=true; WriteRegKey("HKEY_CURRENT_USER\\Software\\WPI\\UserPaused",1,"REG_DWORD"); document.getElementById("Pause").innerHTML=getText(btnResume); document.getElementById("AbortButton").disabled=true; return; } else { UserPaused=false; WriteRegKey("HKEY_CURRENT_USER\\Software\\WPI\\UserPaused",0,"REG_DWORD"); document.getElementById("Pause").innerHTML=getText(btnPause); document.getElementById("AbortButton").disabled=false; }}Regards Edited February 12, 201412 yr by myselfidem
February 9, 201412 yr function PauseInstaller(){ if (!UserPaused) { UserPaused=true; WriteRegKey("HKEY_CURRENT_USER\\Software\\WPI\\UserPaused",1,"REG_DWORD"); document.getElementById("Pause").innerHTML=getText(btnResume); document.getElementById("AbortButton").disabled=true; return; } else { UserPaused=false; WriteRegKey("HKEY_CURRENT_USER\\Software\\WPI\\UserPaused",0,"REG_DWORD"); document.getElementById("Pause").innerHTML=getText(btnPause); document.getElementById("AbortButton").disabled=false; }}RegardsI don't think you need that "return", do you? If you don't need one in the "else" you shouldn't need it in the "if" either, unless there is something else in the function that you are not showing.Cheers and Regards
Create an account or sign in to comment