duomenox Posted February 18, 2014 Posted February 18, 2014 Hello,I used WPIW a long, long time ago for making restore CDs for my family... I came back to revisit it and it has really evolved.I was looking at the command to download a file, I'm unsure as to the best way to do this. I would like to download a file then install it.The download link is a php script that pulls the latest version of the file off the server (ie https://domain.com/latestfile.php)Is this possible, or do I need to download a static file?Either way, how can I choose to download it then run it... especially if I don't know the exact name since the name includes the version number and is subject to change?Kel, I also need to know how commercial licensing works. I'm looking at using the product at work for deployments and want to make sure I do it the right way.I sent you a little something via Paypal as a thank you for the software, the time you put into it, and you continued support of the project.Thank you.
Kelsenellenelvian Posted February 20, 2014 Posted February 20, 2014 (edited) Try using a wildcardi.e. "*.exe"I will pm you about the license tomorrow Edited February 20, 2014 by Kelsenellenelvian
myselfidem Posted February 20, 2014 Posted February 20, 2014 (edited) And you may need to change inside installer.js:Downloading files improvement.http://www.msfn.org/board/topic/158272-languages-themes-manuals-mods/?p=1068519From line 1080 - case 'WEB' :document.getElementById("InstallItem").innerHTML = getText(lblViewing)+" " + cmd; cmd = '"'+ReplacePath("%programfiles%\\Internet Explorer\\iexplore.exe")+'"' + cmd;And from line 1401: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;}Regards Edited February 20, 2014 by myselfidem
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now