Stuntgp2000 Posted August 11, 2004 Posted August 11, 2004 Hello,I am thinking these days to make a second cd of windows Xpthe first Cd now is about 667Mb (will all updates + 12 Logons + 18 Themes + 6 Windows Media Player skin + 8 Wallpapers)the 2nd one will have many softwares and MANY cause to me some problems because.I don't want to have all softwares installed.Now i am trying to find a solution.till now i have 3 suggestions :1) if you can do some programming try to create a programme that will do this but it must be dynamic not each time recompiling it and in order to do this it may depend of INI file that may guide it.2) Create a Web page that installs the programmes you want but you have to put in mind that Web page need IE and I think you cannot use IE during installation.3) is to create a cmd file that ask you everytime about the softs you needand if find a solution then i will post it as soon as possible.
prathapml Posted August 12, 2004 Posted August 12, 2004 Heya there,Some code from my old batch-files, might help you in your requirement, or give you an idea of what to modify:@echo offTITLE Registering Installed ProgramsCOLOR 85ECHO.:LOOPSET Choice=SET /P Choice="Do you want to register installed programs ? (Y/N)"IF NOT '%Choice%'=='' SET Choice=%Choice:~0,1%ECHO.IF /I '%Choice%'=='Y' GOTO AutoIF /I '%Choice%'=='N' GOTO PlainECHO Please type Y (for Yes) or N (for No) to proceed!ECHO.GOTO Loop:PlainECHO Installed Programs were not registered >> %systemroot%\Temp\instTime.logECHO Finished.GOTO END:AutoECHO Open Opera browser and register it now.....start /wait %systemroot%\custom\opera7.exeECHO Open UltraISO and register it now.....start /wait %systemroot%\custom\UltraISO.exeECHO Finished.GOTO END:ENDECHO.EXITMaybe setup a chain of .cmd files. Run a main.cmd which then calls the rest one by one.... You get the drift. Upto you to utilise if it seems good.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now