Jump to content

dnrc

Member
  • Posts

    16
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

About dnrc

dnrc's Achievements

0

Reputation

  1. this works in 7: http://www.randyrants.com/2008/12/sharpkeys_30.html
  2. have you tried running your command file in a working install of windows to see if it works correctly at all under vista? Otherwise, this is something you would need to do in your autounattend file.
  3. thankyou. i realise that i have several options to install apps. however i want to do it a particular way. What i am after is a working command which will find all the the .cmd files in a certain directory and run each one seperately. I will also then do the same with all the .reg files in a certain directory and again with all my self created .msi files. This way i dont have to keep editing the autounattend.xml, i can just drop new files into my install directories and re-create my iso. Can anyone help? I tried a few commands after digging out my xp install.cmd but they all failed.
  4. Hi guys, hopefully a quick one. under my xp unattended installs i used to use a modular approach to installing apps and registry tweaks. I would have a seperate batch file for each application in the installs folder which would allow me to quickly add or remove single applications. This would be launched using something along these lines: for %%? in (%AppsRoot%\Install\*.cmd) DO (Start /wait ???????) which would just run each .cmd file in the specified directory. I don't currently have access to my old unattended stuff and searching hasn't given me a definate answer so i would be grateful if someone would be able to tell me the correct command to use this in vista from autounattend.xml Cheers Dan
  5. as in my previous post mate, i have all the batch files that work perfectly, except when run from this interface previous post here:
  6. ok, so can the create ISO lines be used to add other folders and files to the iso. My DVD uses an install source in ROOT\setup\xp2a but in addition to that i need to add ROOT\Install to the iso as that is where my applications install from. I also need to add the bootfix.bin file to the ISO. My CMD files don't run from within this autorun interface and that is now the only thing i need to finish my dvd (for now anyway)
  7. hi guys, i really like this little app, i spent a while streamlining and changing it to suit my needs and it has pretty much finished my dvd. But, when i run my cmd files which create standalone os iso's it gives me a funny error. this is an example of the command file: rem ECHO OFF rem IF NOT EXIST %SystemDrive%\ntldr GOTO 9XCOPY rem:NTCOPY XCOPY .\XP2A %SystemDrive%\ISO /E /I /H /Y /K > NUL COPY .\BOOTFIX.BIN %SystemDrive%\ISO\I386 XCOPY ..\Install %SystemDrive%\ISO\Install /E /I /H /Y /K > NUL cdimage.exe -lXPAUTO -t08/04/2004,07:00:00 -b.\xp.DAT -h -o -m -n %SystemDrive%\ISO %SystemDrive%\XPAUTO.ISO PAUSE ECHO. ECHO Cleaning up files from %SystemDrive% RD /S /Q %SystemDrive%\ISO GOTO EXIT rem :9XCOPY rem ECHO. rem ECHO This process cannot be performed under Win9x rem ECHO Please use a WinNT-based machine. PAUSE :EXIT this works perfectly when run normally, but when run from within the autorun menu using this line: stm_aix("p4i0","p1i0",[0,"Microsoft® Windows® XP SP2 Automatic","","",-1,-1,0,"RUN:SETUP/XP2AISO.CMD"],365,0); it gives me this error: any help would be appreciated. Cheers
  8. I can't believe nobody's helped you out here yet mate. It's not often you see such a well written question with all the needed information in it from the go. Added to that none of what you want to do is terribly complex. Get a video editing program and chop the bits off each episode you don't want. Then get a dvd authoring program like pegasys dvd author: http://www.pegasys-inc.com/en/index.html whack them all in there and set up links between the episodes. the program should do the encoding for you and output a set of writeable files. The most difficult thing you will need to do is create the menu's. I will help you more if needed but i'm going to assume you've found out how to do this elsewhere since it's been a month since you posted this.
  9. yep that's exactly what i found. the help says you can but it doesn't work so i split it over two lines.
  10. you can either run stuff from the cd: use this to find the cd drive: 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\XP2A.DAT set CDROM=%%i and run with something like this: %CDROM%\install\applications\app.exe or just delete it at the end of your install with this: RD /S /Q "%systemdrive%\Drivers"
  11. whoa mate go easy on the guy, he could have made a typo. what are you, the police? anyway, alkmie are you sure it's a prob with cd2 because the file in the error pic you posted is off cd1. check your txtsetup.sif file and make sure this line points to the right place SetupSourcePath = "\SETUP\MCES\" (this is just where mine goes) as for the cd2 stuff, you just need to copy the contents of the cmpnents folder on cd2 to cd1 and it will all install.
  12. [LicenseFilePrintData] AutoMode = PerServer AutoUsers = 50
  13. no problem, also use this for naming afterwards. i just have both copied to the desktop and run them after full install. @echo off :NW_CHOOSE ECHO. SET /P NW_CONF=[Do you want to change the computer name Y/N:] IF /I "%NW_CONF%" == "Y" GOTO NW_INPUT IF /I "%NW_CONF%" == "N" GOTO END :NW_INPUT SET /P NAME=[NAME:] ECHO. ECHO You specified: ECHO NAME: %NAME% :NW_CONFIRM ECHO. SET /P NW_CONF=[is this correct? Y/N:] IF /I "%NW_CONF%" == "Y" GOTO NW_SET_NAME IF /I "%NW_CONF%" == "N" GOTO NW_INPUT GOTO NW_CONFIRM :NW_SET_NAME compname.exe /c %NAME% GOTO END :END you will also need the attached file: compname.exe (put in system32 under $oem$ ) compname.rar
  14. i have a unattended multiboot dvd, and wish to have it install on both xp and 2003. for the most part this is fine, except for perfectdisk which has 2 versions for server and workstation. so, what i need is a batch that will detect the o/s and install from one location if it's 2k3 and a different one if XP. Can anyone help with this? cheers
×
×
  • Create New...