Jump to content

mailramk

Member
  • Posts

    15
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    India

Everything posted by mailramk

  1. hi this is my autorun menu. download the file from this location http://www.megaupload.com/?d=ST9JL6MK. There is also a cdshell boot menu which i would be attaching sooner
  2. 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.
  3. Hi, This is my autorun menu for the multiboot dvd. You can check this out by downloading at the following URL. http://www.megaupload.com/?d=ST9JL6MK Any problems downloading PM me. I will upload again.
  4. Hi, I am having some 100 pages of data in word document. I want these pages into webpage. I want these on the webpage page by page ie., First page one will be displayed, when user clicks next page two will be displayed, and so on.. Is there any script or software for doing so... please help me
  5. I did the setup installer with ams6.0 and the boot menu with cdshell. You can download the zip file from the following link (approx. 4.0MB) and check it. http://www.megaupload.com/?d=ST9JL6MK Extract the contents into a folder and run the autorun.exe.
  6. 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
  7. 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
  8. 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!
  9. check this out http://www.msfn.org/board/index.php?showtopic=89650
  10. I couldn't understand the question what would u like to do. you would like to browse the dvd or what.
  11. 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
  12. Hi I got the DVD working fine. I forgot to place the winnt.sif file into the boot folders.
  13. 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...