Jump to content

WPI 5.1 Wish List


Recommended Posts

If you are getting at: install windows, reboot, see welcome screen, WPI starts, then desktop; I would consider this "normal".

You want: install windows, reboot, see welcome screen, desktop, then WPI starts. Correct?

I don't know how it would be an option. Mshta.exe waits for WPI to finish. Wouldn't it require something in in a cmd script to launch WPI but keep moving on right away? Or somehow after desktop is up, launch WPI from a script.

I thought Kels said he did the latter so he could tweak his desktop and other settings while WPI was doing it's thing. Could even web surf. Must be a way...............post it in a new thread.

Link to comment
Share on other sites


Yes, you are right mritter. :D

I start WPI with this WPI.cmd that is called from winnt.sif on first login:

cmdow.exe @ /HID
@ECHO OFF

for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\WIN51 set CDROM=%%i:

set WPIPATH=%CDROM%\Install\WPI\

for /F "delims=: tokens=1" %%i in ("%WPIPATH%") DO %%i:

cd "%WPIPATH%"

start WPI.hta

This causes, that WPI loads and installs the apps, but windows continues loading the desktop etc. If you delete the "start" argument in the last line, WPI installs first and then the desktop gets loaded. It would be a nice option, but not that necessary for me, as I solved it for me. I need this, because my Cleanup.cmd deletes shortcuts that get created when the desktop is loaded. If the desktop loads after WPI finished, some of my settings and tweaks get overwritten by windows. :whistle:

Link to comment
Share on other sites

Please ignore what I was asking for. I realised today that WPI 5.0.1 actually does halt the loading of the windows shell, which is what I want.

A couple of things to point out though:

1. Can an option be added to not only restart the computer after x amount of seconds, but to also have the option to shutdown the PC. This would be useful if using an unattended install of WinXP with WPI, where you then get the build rady to take a ghost image. ie when PC shuts down, you know thats when you take the image.

2. If you have told WPI to restart windows after 10 seconds at the end of program installs. Is it possible that the windows shell doesn't try to load in this 10 second gap? (I think this maybe why the sleep command is used in core.js, but am not 100%). I am getting some errors where Windows starts loading all its startup programs, but the restart command kicks in and causes errors to appear. (errors are forced to close, but can this be cleaned up?)

Hope that made sense to you guys, am not sure if I understood it, it has been a long day!!

Link to comment
Share on other sites

@kev_147:

#1 - Sure. Simple addition.

#2 - I can make the restart command do a restart before WPI closes. Very simple change.

But, I am not sure why you would want #2. I always take an image after the first desktop load becuase then any last minute details from Windows is taken care of. Like the stupid first open of the Start menu (if you don't reg entry it out), placing of the icons, etc.

The 10 second delay is not long enough. Window's is doing some of the above things and you are cutting it off.

No problem at all. Just putting my 2 cents in.

Link to comment
Share on other sites

I will not be using #2 to then create the image. I will be creating the image after the shutdown comment in #1, so I would suggest that the shutdown command allow windows to load and then shutdown, but the restart command to restart windows before the shell loads.

Your point about the 10 second delay is valid, but it shouldn't matter how long you make the delay if you get wpi to restart windows before it finishes, will it?

Link to comment
Share on other sites

Why not using the 'startup' menu for things that have to be done after the desktop is loaded?

Just put a cmd file in there (from WPI) with whatever cmd you want to be process at that time.

The cmd file can even delete itself at the end (DEL %0).

Link to comment
Share on other sites

  • 2 weeks later...

I'm kind of new to WPI but I love what I've seen of it so far. Here's a thought for a somewhat radical feature for the future. Would it be possible to launch a program before windows installed which would allow you to make all of your config decisions right from the start? This would save you having to set an unattended windows install going and coming back after 30 minutes to decide which config.js file to load and within it which programs to install. It'd make the process more truly unattended.

Even better would be the option to define things straight off like the user name and organization which could serve as variables throughout the whole installation process. They could be inserted into your winnt.sif, Office installation, and any other programs. You could ideally also choose how to format the hard drive from the initial menu so you would only have to insert your DVD, set your options, and leave. 1 - 3 hours later you'd have a fully functional customized system.

Link to comment
Share on other sites

In your first section all of what you said is possible you just need to explore WPI more.

It works like this:

Windows installs,

WPI is called from svcpack or runonceex,

WPI loads with whatever config you determined in your command line,

