Jump to content

batman2k

Member
  • Posts

    3
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

About batman2k

batman2k's Achievements

0

Reputation

  1. Is it possible to make a mutliboot dvd with for example windows xp / windows media center and have one shared $oem$ folder? otherwise i have to put the same files in each folder and thats just a waste of space. the reason i ask this is because i want to make een multiboot dvd with unattended installations Greetings, Ronald (sorry if this is the wrong forum)
  2. Thanks for the link, it looks very nice. Gonna give it a try tomorrow (if its not to hard)
  3. Hi all, I found a batchfile that lets a user choice if he/she wants to install software. it uses set /p and is a replacement for the old choice command. (so its 2k/xp compatible) it might be usefull for people who dont know to much (like myself) about scripting. im posting this cause i couldnt find it yet on this forum, but if im wrong feel free to correct me.. @ECHO off cls :start ECHO. set choice= set /p choice=Do you want to install office? if not '%choice%'=='' set choice=%choice:~0,1% if '%choice%'=='y' goto officeyes if '%choice%'=='n' goto officeno ECHO "%choice%" is not a valid option ECHO. goto start :officeyes start /wait %systemdrive%\install\OFFICE\setup.exe TRANSFORMS=PRO11.MST /qb- goto hitman :officenee goto hitman :hitman set choice= set /p choice=Do you want to install Hitman ? if not '%choice%'=='' set choice=%choice:~0,1% if '%choice%'=='y' goto hitmanyes if '%choice%'=='n' goto hitmanno ECHO "%choice%" is not a valid option ECHO. goto hitman :hitmanyes start /wait %systemdrive%\install\HITMANPRO\hitmanpro2nl.exe /verysilent goto end :hitmanno goto end :end
×
×
  • Create New...