Jump to content

ml20

Member
  • Posts

    87
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by ml20

  1. it may be one of the hotfixes you have listed there that executes MSNM at the end of the install. are any of the hotfixes for MSNM?

    and if you have MSNM installing or upgrading somewhere in that period of time, like a 13 min mark, make sure you have the right parameters. which you probably do. :)

    but actually, i don't know if in your case it actually hinders the install of other programs, because if it doesn't, you could just leave it up. even though i agree it would be annoying.

  2. well, any application can be run from there.

    but there is no file that you can add a line that will execute a command line or program right when the GUI part starts.

    the t-13 cmdlines.txt is a file called CMDLINES.TXT that you put in your OEM folder and when the GUI setup reaches the 13 minute mark, it will execute any batch file that you have entered in CMDLINEX.TXT.

    Example of cmdlines.txt.

    [COMMANDS]
    "REGEDIT /S regtweaks.reg"
    "RunOnceEx.cmd"
    "makeuser.cmd"

    for me, i have the CMDLINES.TXT execute the list of programs that i want to install upon first boot, and i have it add many registry tweaks, and create five user accounts. :)

  3. these threads may help if you only have one cd drive.

    http://www.msfn.org/board/index.php?showtopic=8381

    http://www.msfn.org/board/index.php?showtopic=25110

    if you have two, just add some IF EXIST D:\CD1.TXT SET=CD1, IF EXIST E:\CD2.TXT SET=CD2, stuff in your batch to get it to find the cd in drive two. :)

    this is what i use to get 2 cds active. it looks like:

    IF EXIST D:\D1.txt SET CDROM=D:
    IF EXIST E:\D1.txt SET CDROM=E:
    IF EXIST F:\D1.txt SET CDROM=F:
    IF EXIST G:\D1.txt SET CDROM=G:
    IF EXIST H:\D1.txt SET CDROM=H:
    IF EXIST I:\D1.txt SET CDROM=I:
    IF EXIST D:\D2.txt SET CDROM2=D:
    IF EXIST E:\D2.txt SET CDROM2=E:
    IF EXIST F:\D2.txt SET CDROM2=F:
    IF EXIST G:\D2.txt SET CDROM2=G:
    IF EXIST H:\D2.txt SET CDROM2=H:
    IF EXIST I:\D2.txt SET CDROM2=I:

×
×
  • Create New...