Jump to content

5.3 Bugs and issues


Recommended Posts

@pretender69: The unique ID was updated to NOT change when edit the Name field. It is created the first time or when delete it. This was done for a version update, 1.0 to 1.1. That would change the unique ID, which would then have to be changed in all Deps. By leaving it at the given name, anything dependant on it will not break. Example:

Name: .NET Framework 2.0

Unique ID: NETFRAMEWORK (version removed manually)

Then we update:

Name: .NET Framework 2.1

Unique ID: NETFRAMEWORK (would have changed to 2.1 and broken Deps)

========================================

The other issue, there is a new style class, chktxt, to along with txt and gtxt. These should be editting in the theme's .css file, not inside boxes.js. Try it there, post back if still not working and with more details.

Link to comment
Share on other sites


@Avneet: The Force Installation On Exit issue is fixed. There was a bug brought on from the new code from Zorphnoq that, if an item is forced then it gets checked and disabled. Well, the installer would uncheck everything, then run through the list and re-check what is forced. BUT, if the item is disabled, as it is now with the new code, it was skipped, even though if was marked as forced.

Now when it goes to un-check everything, it first checks if marked as forced or not.

It should be working fine, like it used to.

@Zorphnoq: this was not your fault. It was always this way to handle cond[] and gcond[] states.

Link to comment
Share on other sites

what i mean is before when we removed that code in boxes.js.

is would still show the color of the installed item, but the check box is still clickable, not disabled.

would like to have the boxes still clickable even if installed, to still install say a .reg file, or patch.

this still possible ?

Link to comment
Share on other sites

Kel, any updates on fix of this error?

errord1.th.jpg

thanks

*also, .reg file does not get applied when it's not companied by command1 line

Saturday, August 19, 2006 6:29:52 PM
Program: theme-Logon_Skyview
UID: THEMELOGON_SKYVIEW
Order: 000118
Category: Themes-Logon
Saturday, August 19, 2006 6:29:52 PM
Reg Before Success (returned code 0): "RegEdit /S C:\theme\skyview.reg"
Saturday, August 19, 2006 6:29:52 PM
Finished installation

I have to manually run the regtweak again to get it to work.

Edited by larciel
Link to comment
Share on other sites

Solution for category uncheck bug.

In check.js:

Function setUnchecked

else 
{
var chkbox = document.getElementById("chkbox"+i);
var lbl = document.getElementById('lbl'+i);

if (chkbox==null)
return;
if (forc[i]!=null && forc[i]=='yes') //<------------add this line
return; //<------------add this line
chkbox.checked=false;
lbl.className='txt';
tabs++;
uncheckChildren(i);
if (DisableOnDepsNotMet)
disableChildren(i);
if (useExclusions)
checkExclusions(i);
tabs--;
}

Function checkCategory

if (isCategory(thisChk)) //If category checkbox was checked
{
thisCat = thisChk;

for(i=1; cat[i] != null; i++)
{
if (cat[i] == thisCat)
{
if (state)
{
setChecked(i);
checkDeps(i);
}
else
{
// setUnchecked(i); //<--------remove the "//" at the begining
checkDeps(i);
}
}
}
}

Link to comment
Share on other sites

@Zorphnog: Close but not quite. I commented out the line in your second code block on purpose in 5.3. The first code block was my first attempt, not 100% for all occasions. This is the only code in check.js needed to be changed:

function remChecks()
{
position="check.js";
whatfunc="remChecks()";

var elem;

for(i = 1; prog[i] != null; i++)
{
elem = document.getElementById("chkbox"+i);
if (elem==null || forc[i]=="yes") <!----- This line changed

continue;
elem.checked=false;
}
}

This took care of it in all my tests.

@larciel: Is it just that one reg tweak or none work with a command after it? There should be no reason for that to happen. Could it be lack of administrator rights to install it?

Edited by mritter
Link to comment
Share on other sites

@larciel: Is it just that one reg tweak or none work with a command after it? There should be no reason for that to happen. Could it be lack of administrator rights to install it?

You are right, seems like I lack admin rights for the regtweak to work. I just tested it after logging on and it worked.

This problem isn't with WPI, but do you know a solution to this prob? Weird thing is it was working fine until 5.2x i think.