WPI's timer runs out and all of you programs install,

Windows finishes loading.

Your done...

Link to comment
Share on other sites

Hi. Thank you for a good work you does.

My desire is that when program that is of type ”MSI” Adobe acrobat, photoshop there are more program that don't want to install on correct sage. Goes it to do as that not a new installing starts before the ongoing the installation is ready.

In now mode as start wpi installations before the first is ready.

Hope that I explain as that there goes that understand. Excuse my bad english

;)

Link to comment
Share on other sites

Okey here's my config.js file

//---------------------------------------------------------------------------------------------

// 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]=['7zip 4.42'];

desc[pn]=['Packar & packarupp filer så som zip rar och 7zip'];

uid[pn]=['7ZIP'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\7zip\\7z442.exe /S'];

picf[pn]=['7zip.PNG'];

picw[pn]=['128'];

pich[pn]=['128'];

textl[pn]=['Top'];

pn++;

prog[pn]=['Acronis True Image 9.0.3633 Home'];

desc[pn]=['Går att cloan hårddisken typ som norton ghost'];

uid[pn]=['ACRONISTRUEIMAGE90HOME'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\trueimage\\AcronisTrueImage9.0Build3633Home.exe'];

pn++;

prog[pn]=['Activesync 4.1 swe'];

uid[pn]=['ACTIVESYNC40'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Activesync\\Activesync.msi /quiet /norestart'];

pn++;

prog[pn]=['Ad-Aware SE 1.06 R1'];

desc[pn]=['Ta bort massa otyg från datorn så som trojaner och maskar'];

uid[pn]=['ADAWARESE105'];

dflt[pn]=['yes'];

cat[pn]=['ANTIVIRUS & SECURITY'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\install\\Applications\\Adware\\Ad-AwareSEProfessionalEdition1.06r1Full.exe /s'];

picf[pn]=['Ad-Aware SE.png'];

picw[pn]=['128'];

pich[pn]=['128'];

textl[pn]=['Bottom'];

pn++;

prog[pn]=['Adobe Photoshop CS2 SWE'];

uid[pn]=['ADOBEPHOTOSHOPCS2SWE'];

dflt[pn]=['yes'];

cat[pn]=['PHOTO'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\ADOBE_PSCS2_SV\\setup.exe /v/qb!'];

cmd2[pn]=['%cdrom%\\Install\\Applications\\ADOBE_PSCS2_SV\\regfix\\reg.exe'];

pn++;

prog[pn]=['Adobe Photoshop Elements v4.0 svenskt'];

uid[pn]=['ADOBEPHOTOSHOPELEMENTSV40'];

dflt[pn]=['no'];

cat[pn]=['PHOTO'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\AdobePhotoshopElements4.0svensk\\AdobePhotoshopElements4.0.msi /qn'];

pn++;

prog[pn]=['Adobe Reader 7.0.8 swe'];

ordr[pn]=[5];

desc[pn]=['Läsa PDF'];

uid[pn]=['ADOBEREADER708SWE'];

dflt[pn]=['yes'];

cat[pn]=['OFFICE'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Acrobat7\\AdobeReader7.exe'];

picf[pn]=['Acrobat Reader.png'];

picw[pn]=['128'];

pich[pn]=['128'];

textl[pn]=['Top'];

pn++;

prog[pn]=['Alcohol 120% 1.9.5.3105'];

desc[pn]=['Super brännarProgramfiler så som CD klara denna skönhet även DVD'];

uid[pn]=['ALCOHOL120'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Alcohol\\alcohol120.exe'];

picf[pn]=['alcohol120.png'];

picw[pn]=['128'];

pich[pn]=['128'];

textl[pn]=['Bottom'];

pn++;

prog[pn]=['AnyDVD v6.0.1.1'];

uid[pn]=['ANYDVDV6004'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Anydvd\\SetupAnyDVD6011.exe /S /NCRC'];

rega[pn]=['REGEDIT /S %CDROM%\\install\\Applications\\Anydvd\\AnyDVD.reg'];

pn++;

prog[pn]=['AVG 7.1 AntiVirus plus 384a720'];

desc[pn]=['AVG Antivirus Pro ett bra och fullbordat antivirus skydd med någon typ av brandvägg in byggd'];

uid[pn]=['AVG70ANTIVIRUSPLUSFIREWAL'];

dflt[pn]=['yes'];

cat[pn]=['ANTIVIRUS & SECURITY'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\AVG7.0Anti-VirusplusFirewallEdition\\avg71f_384a720.exe'];

picf[pn]=['avg.png'];

picw[pn]=['128'];

pich[pn]=['128'];

textl[pn]=['Bottom'];

pn++;

prog[pn]=['AVG Antivirus 7.1.385a721 FREE'];

desc[pn]=['Ett bra gratis antivirus gör sitt jobb'];

uid[pn]=['AVGANTIVIRUS70300A419FREE'];

dflt[pn]=['yes'];

cat[pn]=['ANTIVIRUS & SECURITY'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\avg7\\avg71free_385a721.exe'];

picf[pn]=['avg.png'];

picw[pn]=['128'];

pich[pn]=['128'];

textl[pn]=['Bottom'];

pn++;

prog[pn]=['Azureus 2.4.0.2'];

desc[pn]=['Ladda och seeda program, filer plus massa annat. Super ett måste'];

uid[pn]=['AZUREUS2202'];

dflt[pn]=['yes'];

cat[pn]=['P2P'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Azureus2.2\\Azureus_2.4.0.2_Win32.setup.exe /S /D=C:\\Program files\\Azureus'];

picf[pn]=['Azureus.png'];

picw[pn]=['128'];

pich[pn]=['128'];

textl[pn]=['Bottom'];

pn++;

prog[pn]=['Bitcomet 0.67'];

desc[pn]=['Ladda och seeda program, filer plus massa annat. Super ett måste'];

uid[pn]=['BITCOMET060'];

dflt[pn]=['yes'];

cat[pn]=['P2P'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Bitcomet\\BitComet_0.67_setup.exe /S'];

pn++;

prog[pn]=['BitLord 1.1'];

uid[pn]=['BITLORD11'];

dflt[pn]=['yes'];

cat[pn]=['P2P'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\BITLORD\\BitLord_1.1.exe /S /D=C:\\PROGRAM files\\BITLORD /NCRC];

pn++;

prog[pn]=['BlindWrite 5.2.16.154'];

uid[pn]=['BLINDWRITE5216154'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\install\\Applications\\BlindWrite5216154-TE\\BlindWrite5_setup.exe /silent /loadinf=%cdrom%\\install\\Applications\\BlindWrite5216154-TE\\bw.inf /norestart'];

cmd2[pn]=['%cdrom%\\install\\Applications\\BlindWrite5216154-TE\\bw_fix.exe'];

pn++;

prog[pn]=['Canon Photostitch 3.1'];

desc[pn]=['Fungerar även om man inte äger en Canon pryl. Skapa panorama foto enkelt och det blir super'];

uid[pn]=['CANONPHOTOSTITCH31'];

dflt[pn]=['yes'];

cat[pn]=['PHOTO'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\CanonPHOTOSTITCH3.1\\ENGLISH\\setup.exe -s'];

pn++;

prog[pn]=['Cdrwin 4.0 a-a'];

desc[pn]=['Mästaren i bränna CD'];

uid[pn]=['CDRWIN39K'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\CDRWin4.0A\\CDRWIN.msi /passive'];

pn++;

prog[pn]=['Combined Community Codec Pack'];

uid[pn]=['COMBINEDCOMMUNITYCODECPAC'];

dflt[pn]=['no'];

cat[pn]=['CODECS'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\cccp\\Combined-Community-Codec-Pack-2006-05-01.exe'];

pn++;

prog[pn]=['Corel Paint Shop Pro 10'];

uid[pn]=['CPRELPAINTSHOPPRO10'];

dflt[pn]=['yes'];

cat[pn]=['PHOTO'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\PaintShopPro\\PaintshopproX.exe'];

pn++;

prog[pn]=['Cover XP 1.61'];

uid[pn]=['COVERXP161'];

dflt[pn]=['yes'];

cat[pn]=['PHOTO'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\coverxp\\coverxp161.exe /S'];

pn++;

prog[pn]=['Daemon Tools 4.03'];

desc[pn]=['Virtuell CD/DVD'];

uid[pn]=['DAEMONTOOLS347'];

dflt[pn]=['yes'];

cat[pn]=['SYSTEM'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\daemon\\daemon.exe'];

pn++;

prog[pn]=['DAMNNFO'];

uid[pn]=['DAMNNFO'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\DAMNNFO\\DAMNNFO.exe /s'];

pn++;

prog[pn]=['DC++ v0.674'];

uid[pn]=['DC0401'];

dflt[pn]=['yes'];

cat[pn]=['P2P'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\DCPLUPLUS\\DCPlusPlus-0.674.exe /S /D=C:\\PROGRAM\\DCPLUSPLUS" /NCRC];

pn++;

prog[pn]=['DVD Decrypter 3.5.4.0'];

uid[pn]=['DVDDECRYPTER3520'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\DVDDecrypter\\SetupDVDDecrypter_3.5.4.0.exe /S /D=C:\\Program\\DVDDecrypter'];

pn++;

prog[pn]=['DVD shrink 3.2.0.15'];

uid[pn]=['DVDSHRINK320'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\dvdshrink\\dvdshrink3.2.0.15setup.exe /silent'];

pn++;

prog[pn]=['Emule 0.46C'];

uid[pn]=['EMULE046A'];

dflt[pn]=['yes'];

cat[pn]=['P2P'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\EMULE\\eMule0.46c.exe /S /D=c:\\PROGRAM\\EMULE" /NCRC];

pn++;

prog[pn]=['EVEREST Home Edition 2.20.405'];

uid[pn]=['EVERESTHOMEEDITION201347'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\EVEREST\\everesthome220.exe /SILENT /DIR=C:\\Program\\Lavalys\\EVEREST Home Edition" /NORESTART];

pn++;

prog[pn]=['Flash Player 7'];

uid[pn]=['FLASHPLAYER7'];

dflt[pn]=['yes'];

cat[pn]=['SYSTEM'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\FlashPlayer7\\SilentInstallFlashPlayer7AX.exe'];

pn++;

prog[pn]=['FlashFXP v3.0.2.1045 Final'];

uid[pn]=['FLASHFXPV3021045FINAL'];

dflt[pn]=['yes'];

cat[pn]=['P2P'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\FLASHFXP\\flashfxp.exe /VERYSILENT /SP- /NORESTART" /f'];

cmd2[pn]=['%CDROM%\\install\\Applications\\FLASHFXP\\flashfxp.sfx.exe'];

pn++;

prog[pn]=['FulDC 6.66'];

uid[pn]=['FULDC658'];

dflt[pn]=['yes'];

cat[pn]=['P2P'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\fulDC\\fulDC-6.66.msi /passive'];

pn++;

prog[pn]=['GeForce Overclocking - Cool Bits Reg'];

desc[pn]=['Cool Bits regtweak för GeForce grafik gör så att du kan överklocka'];

uid[pn]=['GEFORCEOVERCLOCKING'];

dflt[pn]=['yes'];

cat[pn]=['REGTWEAK'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

regb[pn]=['REGEDIT /S %cdrom%\\Install\\Applications\\regtweak\\geforce_overclock.reg'];

pn++;

prog[pn]=['Google Toolbar 4.0.629.4924'];

uid[pn]=['GOOGLETOOLBAR'];

dflt[pn]=['yes'];

cat[pn]=['INTERNET'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\google\\GoogleToolbarInstaller.exe /s /qn'];

pn++;

prog[pn]=['HighMat CD'];

uid[pn]=['HIGHMATCD'];

dflt[pn]=['yes'];

cat[pn]=['SYSTEM'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\HighMatCDWritingWizard\\KB831240.exe /qn'];

pn++;

prog[pn]=['ICQ 5 Lite'];

uid[pn]=['ICQ5LITE'];

dflt[pn]=['yes'];

cat[pn]=['INTERNET'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

regb[pn]=['REGEDIT /S %cdrom%\\install\\Applications\\icq5\\icq.reg'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\icq5\\icq5_setup.exe /silent'];

cmd2[pn]=['taskkill /IM ICQLite.exe'];

rega[pn]=['REGEDIT /S %cdrom%\\install\\Applications\\icq5\\icq.reg'];

pn++;

prog[pn]=['IMGBURN 1.3.0.0'];

desc[pn]=['Bränna iso filer'];

uid[pn]=['IMGBURN'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\IMGBURN\\SetupImgBurn_1.3.0.0.exe /S'];

pn++;

prog[pn]=['Incredimail XE build 2206 SWE'];

desc[pn]=['En annorlunda email klient skicka roligare email'];

uid[pn]=['INREDIMAILXEBUILD1930SWE'];

dflt[pn]=['yes'];

cat[pn]=['INTERNET'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Incredimail\\IncrediMailSetup_se.exe /s'];

cmd2[pn]=['taskkill /F /IM incmail.exe'];

cmd3[pn]=['taskkill /F /IM imapp.exe'];

cmd4[pn]=['%cdrom%\\Install\\Applications\\Incredimail\\bin.exe'];

pn++;

prog[pn]=['Intel P4 2MB fix'];

desc[pn]=['Fix för Intel med 2MB'];

uid[pn]=['INTELP42MBFIX'];

dflt[pn]=['yes'];

cat[pn]=['REGTWEAK'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

regb[pn]=['%REGEDIT /S cdrom%\\Install\\Applications\\regtweak\\Intel_P4_2MB.reg'];

picf[pn]=['registry.png'];

picw[pn]=['128'];

pich[pn]=['128'];

textl[pn]=['Bottom'];

pn++;

prog[pn]=['Irfanview 3.97'];

uid[pn]=['IRFANVIEW397'];

dflt[pn]=['yes'];

cat[pn]=['PHOTO'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\iview\\iview397.exe /silent /folder=c:\\program\\irfanview" /desktop=1 /group=1 /allusers=0 /assoc=0];

cmd2[pn]=['%cdrom%\\Install\\Applications\\iview\\svenska397.exe /S'];

pn++;

prog[pn]=['K-Lite Mega Codec Pack 1.53'];

uid[pn]=['KLITEMEGACODE'];

dflt[pn]=['no'];

cat[pn]=['CODECS'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\k-lite\\klite.exe'];

pn++;

prog[pn]=['Leap FTP 2.73'];

uid[pn]=['LEAPFTP273'];

dflt[pn]=['yes'];

cat[pn]=['INTERNET'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\LeapFTP2.73\\LeapFTP2.73.exe /s'];

pn++;

prog[pn]=['Macromedia Shockwave Player 10.1.0.11'];

uid[pn]=['MACROMEDIASHOCKWAVEPLAYER'];

dflt[pn]=['yes'];

cat[pn]=['SYSTEM'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\ShockwavePlayer101.0.11\\mm_fl_sw_installer.msi /qn'];

pn++;

prog[pn]=['Magic ISO 5.0.0166'];

uid[pn]=['MAGICISO47'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\MagicISO\\MagicISO5.0Build0166.msi /passive /norestart'];

pn++;

prog[pn]=['MD5 sum checker'];

uid[pn]=['MD5SUMCHECKER'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\install\\Applications\\Md5win32\\Md5win32.msi /quiet'];

pn++;

prog[pn]=['Microsoft .NET Framework 2.0'];

uid[pn]=['MICROSOFTNETFRAMEWORK20'];

dflt[pn]=['no'];

cat[pn]=['SYSTEM'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\NET_Framework2\\dotnet2.exe'];

pn++;

prog[pn]=['Motherboard monitor 5.3.7.0'];

desc[pn]=['Morderkorts övervakare'];

uid[pn]=['MOTHERBOARDMONITOR5370'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\motherboardmonitor\\MBM5370.exe /SILENT /NORESTART /DIR=C:\\PROGRAM\\motherboardmonitor&quot];

pn++;

prog[pn]=['Mozilla Firefox 1.5.0.4'];

uid[pn]=['MOZILLAFIREFOX10SWE'];

dflt[pn]=['yes'];

cat[pn]=['INTERNET'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Mozillafirefox\\svensk\\setup.exe'];

pn++;

prog[pn]=['Mozilla Thunderbird 1.5.0'];

desc[pn]=['Email klient'];

uid[pn]=['MOZILLATHUNDERBIRD102SWE'];

dflt[pn]=['yes'];

cat[pn]=['INTERNET'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\MozillaThunderbird\\Thunderbird1.5.exe'];

pn++;

prog[pn]=['Neat Image Pro Plus4.0'];

uid[pn]=['NEATIMAGEPROPLUS40'];

dflt[pn]=['yes'];

cat[pn]=['PHOTO'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\NeatImageProPlus4.0\\NeatImagePro4.exe /s'];

pn++;

prog[pn]=['Nero v6.6.1.4 RELOADED'];

uid[pn]=['NERO6614'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Nero6\\Nero6.6.1.4.exe'];

pn++;

prog[pn]=['Nero v7.2.0.3 Premium'];

uid[pn]=['NERO7203'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Nero7\\nero7.2.exe'];

pn++;

prog[pn]=['Nero v7.2.3.2b Lite svensk'];

uid[pn]=['NEROLITE'];

dflt[pn]=['yes'];

cat[pn]=['CD & DVD'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Nero7\\Nero-7.2.3.2b_sve_lite.exe /VERYSILENT /TASKS=desktopicon,imagefile_assoc&quot];

rega[pn]=['REGEDIT /S %cdrom%\\install\\Applications\\Nero7\\nerolite.reg'];

pn++;

prog[pn]=['NOD32 2.51.20'];

uid[pn]=['NOD3225019'];

dflt[pn]=['yes'];

cat[pn]=['ANTIVIRUS & SECURITY'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\NOD32\\NOD32_2.51.20.exe'];

pn++;

prog[pn]=['Norton Antivirus 2005 swe'];

uid[pn]=['NORTONANTIVIRUS2005'];

dflt[pn]=['yes'];

cat[pn]=['ANTIVIRUS & SECURITY'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\install\\Applications\\NAV\\nav2005.exe'];

pn++;

prog[pn]=['Norton Partition Magic 8.05'];

uid[pn]=['NORTONPARTITIONMAGIC805'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\partitionmagic805\\setup.exe /S /v/qn'];

pn++;

prog[pn]=['NotePad++ v.3.6'];

uid[pn]=['NOTEPADV30'];

dflt[pn]=['yes'];

cat[pn]=['OFFICE'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\notepad3.0\\npp.3.6.Installer.exe /S /NCRC'];

pn++;

prog[pn]=['O&O Defrag 8.5 Build 1788 Professiona'];

desc[pn]=['Defragmentera dina diskar. Ett super TOOL'];

uid[pn]=['OODEFRAGSERVERV651154'];

dflt[pn]=['yes'];

cat[pn]=['SYSTEM'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\OODefrag\\OODefragPro8.0.198.exe'];

pn++;

prog[pn]=['Office Professional 2003'];

uid[pn]=['OFFICEPROFESSIONALSP12003'];

dflt[pn]=['yes'];

cat[pn]=['OFFICE'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\OFFICE2K3\\OFFICE.EXE'];

pn++;

prog[pn]=['Opera 8.54'];

uid[pn]=['OPERA853SWE'];

dflt[pn]=['yes'];

cat[pn]=['INTERNET'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\opera\\ow32svsv854.exe /SILENT'];

pn++;

prog[pn]=['Peer Guardian 2.0'];

uid[pn]=['PEERGUARDIAN20'];

dflt[pn]=['yes'];

cat[pn]=['P2P'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\PeerGuardian2.0\\pg2-050423-nt.exe /SILENT /NORESTART /DRI=C:\\PROGRAM files\\PEERGUARDIAN];

pn++;

prog[pn]=['Photo Story 3'];

uid[pn]=['PHOTOSTORY3'];

dflt[pn]=['yes'];

cat[pn]=['PHOTO'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\PhotoStory3\\PStory.msi /quiet /passive /norestart'];

pn++;

prog[pn]=['Quicktime alternative 1.69'];

desc[pn]=['Annan Quicktime player'];

uid[pn]=['QUICKTIMEALTERNATIVE142'];

dflt[pn]=['yes'];

cat[pn]=['MULTIMEDIA'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\quicktimealternative\\quicktimealt169.exe'];

pn++;

prog[pn]=['Real alternative 1.48'];

desc[pn]=['En annan Real player'];

uid[pn]=['REALALTERNATIVE132'];

dflt[pn]=['yes'];

cat[pn]=['MULTIMEDIA'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Realalternative\\realalt148.exe'];

pn++;

prog[pn]=['RealPlayer 10.5 Build 6.0.12.1483 Gold'];

uid[pn]=['REALPLAYER105GOLD'];

dflt[pn]=['yes'];

cat[pn]=['MULTIMEDIA'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Realplayer\\RealPlayer10-5GOLD.exe -s'];

pn++;

prog[pn]=['Setup Factory 7'];

uid[pn]=['SETUPFACTORY7'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\SetupFactory7.0.1.0\\setupfactory7.0.1.0.exe /s'];

pn++;

prog[pn]=['Skype 2.0.0.90'];

uid[pn]=['Skype20090'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Skype1.4\\SkypeSetup.exe /VERYSILENT /NORESTART'];

pn++;

prog[pn]=['Spybot 1.4rc'];

uid[pn]=['SPYBOT13'];

dflt[pn]=['yes'];

cat[pn]=['ANTIVIRUS & SECURITY'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Spybot1.3\\spybotsd14rc.exe /silent'];

pn++;

prog[pn]=['Startup / Shutdown'];

desc[pn]=['allows boot files to be placed optimally on the hard-drive for faster boots'];

uid[pn]=['STARTUPSHUTDOWN'];

dflt[pn]=['no'];

cat[pn]=['REGTWEAK'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

regb[pn]=['REGEDIT /S %CDROM%\\install\\Applications\\regtweak\\startup.reg'];

pn++;

prog[pn]=['Sysinternals Rootkit Revealer'];

uid[pn]=['SysinternalsRootkitRevealer'];

dflt[pn]=['yes'];

cat[pn]=['ANTIVIRUS & SECURITY'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\RootkitRevealer\\RootkitRevealer.exe'];

pn++;

prog[pn]=['Total Commander PowerPack v6.54'];

uid[pn]=['TOTALCOMMANDERV652'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\TCPOWERPACK\\TCPOWERPACKv6.54.exe'];

pn++;

prog[pn]=['Trillian Pro v3.1.0.121'];

uid[pn]=['TRILLIANPROV310121'];

dflt[pn]=['yes'];

cat[pn]=['INTERNET'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\Trillian\\TrillPack-v3.1-Final-build2.exe /S /NCRC'];

pn++;

prog[pn]=['Tweak Now Power 2005Pro 1.5.0'];

uid[pn]=['TWEAKNOWPOWER2005PRO150'];

dflt[pn]=['yes'];

cat[pn]=['SYSTEM'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\TweakNowPowerPack2005Professionalv1.5.0\\fo-tnp15.exe /verysilent /sp-'];

pn++;

prog[pn]=['Tweak UI 2.10'];

uid[pn]=['TWEAKUI210'];

dflt[pn]=['yes'];

cat[pn]=['SYSTEM'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\powertoy\\TweakUI.msi /qb'];

pn++;

prog[pn]=['uTorrent 1.5'];

uid[pn]=['UTORRENT'];

dflt[pn]=['yes'];

cat[pn]=['P2P'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%CDROM%\\install\\Applications\\utorrent\\uTorrent1.5.exe'];

pn++;

prog[pn]=['VBRUN 6.0 SP5'];

uid[pn]=['VBRUN60SP5'];

dflt[pn]=['yes'];

cat[pn]=['SYSTEM'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\VBRUN60SP5\\vbrun60sp5.exe /q'];

pn++;

prog[pn]=['VLC mediaplayer'];

uid[pn]=['VLCMEDIAPLAYER'];

dflt[pn]=['yes'];

cat[pn]=['MULTIMEDIA'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\VLCmediaplayer\\VLCmediaplayer.exe /s'];

pn++;

prog[pn]=['VMware 5.5.1-19175'];

desc[pn]=['Virtuell dator'];

uid[pn]=['VMWAREWORKSTATION50013124'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\WMWARE\\VMware-workstation-5.5.1-19175.exe'];

rega[pn]=['REGEDIT /S %cdrom%\\Install\\Applications\\WMWARE\\wmware.reg'];

pn++;

prog[pn]=['Winamp 5.2.3'];

uid[pn]=['WINAMP508DPRO'];

dflt[pn]=['yes'];

cat[pn]=['MULTIMEDIA'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\install\\Applications\\winamp\\winamp523.exe'];

cmd2[pn]=['REGEDIT /S %cdrom%\\Install\\Applications\\winamp\\winamp.reg'];

pn++;

prog[pn]=['WinRAR 3.60 Beta 6'];

uid[pn]=['WINRAR342swe'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['yes'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\WinRAR\\wrar36b6sw.exe /s'];

pn++;

prog[pn]=['WinZip 10'];

uid[pn]=['WINZIP9'];

dflt[pn]=['yes'];

cat[pn]=['TOOL'];

forc[pn]=['no'];

configs[pn]=['default'];

gcond[pn]=['FileExists(\'%programfiles%\')'];

regb[pn]=['REGEDIT /S %cdrom%\\install\\Applications\\winzip\\winzip.reg'];

cmd1[pn]=['%cdrom%\\Install\\Applications\\winzip\\WinZip10pro.exe /s'];

pn++;

//---------------------------------------------------------------------------------------------

// End of program definitions ...

//---------------------------------------------------------------------------------------------

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...