Jump to content

mailramk

Member
  • Posts

    15
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    India

Posts posted by mailramk

  1. Hi There,

    I am Creating an AIO Disc, and i am starting off by trying the standard, enterprise and web editions of Microsoft Windows Server 2003 Service Pack 1.

    Now, Let me give you my directory structure before i ask my question

    DVD

    |-ENT1

    |-STD1

    |-WEB1

    |-SETUP

    |-2k3ent

    |-2k3std

    |-2k3web

    For the questions i am going to use Enterprise

    In the ENT1 folder i have all the BOOT files, such as SETUPLDR.BIN, txtsetup.sif and so on

    in 2k3ent i basically have every file off the Enterprise CD

    My Boot Menu works and everything but when Windows Setup starts, it asks if i want to press F6 or F2 to install SATA/RAID Drivers or run ASR respectively, after that it asks me to insert the Windows Server 2003, Enterprise Edition CD-ROM into Drive A:

    My question is this, how can i fix this problem?

    I have added my SETUPLDR.BIN, txtsetup.sif and other relevant files to this post

    Files:-

    http://www.mart3ndo.co.uk/files/msfn/SETUPLDR.BIN - 2K3 Enterprise SETUPLDR.BIN (the ENT1 folder)

    http://www.mart3ndo.co.uk/files/msfn/txtsetup.sif - 2K3 Enterprise txtsetup.sif (the ENT1 folder)

    Thanks,

    Martyn

    www.mart3ndo.co.uk

    Sig.jpg

    Hi

    There is a mistake in the txtsetup.sif file. Your file has a line showing this

    SetupSourcePath = "\ENT1\".

    But the file must contain this

    SetupSourcePath = "\SETUP\2K3ENT\"

    It must show to the directory containing the setup.exe file. It worked for me.

  2. DEAR FORUM MEMBERS,

    I frequently have virus problems on my and my friends computer. I want to make bootable, scannable CD of Norton antivirus-2004. How can I do this?

    Can I update virus defination on that bootable CD, by making new CD so I can scan my computer without installing software with new defination set ?

    Please guide me.

    Thanks.

    I don't know about norton bootable cd, but there is a avast! BART CD which is a bootable antivirus cd with which we can scan, edit the registry and son on...

    try googling for it

  3. Hi All,

    Just a quickie.

    Does anyone know where I can find a custom setup.exe for the windows installations on my multi-boot dvd as I am having to create one mself rather crudely. There is one that uses the images from within the current windows xp/2003 exe but I am unable to find it, could someone please help.

    Thanks

    What is the software u r using for building an exe.

    I used Autoplay Media Studio 6.0 if u want i can send the screenshots and the required files

  4. First, you should copy your Office 2003 setup files from your CD to your hard drive.

    Find a file called Setup.ini (which is found in the \FILES\SETUP subfolder). Right click the file, select Properties, and remove the Read-only checkmark. Now open the file to edit it.

    Your setup.ini file should read something like this:

    [Options]

    ; The option section is used for specifying individual Installer Properties.

    ;USERNAME=Customer

    ;COMPANYNAME=my company

    ;INSTALLLOCATION=C:\Program Files\MyApp

    In the USERNAME section enter the registered owner's name, do so also for the COMPANYNAME value. Make sure you uncomment it by removing the ";" from the beginning of the lines.

    Now, add a following line to the [Options] section:

    (25 characters from your CD key, without the "-" seperation)

    It should now read something like this:

    [Options] ; The option section is used for specifying individual Installer Properties. USERNAME=Daniel Petri

    COMPANYNAME=Daniel Petri Ltd.

    ;INSTALLLOCATION=C:\Program Files\MyApp

    PIDKEY=ABCDEFGHIJKLMNOPQRSTUVWXY

    Save the file, burn the whole folder that contains the installation files to a CD.

    That’s it! Now you can now install Office 2003 without needing to supply a CD key during the setup process!

  5. Hi I was experimenting with unattended multiboot dvd with following operating systems.

    All these are completely unattended.

    Windows 2000 (Prof,Server,AdvServ) with SP4 integrated

    Windows XP with SP2 integrated

    Windows 2003 (STD,ENT) with SP2 integrated

    Hirens Boot CD 8.6

    I had tried to password protect the boot menu which is scripted in CDShell.

    I found a way in the following code which asks for a password before showing the boot options from dvd. If the password which is MD5 hashed is matched then only the menu is shown.

    The code is as follows:(If any mistakes please reply me)

    if $vga; then if $vesa; then set ModeGraphique = 1; else set ModeGraphique = 0

    # Reads the password from the user

    readpasswd:

    set passwd = ""

    cls

    print "\n\n\n\n\n\n\n\n\n\n\n\n"

    set textColor= color[brightgreen on black]

    print c "Enter the Password:"

    goto buildpasswd

    #builds the password

    buildpasswd:

    getkey

    set textColor= color[brightred on black]

    print "*"

    if $lastKey == key[enter]; then goto checkpasswd

    set passwd = "$(passwd)$lastChar"

    goto buildpasswd

    #checks whether the password is correct or not

    checkpasswd:

    set MD5 = "$passwd"

    set password_hash = "f9d6a878e4c43a9cf80a43b9ec389827"

    if icompare["$password_hash" "$MD5"]

    then goto menu

    else

    set textColor= color[red on black]

    set boldColor= color[brightred on black]

    cls

    print "\n\n\n\n\n\n\n\n\n\n"

    print c "\n\nInvalid password! "

    print c "\n\n Press any key to restart............"

    set textColor= color[white on black]

    getkey

    reboot;

    # Function for setting the title

    Entete:

    set textColor= color[yellow on blue]

    set boldColor= color[yellow on blue]

    cls

    print c "\n\n\n\n $TitreMenu \n\n"

    set textColor= color[brown on blue]

    print c "Created by Rama Krishna Reddy Chintalapani\n"

    print c "\cxx aiodvd@gmail.com"

    print r "\c0B\n"

    print c "\cXXÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ\n\n"

    return

    # Function for displaying the menu

    menu:

    #if $ModeGraphique; then show image menu.csi menu.bmp; then goto MainKey

    set textColor=color[blue on black]

    set TitreMenu = "Main Menu - Multiboot DVD"

    call Entete

    set textColor=color[brightmagenta on blue]

    print c "Install Windows\n\n"

    set textColor=color[white on blue]

    set boldColor= color[white on blue]

    print c "\cXX 1) 2000 Professional with SP4 \n"

    print c "\cXX 2) 2000 Server with SP4 \n"

    print c "\cXX 3) 2000 Advanced Server with SP4 \n"

    print c "\cXX 4) XP Professionel with SP2 \n"

    print c "\cXX 5) 2003 Server Enterprise Edition SP1\n"

    print c "\cXX 6) 2003 Server Standard Edition SP1 \n"

    print c "\cXX 7) Hiren's Boot CD for Emergency \n"

    print "\n"

    set textColor=color[red on blue]

    set boldColor= color[brightred on blue]

    print c "\cXX R) Reboot \n"

    set textColor=color[green on blue]

    set boldColor= color[brightgreen on blue]

    print c "\n\n\nEnter your choice... \n"

    #Function which calls the boot sector on the option chosen

    MainKey:

    getkey

    if $lastKey == key[1]; then chain /2PRO.DAT

    if $lastKey == key[2]; then chain /2SRV.DAT

    if $lastKey == key[3]; then chain /2ADV.DAT

    if $lastKey == key[4]; then chain /PRO1.DAT

    if $lastKey == key[5]; then chain /3ENT.DAT

    if $lastKey == key[6]; then chain /3STD.DAT

    if $lastKey == key[7]; then memdisk /HIREN.IMA

    if $lastKey == key[r]; then reboot

    if $lastKey == key[R]; then reboot

    goto menu

    Fin:

    end

  6. Hi i am new to this forum

    hi i am new to this forum

    I created 2000,xp unattended cds with service packs intergrated.

    The cds worked perfectly.

    Then I created a Multiboot dvd with the source from the above unattended cds.

    the installation is working fine.

    but it is not an unattended one it is asking for all the user input like serial,regional settings,computer name,user name and so on....

    can any body please help me

×
×
  • Create New...