TIA

*btw, what do you think of that error I uploaded pic of ?

I can't duplicate the error while logged on, but this error occurs everytime when it's running for the first time.

Edited by larciel
Link to comment
Share on other sites

I don't know for sure. I have never seen that W character like that. That is where the forward slashes, / , are being replaced with back slashes, \. I see your path has no weird characters........

Are you launching WPI from a cmd script? Might there be something wrong in there? The path is derived from

wpipath = unescape(document.location);

So if it was started from a "bad location" it would inherit it. Just an idea.

Link to comment
Share on other sites

I'm calling WPI.hta from runonceex.cmd

W character is "\" in Korean IME mode. I'll run it one more with WPI in Korean language. I didn't use it because I didn't complete the translation :o I'm guessin it might fix the problem.

thank you mritter

*update*

well after trying twice, I get same error

1. set WPI option to Korean and ran

2. set Windows IME to English default as well as WPI in Eng, same error

here's the shot

errorqw4.th.png

Edited by larciel
Link to comment
Share on other sites

I took out whole <script> and the same error occurs! darn

it's line 55 char 2 even. but after I took out the code, line 55 is blank line.. does problem lie someplace else?

<script type="text/javascript">
function AbortInstaller()
{
if (confirm(document.getElementById("AbortMessage").value))
{
document.getElementById("Abort").value=document.getElementById("Aborted").value;
document.getElementById("Abort").disabled=true;
document.getElementById("Aborted").value="";
}
}
</script> <<<--- this was line 55 originally

Edited by larciel
Link to comment
Share on other sites

@larciel: IE script error messages are a bit misleading. The file listed in the error is where the function call originated from, not necessarily the file where the error occured.

I agree with ICANIT, the problem most likely lies within your config file. If you upload it we'll at least have a good starting point.

Link to comment
Share on other sites

I seem to came to same conclusion as you guys. but I can't pinpoint what's causing the error. Most likely it's last one or last to next one.

here it is. it's quite long

//---------------------------------------------------------------------------------------------
// Reference ... prog[0] won't be used. It's just an example.
// Look in program.js to see explanation of these properties.
//---------------------------------------------------------------------------------------------
// pn=0; // start value for prog numbering
// prog[pn]=['ProgramName'];
// ordr[pn]=[0];
// desc[pn]=['Description'];
// uid[pn]=['APP1'];
// dflt[pn]=['no'];
// cat[pn]=['Application Category'];
// forc[pn]=['false'];
// configs[pn]=['List of configs to be auto checked. Comma seperated'];
// deps[pn]=[];
// excl[pn]=[];
// cond[pn]=['Javascript Conditional Statement'];
// gcond[pn]=['Javascript Conditional Statement to gray item'];
// regb[pn]=['Registry Key Path'];
// cmd1[pn]=['CommandLine 1'];
// cmd2[pn]=['CommandLine 2'];
// cmd3[pn]=['CommandLine 3'];
// cmd4[pn]=['CommandLine 4'];
// cmd5[pn]=['CommandLine 5'];
// cmd6[pn]=['CommandLine 6'];
// rega[pn]=['Registry Key Path'];
// picf[pn]=['Picture File'];
// picw[pn]=['Width'];
// pich[pn]=['Height'];
// textl[pn]=['Text Location'];
// pn++;

