Jump to content

hasi001

Member
  • Posts

    324
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Austria

Everything posted by hasi001

  1. @a06lp Would this help ?
  2. 1st: give the 1st prog cat[pn]=[''], and remove cat[pn] on all others (not sure, but try it) 2nd: with latest version try cmd1[pn]=['%cdrom%\\install\\acdsee6\\acdsee606.msi REBOOT=REALLYSUPPRESS /QN']
  3. Haven't tested with Network UNC Paths though. But i think it should work wint the %cdrom% in the command's path.
  4. check, if the local group "Administrators" exists. Perhaps you do have a localized version of XP. I, for example, had to write "Administratoren" for my german version.
  5. Sorry guy, no answer from my side. But know that I asked the same question in this thread today. No answer there either - but next time use the search function.
  6. LaptoniC: Good to hear. djbe: .hta is a HTML Application host file. import the following .reg file, then doubleclick wpi.hta it should open with mshta.exe TRANSFORMS is needed for unattended installation of Office. dunno what happens, if you only use /qb. htafile.reg
  7. For Sincle-column mode uncomment the numCols in config.js and set it to numCols=1. the timer is also set to secs='60' in config.js. change that 60 to something else. note, that if you click on the timer, it stops. the thing with cmdX[pn]=['...','...'] or cmdX[pn]=['....'] comes from the release history. in former releases you had to give cdrom, systemdrive ... as seperate parameter to the cmd. if you do a new config, then use just cmdX[pn]=['%...%\\...'] with a single value - the %...% parameter can be used anywhere in the command. see the example config.js examples: old style: cmd1[pn]=['systemdrive','install\\Applications\\office2003\\setup.exe TRANSFORMS=Unattended.MST /qb-'] is the same as newstyle: cmd1[pn]=['%systemdrive%\\install\\Applications\\office2003\\setup.exe TRANSFORMS=Unattended.MST /qb-'] and with new style you can also use the %..% parameter anywhere in the command like cmd1[pn]=['msiexec.exe /qb /i %cdrom%\\Install\\Office2003ResourceKit\\ORK.MSI'] and even twice and/or different cmd1[pn]=['%systemdrive%\\WINDOWS\\system32\\msiexec.exe /qb /i %cdrom%\\Install\\Office2003ResourceKit\\ORK.MSI'] so you do not have to use the old style [EDIT] As i see a06lp was a little faster ...
  8. The cdrom issue. An explanation. Recently a friend of mine bought a preinstalled notebook and wanted me to istnall some apps from my unattended XP cd. He just didn't want to install the whole thing anew. Problem was, that his Registry's SourcePath-Value was "C:\WINDOWS" - which is not an cdrom of course. So I had to find another way to determine the CDROM. As for an unattended XP-install CD there's always a file called "WIN51" in the cd's root directory. So now I do the following: cddrv = "" Enumerate all drives. From these loop through all drives of type cdrom and get the drive letters. For each drive letter X search the drive's root directory for a file called "WIN51" if found, the cddrv=X:\ so it doesn't matter how many cdroms you have, as long as there's somewhere a media with the file WIN51 in its root. This media is the XP-install CD, so use it's drive letter. if this didnt help (file WIN51 wasn't found on any cdrom drive) then (and only then) get WPI's current folder as full path as D (this is where wpi.hta is) while WIN51 is not found in D descend one level until D is the drives root folder if WIN51 was found then cddrv=D (which can be a folder) so WPI has to be at least a subdirectory of a directory which contains WIN51 eg: | +---XPCD +--- WIN51 (file) +--- I386 +--- $OEM$ +---$1 +---Install +---WPI +--- wpi.hta +--- Install (the Install folder on CDROM) +--- Something this is, how my XPCD preparation looks like on my harddisk. even now if i write "%cdrom%\\Install\\Something" that Install-Folder gets found as subfolder of XPCD. Now I can test my installs with the %cdrom%-Path on my HDD. See it ? if the file WIN51 didn't get found either way, the use the registry's SourcePath value. That's for compatibility.
  9. @LaptoniC I found the error. Had to do with constraint checking (... which no one but myself needs). The thing should function with Version 2.9.2 Also new: Searching for cdrom: look for a file WIN51 in all cdroms. If not found descend the current folder tree down till WIN51 is found. If still not found then take the Registry's SourcePath-Value. wpi_hasi001_2.9.2.zip
  10. I have a question concerning microsoft's setupmgr.exe tool. I used it to precreate my winnt.sif file. As an option i chose to import computernames from a textfile which results in the following entries in winnt.sif [UserData] ProductKey=.................... FullName="The Solar System" OrgName="Solaris" ComputerName=* [SetupMgr] ComputerName0=Mercury ComputerName1=Venus ComputerName2=Earth ComputerName3=Moon ComputerName4=Mars ComputerName5=Phobos and a second file called winnt.udb: ;SetupMgrTag [UniqueIds] Mercury=UserData Venus=UserData Earth=UserData Moon=UserData Mars=UserData Phobos=UserData [Mercury:UserData] ComputerName=Mercury [Venus:UserData] ComputerName=Venus [Earth:UserData] ComputerName=Earth [Moon:UserData] ComputerName=Moon [Mars:UserData] ComputerName=Mars [Phobos:UserData] ComputerName=Phobos Trying to install on a VM the generated Computername always looks the way we know: SOLARIS-1234567 ... so it's autogenerated from the OrgName in winnt.sif So how does this thing with multiple computernames work. Is it, that this only works for installations from a remote computer's network share but not from CD ?
  11. no, that's not the reason. btw - i didn't update the docs with my changes, so they're old (ver 2.7) - wpi should support unlimited apps (although install might get out of order above app no 1000). seems to be a home edition's prob.
  12. @LaptoniC would you please try this Version (2.9.1) where document.WPI["checkbox"+i] ... has been changed to document.getElementById("checkbox"+i) ... and comments were added to the source code. Perhaps this solves you probs. Let me know. ZIP removed.
  13. cyberwolf: a quick resolution for your prob is this: edit wpi.hta down near the end it says <span id="inner" style="position:absolute; width:100%; height:100%; z-index:1; overflow: hidden;"> <form name="WPI"></form> </span> change that to overflow to scroll like <span id="inner" style="position:absolute; width:100%; height:100%; z-index:1; overflow: scroll;"> <form name="WPI"></form> </span> and you're done. Doesn't look fine though. Which version do you use. Have you tried to force resolution by editing api.js and setting fw to a fixed hres value (like 800) fW = 800; //for testing purposes only... Try it. EDIT: I found out, that the scrollbuttons to the right do not show up in forced 640 mode on my system either. It works with 800 and above. Must be an IE rendering problem, cause the table-definition doesn't change (table's width is 100% of <span><form> tag).
  14. @LaptoniC: what you see are graphics (buttons) - not checkboxes.... so there's something weird going on with your configuration. Could not recreate the failure on my sys - but I'm working on it. Don't give up. BTW. there's been a lot of changes since 2.7 - especcially with the code for rendering the checkboxes.... @a06lp - right now, packages of 15 apps will get installed. You can change this value for yourself in generate.js if you want. This is also the file, where you could change the installation-mechanism to your needs - so if you want to install per category, just change the loops and be happy ... @ALL: Question 'bout V2.9: did anyone else have the problems LaptoniC describes ? Would be nice to hear about your XP-IE configurations)
  15. i did the same on my xp pro sp2, and IE 6.0.2900.2180.xpsp_sp2_rtm.040803-2158 no probs. I do not have time to search for the prob right now. could take a day or two. what happens if you set sorting=false ? do you see any checkboxes ?
  16. Problems should be fixed with new version 2.9 Apps get installed according to GUI's sort order. Apps unchecked but installed should be fixed. BTW: boxes.htm is now totally scripted. File got deleted. so there's only 1 hta file. ZIP removed.
  17. Yes, you're right. There's a problem with sorting. Do not use it. A fix will come ... My apologies. Hey - is there somewhere a html/javascript guru who can tell me, why the hell the changed javascript variables (changes in the sorting alg of boxes.htm) aren't recognised by one of wpi.hta's buttons ? is it, because boxes.htm runs inside an iframe of wpi.hta. Have to do some research about this behaviour. Will try to get rid of that IFRAME. See ya. For now - just choose sorting = false in config.js.
  18. Change EG ADD %KEY%\010 /VE /D "Adobe Reader 6.02" to REG ADD %KEY%\010 /VE /D "Adobe Reader 6.02" also I'm not sure if those >> redirections work.
  19. It's a simple batch file, you have to create: here are the contents of mine: @echo off rem This file should be called right after setup is complete rem Edit it to fit your CD Image accordingly start /wait %systemdrive%\install\WPI\WPI.HTA
  20. Bugs fixed in Version 2.8.6. Defaults were'nt checked correctly in 2.8.5 Note on sorting: although your apps get displayed in a sorted order, the installation via runonceex runs as defined in config.js. So even if an app, defined as the first one in config.js (that woul be prog[1]) is displayed at last position in the GUI (could be that its name may be 'ZOOM Player'), it would be first in install order. RunOnceEx would begin with "ZOOM Player". Some apps might be dependent on each other, so it must be possible to set an installation order. BUGFIX 2.8.6.1: replacement of double backslashes when using cmd[pn]=['cdrom','...'] ZIP removed.
  21. Oops. Sorry Ramik. I see you've already created an unattended CD - so you know how it works. Perhaps Astalavista's assumption is right and the problem's with your burning app.
  22. Ramik Since you're posting in an unattended XP installation forum, what good would it be to create an iso of a windows cd. I do not think that's the way of creating an unattended installation source. Copy the CD's files to a directory, alter the files necessary (see http://unattended.msfn.org for details) and extract the bootloader. Then create a bootable DVD including the files from the CD, all others you may want to have on it. Don't forget the bootable settings (bootloader, emulation type). Then burn. This should be the way. Making an iso-copy (as I've understood) wouldn't lead to satisfying results, I think. (Hope I did't anger someone - this thread reads like fire)
  23. In former versions sorting wasn't really useable i think. I overworked It and so now new rules apply: Sorting can be switched on/off in config.js A predefined sort order for categories CAN be given (you NEED NOT to). Sorting of apps is done only inside categories (if any given) If not even one category is given and sorting is switched on, then apps get sorted alphabetically. The apps entries in config.js stay the same. 2 new vars in config.js determine sorting: var sorting // indicate if category/name sorting shall be used var sortorder // sort categories according to sortorder if given initialisation can be done via sorting=true; sortorder=['System','Tools','Office']; //not all categories must be given //missing categories will be appended to the end //according to their appearance apps CAN have cat[pn], if it's left out for an app it gets the previous app's category (so this behaviour stays the same as in former version) Some changes with resolutions were fixed. WPI should now work in all 4:3 resolutions - with and without columns (the constraints of 640 (1col) and 800 (max 2 cols) res stay the same. The number of columns CAN be set from config.js's numCols variable. If it's left out, then the number of columns will be calculated (hres/30.72 was a good value) so that there's 3 cols in 1024, 4 in 1028, 1280 and 1400 and 5 in 1600 Columns are not fixed - which means that even if you have a value of numCols=3 but too few apps configured it will only show 1 or two columns. Column fillup is done first down then right. So now it's version 2.8.5 ZIP removed due to massive bugs when using sorting.
×
×
  • Create New...