Jump to content

mrclasik

Member
  • Posts

    37
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by mrclasik

  1. Any body been able to find a switch for STopZilla.. I have yet to get this thing silent. Any help would be appreciated.. It looks to me to be Installshield with MSI files.. inside.. Can't figure it out..
  2. I hear what you are saying, but There would have to be more to it than that. I don't know how to script that to happen.. I could put a place for a check mark all over the place, but it wouldn't do anything. There would have to be some instruction with those check marks..
  3. @ ZoSTeR Sounds good, I look to hear how that goes.. Let me know
  4. The only drawback that I have found with this one is that you can't tell the cd to install let's say, Norton, ZoneAlarm, and Stopzilla all in one bang.. It would be nice to be able to do this.. Just don't know how.. It's either all, or you click and install each one.. Any Ideas...
  5. Well the idea is that you put the cd in and it auto plays, you can set it up anyway you want to. It doesn't need to be called from cmdlines txt.. it will work on any computer. If a friend of mine had computer and he wants the apps that are on the disk, all he has to do is click on install all. It could alternatively be set up to run RunOnceEx upon inserting the CD... it's unattended because you can use switches for silent install... It's not unattended per say if you don't want to remove and insert a CD after Windows is installed... But it is going to work for.. Check the Screen shot...
  6. I am working on A method for 2 CD unattended. I am using a program called AutoRun Pro. Of course it let's you create a AutoRun CD, but you can apply swithces. So you can click on a install button and still have that particular program silently install. Using this method I am able to select certain Software on the disc or Choose to let it all install in RunOnceEx. Plus it looks very nice. It's not perfected yet, but I am real close. If I knew how to put a screen shot on here I would.. the code is simple enough. It's just your normal RunOnceEx from CD code. All that's needed on the Autorun CD is a Button that's linked to Your RunOnceEx.cmd file.. evrything else is elementary. cmdow @ /HID @echo off IF EXIST D:\CD.txt set CDROM=D: IF EXIST E:\CD.txt set CDROM=E: IF EXIST F:\CD.txt set CDROM=F: IF EXIST G:\CD.txt set CDROM=G: IF EXIST H:\CD.txt set CDROM=H: IF EXIST I:\CD.txt set CDROM=I: IF EXIST J:\CD.txt set CDROM=J: IF EXIST K:\CD.txt set CDROM=K: IF EXIST L:\CD.txt set CDROM=L: IF EXIST M:\CD.txt set CDROM=M: SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing your Applications, Thanks!" /f REG ADD %KEY%\001 /VE /D "Copying CMDOW To System..." /f REG ADD %KEY%\001 /V 1 /D "%CDROM%\cmdow.cmd" /f REG ADD %KEY%\003 /VE /D "Preparing Installation..." /f REG ADD %KEY%\003 /V 1 /D "%CDROM%\prepare.cmd" /f REG ADD %KEY%\005 /VE /D "Zone Alarm Pro" /f REG ADD %KEY%\005 /V 1 /D "%CDROM%\Install\ZoneAlarm4.5\zapSetup_45_538_001.exe /s /noreboot" /f REG ADD %KEY%\010 /VE /D "Norton SystemWorks 2004" /f REG ADD %KEY%\010 /V 1 /D "%CDROM%\Install\NSW2004\NSWSETUP.EXE /qn /Reboot=REBOOT=ReallySuppress" /f REG ADD %KEY%\015 /VE /D "WINZIP 9.0" /f REG ADD %KEY%\015 /V 1 /D "%CDROM%\Install\WinZip\WINZIP32.EXE /cleaninstall" /f REG ADD %KEY%\015 /V 2 /D "REGEDIT /S %systemdrive%\Reg\WinZip\winzip.reg REG ADD %KEY%\020 /VE /D "Winrar 3.0.3" /f REG ADD %KEY%\020 /V 1 /D "%CDROM%\Install\Winrar\wrar330.exe" /f REG ADD %KEY%\025 /VE /D "WinAmp 5.02" /f REG ADD %KEY%\025 /V 1 /D "%CDROM%\Install\Winamp\winamp502_pro.exe /S /install=DSRFQA" /f REG ADD %KEY%\025 /V 2 /D "taskkill.exe /F /IM winamp.exe" /f REG ADD %KEY%\025 /V 3 /D "REGEDIT /S %systemdrive%\Reg\winamp\winamp.reg REG ADD %KEY%\030 /VE /D "TweakXP 3.0" /f REG ADD %KEY%\030 /V 1 /D "%CDROM%\Install\Tweak XP\txp3setup.exe /qn" /f REG ADD %KEY%\035 /VE /D "StopZilla" /f REG ADD %KEY%\035 /V 1 /D "%CDROM%\Install\StopZilla\STOPzilla_Setup.exe" /f REG ADD %KEY%\040 /VE /D "Nero Burning Rom Ver.6" /f REG ADD %KEY%\040 /V 1 /D "%CDROM%/SILENT /NOREBOOT /SN=removed /WRITE_SN" /f REG ADD %KEY%\045 /VE /D "Style XP" /f REG ADD %KEY%\045 /V 1 /D "%CDROM%\Install\StyleXPv2.01\StyleXPv2.01Male.exe /S" /f REG ADD %KEY%\045 /V 2 /D "taskkill.exe /F /IM StyleXP.exe" /f REG ADD %KEY%\050 /VE /D "mIRC 6.14" /f REG ADD %KEY%\050 /V 1 /D "%CDROM%\Install\Mirc\mirc614.exe /s" /f REG ADD %KEY%\055 /VE /D "Kazaa" /f REG ADD %KEY%\055 /V 1 /D "%CDROM%\Install\Kazzaa\klitekpp243e.exe /silent" /f REG ADD %KEY%\060 /VE /D "DietK for Kazaa" /f REG ADD %KEY%\060 /V 1 /D "%CDROM%\Install\Kazzaa\dk26inst.exe /VERYSILENT /SP-" /f REG ADD %KEY%\060 /V 2 /D "taskkill.exe /F /IM Dietk.exe" /f REG ADD %KEY%\065 /VE /D "Cleaning Up and Rebooting" /f REG ADD %KEY%\065 /V 1 /D "%CDROM%\cleanup.cmd" /f EXIT I am still working on the code, as you see it has errors. If you see any switches that are wrong please let me know. I am getting it though. If I could get some help with it, that would be great.. I need to change it so that it will copy cmdow to system32 before running the rest of the code and I would like for it to shutdown on it's own when the Install all button is pushed.. If anyone could tell me how to put a screen shot on here I will show you all what it looks like.. I think it will be great when I finish...
×
×
  • Create New...