//---------------------------------------------------------------------------------------------
// Your programs here ...
//---------------------------------------------------------------------------------------------
pn=1;
prog[pn]=['4 DeskViewing Program'];
ordr[pn]=[78];
desc[pn]=['Enables four different desktop for easy switching and organization'];
uid[pn]=['4DESKVIEWINGPROGRAM'];
dflt[pn]=['no'];
cat[pn]=['Tweaks and Add-ons'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%cdrom%\\winapp\\tweak\\4desk131setup.exe /S'];
picf[pn]=['4desk.png'];
picw[pn]=['96'];
pich[pn]=['32'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['7zip Archiever'];
ordr[pn]=[32];
desc[pn]=['Compressor tool for .7z files.'];
uid[pn]=['7ZIPARCHIEVER'];
dflt[pn]=['no'];
cat[pn]=['Zip'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\sys\\7z.exe /S'];
picf[pn]=['7zip.png'];
picw[pn]=['112'];
pich[pn]=['64'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Active Desktop Calendar'];
ordr[pn]=[79];
desc[pn]=['Time management program'];
uid[pn]=['ACTIVEDESKTOPCALENDAR'];
dflt[pn]=['yes'];
cat[pn]=['Tweaks and Add-ons'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\adc.exe /verysilent'];
rega[pn]=['%CDROM%\\winapp\\adc.reg'];
picf[pn]=['adc.png'];
picw[pn]=['256'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Adobe Acrobat 7 Professional'];
ordr[pn]=[20];
desc[pn]=['.PDF File Management Software'];
uid[pn]=['ADOBEACROBAT7PROFESSIONAL'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
excl[pn]=['acro71'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\adobe\\acro7\\cmd.cmd'];
picf[pn]=['acro7.jpg'];
picw[pn]=['208'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Adobe Illustrator CS2'];
ordr[pn]=[22];
desc[pn]=['Adobe Illustrator CS2'];
uid[pn]=['ADOBEILLUSTRATORCS2'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\adobe\\ics2\\Setup.exe'];
picf[pn]=['ics2.jpg'];
picw[pn]=['208'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Adobe Photoshop CS2 Update'];
ordr[pn]=[23];
desc[pn]=['Adobe Photoshop'];
uid[pn]=['ADOBEPHOTOSHOPCS2UPDATE'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\adobe\\pcs2\\cmd.cmd'];
picf[pn]=['pcs22.jpg'];
picw[pn]=['256'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Adobe Reader 7.0.8'];
ordr[pn]=[21];
desc[pn]=['Allows to view PDF-Files.'];
uid[pn]=['acro71'];
dflt[pn]=['yes'];
cat[pn]=['Office'];
forc[pn]=['no'];
configs[pn]=['yes'];
excl[pn]=['ADOBEACROBAT7PROFESSIONAL'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%cdrom%\\winapp\\timekill.vbs'];
cmd2[pn]=['%cdrom%\\winapp\\office\\acro.exe'];
picf[pn]=['acro.gif'];
picw[pn]=['256'];
pich[pn]=['208'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Ai Roboform 6'];
ordr[pn]=[80];
desc[pn]=['Password Manager'];
uid[pn]=['AIROBOFORM6'];
dflt[pn]=['yes'];
cat[pn]=['Tweaks and Add-ons'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\internet\\airoboform.exe /silent'];
cmd2[pn]=['%CDROM%\\winapp\\internet\\airoboform.cmd'];
picf[pn]=['airobo.gif'];
picw[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['AlPass 3'];
ordr[pn]=[81];
desc[pn]=['Password Manger'];
uid[pn]=['ALPASS3'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
excl[pn]=['AIROBOFORM6'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\alpass.exe /VERYSILENT'];
picf[pn]=['altools.gif'];
picw[pn]=['64'];
pich[pn]=['85'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['AlSee 5'];
ordr[pn]=[29];
desc[pn]=['Picture viewer'];
uid[pn]=['ALSEE401'];
dflt[pn]=['yes'];
cat[pn]=['Media'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\alsee.exe /VERYSILENT'];
picf[pn]=['alsee.gif'];
picw[pn]=['64'];
pich[pn]=['85'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['AlZip 6'];
ordr[pn]=[33];
desc[pn]=['Zip Utility Program'];
uid[pn]=['ALZIP6'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\alzip.exe /VERYSILENT'];
picf[pn]=['alzip.gif'];
picw[pn]=['64'];
pich[pn]=['85'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['AM-Deadlink 2.8'];
ordr[pn]=[85];
desc[pn]=['Internet Favorites Management Utility'];
uid[pn]=['AMDEADLINK28'];
dflt[pn]=['no'];
cat[pn]=['Internet'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\internet\\dlsetup.exe /verysilent'];
picf[pn]=['amdead.gif'];
picw[pn]=['48'];
pich[pn]=['48'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Avant Browser 10'];
ordr[pn]=[66];
desc[pn]=['Internet Explorer Alternative'];
uid[pn]=['AVANTBROWSER10BUILD132'];
dflt[pn]=['no'];
cat[pn]=['Internet'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\internet\\absetup.exe /S'];
picf[pn]=['avant.gif'];
picw[pn]=['85'];
pich[pn]=['85'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['AVG Free Virus Scanner'];
ordr[pn]=[5];
desc[pn]=['Free AntiVirus Scanner'];
uid[pn]=['AVGFREEVIRUSSCANNER'];
dflt[pn]=['yes'];
cat[pn]=['System Tools'];
forc[pn]=['no'];
excl[pn]=['SYMANTECNORTONANTIVIRUSCO'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\sys\\setup.exe /HIDE /DONT_START_APPS /NO_WELCOME /NO_AVGW_STARTUP /QUIT_IF_INSTALLED'];
picf[pn]=['avg.gif'];
picw[pn]=['176'];
pich[pn]=['64'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['CDEx 1.70'];
ordr[pn]=[36];
desc[pn]=['Rips mp3 files from CD. Convert .wav to/from mp3 and other files'];
uid[pn]=['CDEX'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\cdex.cmd'];
picf[pn]=['cdex.jpg'];
picw[pn]=['160'];
pich[pn]=['128'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['CloneCD 5'];
ordr[pn]=[38];
desc[pn]=['CD Duplicate Program'];
uid[pn]=['CLONECD5'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\clone\\clonecd.exe'];
picf[pn]=['clonecd.gif'];
picw[pn]=['160'];
pich[pn]=['128'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['CloneDVD 2'];
ordr[pn]=[39];
desc[pn]=['DVD Duplicate Program'];
uid[pn]=['CLONEDVD2'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\clone\\CLONEDVD.EXE'];
picf[pn]=['clonedvd.gif'];
picw[pn]=['160'];
pich[pn]=['128'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Clubbox Setup'];
ordr[pn]=[77];
desc[pn]=['Clubbox Download Manager'];
uid[pn]=['CLUBBOXSETUP'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\clubboxsetup.exe /S'];
picf[pn]=['clubbox.gif'];
picw[pn]=['112'];
pich[pn]=['85'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['cyworld auto 2.02'];
ordr[pn]=[86];
desc[pn]=['Program to handle cyworld.com mini homepage'];
uid[pn]=['CYWORLDAUTO202'];
dflt[pn]=['no'];
cat[pn]=['Internet'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\internet\\cyauto.exe /VERYSILENT'];
picf[pn]=['cyworld.gif'];
picw[pn]=['128'];
pich[pn]=['64'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['**** NFO Viewer 2.10.0031 RC3'];
ordr[pn]=[82];
desc[pn]=['.nfo file viewer'];
uid[pn]=['DAMNNFOVIEWER2100031RC3'];
dflt[pn]=['no'];
cat[pn]=['Tweaks and Add-ons'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\****.cmd'];
picf[pn]=['****.jpg'];
picw[pn]=['64'];
pich[pn]=['64'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Daum CAFEON'];
ordr[pn]=[75];
desc[pn]=['Daum Cafe Utility - If you use Daum.net cafe, Install this'];
uid[pn]=['DAUMCAFEON'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\daum\\cafeon.exe'];
picf[pn]=['daum.gif'];
picw[pn]=['96'];
pich[pn]=['48'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Daum Touch'];
ordr[pn]=[76];
desc[pn]=['Daum.net Messenger Program'];
uid[pn]=['DAUMTOUCH'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\daum\\daumtouch.exe'];
cmd2[pn]=['%CDROM%\\winapp\\dvd\\daum\\daumkill.cmd'];
picf[pn]=['daumtouch.gif'];
picw[pn]=['256'];
pich[pn]=['85'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['DVD Shrink 32'];
ordr[pn]=[40];
desc[pn]=['DVD Movie Utility'];
uid[pn]=['DVDSHRINK32'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\dvdshrink32setup.exe /silent'];
picf[pn]=['dvdshrink.jpg'];
picw[pn]=['176'];
pich[pn]=['240'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['eMule 0.47a'];
ordr[pn]=[83];
desc[pn]=['eDonkey/Kazza/WinMX Replacement.'];
uid[pn]=['EMULE046b'];
dflt[pn]=['no'];
cat[pn]=['Misc'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\internet\\emule047a.exe /S'];
cmd2[pn]=['%CDROM%\\winapp\\internet\\emule.cmd'];
picf[pn]=['emule.png'];
picw[pn]=['192'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['FinePrint 5.54 Server Edition'];
ordr[pn]=[71];
desc[pn]=['Allows to print upto 8 pages into one'];
uid[pn]=['FINEPRINT554SERVERED'];
dflt[pn]=['no'];
cat[pn]=['Tweaks and Add-ons'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\tweak\\fpe.exe'];
picf[pn]=['fineprint.jpg'];
picw[pn]=['256'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Google Desktop Search 4'];
ordr[pn]=[70];
desc[pn]=['Desktop Search Utility'];
uid[pn]=['GOOGLEDESKTOPSEARCH4'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\DVD\\gds.exe /silent'];
picf[pn]=['google.jpg'];
picw[pn]=['208'];
pich[pn]=['112'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Google Picasa2'];
ordr[pn]=[28];
desc[pn]=['A very good picture viewer. Can upload picture directly to online developing sites'];
uid[pn]=['GOOGLEPICASA2'];
dflt[pn]=['no'];
cat[pn]=['Media'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\picasa2.exe /S'];
cmd2[pn]=['%CDROM%\\winapp\\picasa.cmd'];
picf[pn]=['picasa.gif'];
picw[pn]=['176'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Google Toolbar 4 Enterprise Ed.'];
ordr[pn]=[69];
desc[pn]=['Installs toolbar in Web Browsers: Easy search, remembers personal info, etc'];
uid[pn]=['GOOGLETOOLBAR30BETA'];
dflt[pn]=['yes'];
cat[pn]=['Tweaks and Add-ons'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\internet\\GoogleToolbarInstaller.msi /qn'];
picf[pn]=['google.jpg'];
picw[pn]=['208'];
pich[pn]=['112'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Hangul 2007'];
ordr[pn]=[24];
desc[pn]=['Hangul 2007 Word Processor. Handles .HWP files'];
uid[pn]=['HANGUL2005'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\hangul\\install\\hangul.cmd'];
picf[pn]=['hangul.gif'];
picw[pn]=['128'];
pich[pn]=['128'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Honeyview 2.820'];
ordr[pn]=[84];
desc[pn]=['Utility for viewing large number of picture files'];
uid[pn]=['HONEYVIEW2636'];
dflt[pn]=['no'];
cat[pn]=['Misc'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\hv.exe /S'];
picf[pn]=['hv2.png'];
picw[pn]=['256'];
pich[pn]=['208'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['ipop Gom Player 2.0'];
ordr[pn]=[35];
desc[pn]=['Media Player www.ipop.co.kr'];
uid[pn]=['GOMPLAYER'];
dflt[pn]=['no'];
cat[pn]=['Media'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\media\\gom2.exe /S'];
picf[pn]=['gom.jpg'];
picw[pn]=['256'];
pich[pn]=['224'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['iPop Ping Messenger'];
ordr[pn]=[74];
desc[pn]=['Online Messenger Program for iPop. Controls PopFolder'];
uid[pn]=['IPOPPINGMESSENGER'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\pingsetup.exe /S'];
picf[pn]=['ipopping.gif'];
picw[pn]=['256'];
pich[pn]=['112'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['ipop PopRecv Setup'];
ordr[pn]=[73];
desc[pn]=['Download manager for ipop'];
uid[pn]=['IPOPPOPRECVSETUP'];
dflt[pn]=['yes'];
cat[pn]=['Internet'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\internet\\poprecvsetup.exe /S'];
cmd2[pn]=['%CDROM%\\winapp\\internet\\poprecv.cmd'];
picf[pn]=['ipop.gif'];
picw[pn]=['128'];
pich[pn]=['64'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Microsoft .net 1.1 / 2.0 Final'];
ordr[pn]=[2];
desc[pn]=['Microsoft .net 2.0 and .net 1.1 SP1'];
uid[pn]=['NET20FINAL'];
dflt[pn]=['yes'];
cat[pn]=['System Tools'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\sys\\dotnet11.exe'];
cmd2[pn]=['%CDROM%\\winapp\\sys\\dotnet2.exe'];
picf[pn]=['winxp.png'];
picw[pn]=['256'];
pich[pn]=['208'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Microsoft IntelliType 5.5'];
ordr[pn]=[10];
desc[pn]=['MS Keyboard Program. (Only works for MS Ergo 4000 Keyboard)'];
uid[pn]=['INTELLITYPE55'];
dflt[pn]=['no'];
cat[pn]=['Misc'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\ITP55.exe'];
cmd2[pn]=['%CDROM%\\winapp\\timekill.vbs'];
picf[pn]=['winxp.png'];
picw[pn]=['256'];
pich[pn]=['208'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Microsoft Office 2003 SP2'];
ordr[pn]=[1];
desc[pn]=['Installs Microsoft Office 2003 Professional.'];
uid[pn]=['O2K3'];
dflt[pn]=['yes'];
cat[pn]=['Office'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\DVD\\Office2003\\setup.exe TRANSFORMS=Unattended.MST /qb-'];
cmd2[pn]=['%CDROM%\\winapp\\office\\office.cmd'];
picf[pn]=['office.jpg'];
picw[pn]=['256'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['MSN Messenger 8.0.792 Patched'];
ordr[pn]=[67];
desc[pn]=['Microsoft Messenger Portal Program. Mess.be patched'];
uid[pn]=['MSNMESSENGER7BUILD0732BET'];
dflt[pn]=['yes'];
cat[pn]=['Internet'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\internet\\msn80.exe'];
cmd2[pn]=['%CDROM%\\winapp\\internet\\msnwinam.cmd'];
picf[pn]=['msnlive.jpg'];
picw[pn]=['256'];
pich[pn]=['160'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Nero Burning ROM v6.6.1.4 Custom'];
ordr[pn]=[26];
desc[pn]=['CD/DVD Burning Utility'];
uid[pn]=['NEROBURNINGROMV66012'];
dflt[pn]=['yes'];
cat[pn]=['Media'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\cd\\Nero_custom_setup.exe'];
cmd2[pn]=['%CDROM%\\winapp\\cd\\Nero.cmd'];
rega[pn]=['%cdrom%\\winapp\\cd\\nero.reg'];
picf[pn]=['nero.jpg'];
picw[pn]=['240'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Opera Internet Browser 9'];
ordr[pn]=[65];
desc[pn]=['Opera - The Fastest Browser on earth'];
uid[pn]=['OPERAINTERNETBROWSER9P1'];
dflt[pn]=['no'];
cat[pn]=['Internet'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\internet\\opera.exe /s'];
cmd2[pn]=['%CDROM%\\winapp\\internet\\operaflash.exe /S'];
picf[pn]=['opera.png'];
picw[pn]=['48'];
pich[pn]=['48'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Paint .Net 2.'];
ordr[pn]=[27];
desc[pn]=['Improvement over regular paint program.'];
uid[pn]=['PAINTNET26'];
dflt[pn]=['yes'];
cat[pn]=['Media'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\paintdotnet.exe /auto /skipConfig CHECKFORBETAS=0 CHECKFORUPDATES=0 JPGPNGBMPEDITOR=0 TGAEDITOR=1 DESKTOPSHORTCUT=0'];
picf[pn]=['paint.net.png'];
picw[pn]=['224'];
pich[pn]=['48'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['pdfFactory Server Edition'];
ordr[pn]=[72];
desc[pn]=['.PDF File creator'];
uid[pn]=['PDFFACTORYSERVEREDITION'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\fpp.exe'];
pn++;

prog[pn]=['Perfect Disk 7.046'];
ordr[pn]=[4];
desc[pn]=['Defragment Tool from Raxco'];
uid[pn]=['PERFECTDISK7040'];
dflt[pn]=['yes'];
cat[pn]=['System Tools'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%cdrom%\\winapp\\sys\\perfectdisk7046.exe'];
cmd2[pn]=['%cdrom%\\winapp\\sys\\raxco.cmd'];
cmd3[pn]=['%cdrom%\\winapp\\timekill.vbs'];
picf[pn]=['pdisk.jpg'];
picw[pn]=['160'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['PowerDVD 7.0'];
ordr[pn]=[37];
desc[pn]=['PowerDVD 7.0 Deluxe'];
uid[pn]=['POWERDVD601122'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\pdvd7.exe'];
picf[pn]=['pdvd.jpg'];
picw[pn]=['128'];
pich[pn]=['128'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['QuickTime Real Alternative'];
ordr[pn]=[9];
desc[pn]=['Plug-in for Quicktime and Real formats (.mov .rm .ra .tiff)'];
uid[pn]=['QUICKTIMEREALALTERNATIVE1'];
dflt[pn]=['yes'];
cat[pn]=['Media'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\media\\quicktimealt.exe /VERYSILENT /SP-'];
cmd2[pn]=['%CDROM%\\winapp\\media\\realalt.exe /VERYSILENT /SP-'];
picf[pn]=['qt.jpg'];
picw[pn]=['160'];
pich[pn]=['128'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Riva Tuner 2.0'];
ordr[pn]=[8];
desc[pn]=['Tweak Program for nVidia Cards'];
uid[pn]=['RIVATUNERRC16'];
dflt[pn]=['no'];
cat[pn]=['Tweaks and Add-ons'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%cdrom%\\winapp\\tweak\\rivatuner.exe /S'];
picf[pn]=['rivatuner.jpeg'];
picw[pn]=['160'];
pich[pn]=['64'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Skype 2.5'];
ordr[pn]=[68];
desc[pn]=['Internet VoIP Program'];
uid[pn]=['SKYPE25'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\Skypesetup.exe /VERYSILENT /LANG=EN /NoStart /NoWPFinished'];
picf[pn]=['skype.jpg'];
picw[pn]=['128'];
pich[pn]=['160'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['StarCraft 1.14 Patched'];
ordr[pn]=[110];
desc[pn]=['StarCraft Broodwar'];
uid[pn]=['STARCRAFT114PATCHED'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\DVD\\starcraft.cmd'];
picf[pn]=['sc.jpg'];
picw[pn]=['224'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Sun Java Runtime Environment 5.0'];
ordr[pn]=[3];
desc[pn]=['Sun Java Runtime. Must have for several website and others'];
uid[pn]=['java505'];
dflt[pn]=['yes'];
cat[pn]=['System Tools'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\sys\\jre.exe /qn'];
picf[pn]=['java.jpg'];
picw[pn]=['128'];
pich[pn]=['128'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Symantec Norton Antivirus Corp. Ed. v10.1'];
ordr[pn]=[6];
desc[pn]=['Antivirus Program. Virus Defnition Updated'];
uid[pn]=['SYMANTECNORTONANTIVIRUSCO'];
dflt[pn]=['no'];
cat[pn]=['DVD ONLY'];
forc[pn]=['no'];
configs[pn]=['yes'];
excl[pn]=['AVGFREEVIRUSSCANNER'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\dvd\\sav10.exe'];
cmd2[pn]=['%CDROM%\\winapp\\timekill2.vbs'];
picf[pn]=['sav.gif'];
picw[pn]=['224'];
pich[pn]=['160'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Tag&Rename 3.25'];
ordr[pn]=[87];
desc[pn]=['Very good Mp3 tag editor'];
uid[pn]=['TAGRENAME325'];
dflt[pn]=['no'];
cat[pn]=['Media'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\media\\tagrename.exe /verysilent'];
picf[pn]=['tagrename.jpg'];
picw[pn]=['48'];
pich[pn]=['48'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['theme-Logon_April Shower'];
ordr[pn]=[115];
desc[pn]=['Logon Page'];
uid[pn]=['THEMELOGON_APRILSHOWER'];
dflt[pn]=['no'];
cat[pn]=['Themes-Logon'];
forc[pn]=['no'];
excl[pn]=['THEMELOGON_SKYVIEW','THEMELOGON_NAYOUNG','THEMELOGON_NATURAL'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
rega[pn]=['%systemdrive%\\theme\\april.reg'];
picf[pn]=['logon-april.jpg'];
picw[pn]=['256'];
pich[pn]=['224'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['theme-Logon_Natural'];
ordr[pn]=[116];
desc[pn]=['Logon Page'];
uid[pn]=['THEMELOGON_NATURAL'];
dflt[pn]=['no'];
cat[pn]=['Themes-Logon'];
forc[pn]=['no'];
excl[pn]=['THEMELOGON_SKYVIEW','THEMELOGON_NAYOUNG','THEMELOGON_APRILSHOWER'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
rega[pn]=['%systemdrive%\\theme\\natural.reg'];
picf[pn]=['logon-natural.jpg'];
picw[pn]=['256'];
pich[pn]=['224'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['theme-Logon_nayoung'];
ordr[pn]=[117];
desc[pn]=['Logon Page'];
uid[pn]=['THEMELOGON_NAYOUNG'];
dflt[pn]=['no'];
cat[pn]=['Themes-Logon'];
forc[pn]=['no'];
excl[pn]=['THEMELOGON_SKYVIEW','THEMELOGON_APRILSHOWER','THEMELOGON_NATURAL'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
rega[pn]=['%systemdrive%\\theme\\nayoung.reg'];
picf[pn]=['logon-nayoung.jpg'];
picw[pn]=['256'];
pich[pn]=['224'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['theme-Logon_Skyview'];
ordr[pn]=[118];
desc[pn]=['Logon Page'];
uid[pn]=['THEMELOGON_SKYVIEW'];
dflt[pn]=['yes'];
cat[pn]=['Themes-Logon'];
forc[pn]=['no'];
excl[pn]=['THEMELOGON_NAYOUNG','THEMELOGON_APRILSHOWER','THEMELOGON_NATURAL'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
regb[pn]=['%systemdrive%\\theme\\skyview.reg'];
picf[pn]=['logon-sky.jpg'];
picw[pn]=['256'];
pich[pn]=['224'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['UltraISO 8'];
ordr[pn]=[30];
desc[pn]=['Program that handles mutiple image files including .iso .bin .cue .nrg'];
uid[pn]=['ULTRAISO8'];
dflt[pn]=['no'];
cat[pn]=['Zip'];
forc[pn]=['no'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%cdrom%\\winapp\\cd\\uiso8_pe.exe /VERYSILENT /SP-'];
rega[pn]=['%cdrom%\\winapp\\cd\\uiso8.reg'];
picf[pn]=['uiso.gif'];
picw[pn]=['256'];
pich[pn]=['208'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['Winamp 5.25'];
ordr[pn]=[34];
desc[pn]=['MP3/WAV/MID/WMA/OGG Media Player'];
uid[pn]=['WINAMP508D'];
dflt[pn]=['yes'];
cat[pn]=['Media'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%CDROM%\\winapp\\media\\winamp.exe'];
picf[pn]=['winamp.jpg'];
picw[pn]=['128'];
pich[pn]=['128'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['WinRAR 3.60'];
ordr[pn]=[31];
desc[pn]=['ZIP-Folder Replacement. Handles almost all archive files.'];
uid[pn]=['WINRAR342'];
dflt[pn]=['yes'];
cat[pn]=['Zip'];
forc[pn]=['no'];
configs[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%cdrom%\\winapp\\sys\\wrar.exe /S'];
picf[pn]=['winrar.gif'];
picw[pn]=['224'];
pich[pn]=['256'];
textl[pn]=['Bottom'];
pn++;

prog[pn]=['zBTS Finish'];
ordr[pn]=[119];
desc[pn]=['Must Finish. Do NOT uncheck'];
uid[pn]=['ZBTSFINISH'];
dflt[pn]=['yes'];
cat[pn]=['System Tools'];
forc[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%SystemDrive%\\DPsFnshr.exe'];
pn++;

prog[pn]=['zFinishing Install'];
ordr[pn]=[120];
desc[pn]=['Must Complete. Do NOT uncheck'];
uid[pn]=['ZFINISHINGINSTALL'];
dflt[pn]=['yes'];
cat[pn]=['System Tools'];
forc[pn]=['yes'];
gcond[pn]=['FileExists(\'%programfiles%\')'];
cmd1[pn]=['%systemdrive%\\none1.bat'];
cmd2[pn]=['%CDROM%\\winapp\\finish.cmd'];
cmd3[pn]=['%CDROM%\\winapp\\cmd2.cmd'];
pn++;

//---------------------------------------------------------------------------------------------
// End of program definitions ...
//---------------------------------------------------------------------------------------------

Edited by larciel
Link to comment
Share on other sites

Larciel: your config file looks fine to me, no problem here.

but then again, we cant see what is going on in the bat and cmd files you are calling in your last entry.

can you post these as well ?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...