Jump to content

RAZ Dad

Member
  • Posts

    39
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

Everything posted by RAZ Dad

  1. Hi Every body I am trying to customize my Windows xp Pro boot screen I follow instruction from this site http://www.thetechguide.com/howto/xpbootlogo/ I am stuck in one place, I open ntoskrnl.exe with resources hacker and opened Bitmap folder but there is not no 10 existing in this folder. there are fro m 1 to 8,then 13 to 15 but there is not 9 and 10. I run XP Pro, service pack 2 thanks for your help Raz
  2. Hi every body I am woundering if there is a way to add hardware drivers in DVD to prevent instalation asking for drivers. for example I have Serial ATA Hard Drive each time I want to install windows I have to press F6 then insret floppy contains of my hard drive driver. is there a way to add these kind of drivers in DVD to do it automatic in instalation. thanks for your great help.
  3. Hellow every body I already have some topics about my problems with UBCD I have build Multi DVD all I am stuck is with adding UBCD version 3.3 it is a new version all instructions written here http://flyakite.msfnhosting.com/ are for older version of UBCD, the folders and files and boot sectores are different I can not find the files and folder with names mentioned in instruction. if any body has added UBCD ver 3.3 in Multi DVD can you please write me step by step instruction how I can add it in my DVD. thanks for your help
  4. Thank you very much for your help I will work on it, I will see what will happen.
  5. Thank you very much for your help I will work on it, I will see what will happen.
  6. There is not any specifically folder with CDSH name thers only boot folder located in D:\AIO-DVD\Setup\UBCD\boot
  7. Hi every body I am trying to finish the Multi DVD Building but I am stuck with Ultimate Cd version 3.3. in Multi DVD Giude it ask to download and open UBCD.dat with Hex workshop and change the /CDSH with /UBCD. but when open the file I do not see /CDSH to change with /UBCD. any help would be appreciated. Thanks in advance
  8. Yes I understand now, I did not test mine yet when I give you the instruction, mine got the same problem it igror the answer file. I will serach other ways if it was successfull then I will post you some information.
  9. Thank you very much for your help I managed to creat the DVD but with some probel with Ultimate CD which has confuesd me. if you see my other topic I would be happy to get your help. thanks
  10. Hi the file main.scn is located in D:\AIO-DVD\SETUP\UBCD\boot\menus in my computer. still as you see what the DVD guide is talking do not exist. I trying to integrate UBCD version 3.3 from here http://www.ultimatebootcd.com/download.html contains of file # # Timeout after 5 mins # set timer = 5 # # Main Menu # main_menu: set textColor = color[white on black] clear set textColor = color[yellow on blue] print " ULTIMATE BOOT CD VER 3.3 " print " [url="http://www.ultimatebootcd.com/"]http://www.ultimatebootcd.com/[/url] " print " " set textColor = color[white on red] print " [Main Menu] " set textColor = color[white on cyan] print " " print " " print " " print " " print " [F1] Mainboard Tools " print " [F2] Hard Disk Tools " print " [F3] Filesystem Tools " print " [F4] Other Tools " print " [F5] User-defined Tools " print " [F6] DOS/Linux Boot Disks " if file[\INSERT\INSERT]; else set textColor = color[brightgrey on cyan] print " [F7] INSERT for UBCD " set textColor = color[white on cyan] print " " print " [F8] Boot first hard disk " print " [F9] Boot second hard disk " print " [F10] Drop to console " print " " print " " print " " print " " set textColor = color[white on blue] print " Please select an item (First hard disk will boot after $(timer) minutes) " set textColor = color[white on black] # # Actions # getkey 60 goto timeout clear if ($lastKey == key[f1]); then script mboard.scn if ($lastKey == key[f2]); then script hdd.scn if ($lastKey == key[f3]); then script filesys.scn if ($lastKey == key[f4]); then script others.scn if ($lastKey == key[f5]); then script custom.scn if ($lastKey == key[f6]); then script bootdsk.scn if file[\INSERT\INSERT] then if ($lastKey == key[f7]); then script insert.scn if ($lastKey == key[f8]); then script boothdd0.scn if ($lastKey == key[f9]); then script boothdd1.scn if ($lastKey == key[f10]); then goto console goto main_menu # # Decrement timer and refresh display, or boot from HDD0 if timeout # timeout: if $timer == 0; then script timeout.scn set timer = $timer - 1 goto main_menu # # Drop to console # console: cd / clear help end
  11. Hi sir yester day I went trough all the process you have done. If you noticed when you creat answer file for 2000 pro by wizard it will not ask you for CDkey but it ask you for all other setting to be answerd. you show open the winnt.sif in note pad and add the CD key line manualy like I did replace the stars with your CD key and save it: [userData] ProductID=*****-*****-*****-*****-***** FullName="Any thing" ComputerName=Any thing
  12. THANKS FOR YOUR REPLY I HAVE COMPLETED ALL THE PART OF THE DVD ONLY I AM STUCK WITH ULTIMATE CD: QUESTIONS 1.THE GIUDE TELL ME TO I DOWNLOADED THE UBCD.DAT AND OPENED IN HEX WORKSHOP BUT I FOUND SOME NAMES CDSH AND I REPLACED THEM WITH UBCD BUT THERE IS NO ENTRY LIKE SHOWN IN PICTURE IN GUIDE.2 QUESTION: I extracted the file called cdshell.ini from the UBCD.iso boot folder and opened with notepad but there is no entry like shown below to be changed. only I see in cdshell.ini this entry only: cd menus script main.scn --------------------------------------------------------------------------------
  13. Hi every body I am creating a multi boot DVD I have been going on very well but at the point how to add the ultimate Cd I am stuck with some confusion to integrate I have to use the cdshell.ini from folder D:\AIO-DVD\SETUP\UBCD\boot but when I open cdshell.ini file I only see : cd menus script main.scn that is all there is no any text as following to change. Integrating Into the Boot Menu 1. Once again we start with the ubcdxxx.iso. Copy just the Images folder into the root of the DVD like in step 4. above. Next, extract the file called cdshell.ini form the UBCD.iso boot folder. Save this file somewhere outside the DVD project. 2. Open cdshell.ini with Notepad and the following lines: # # Boot from floppy drive A: # fddboot: if bootCheck[0]; then boot 0 clear set textColor = color[brightred on black] print "\n" print "\acDrive is not bootable\n" wait 0 # # Boot from first hard disk # hddboot80: if bootCheck[0x80]; then boot 0x80 clear set textColor = color[brightred on black] print "\n" print "\acDrive is not bootable\n" wait 0 # # Boot from second hard disk # hddboot81: if bootCheck[0x81]; then boot 0x81 clear set textColor = color[brightred on black] print "\n" print "\acDrive is not bootable\n" wait 0 Then, rename the first section from main_menu: to ubcd: # # Main Menu # main_menu: set textColor = color[white on black] clear set textColor = color[yellow on red] ---> # # UBCD Main Menu # ubcd: set textColor = color[white on black] clear set textColor = color[yellow on red] 4. Last, change every sections layout to match your own. See the following example which is -in essence- the same menu just with a different layout: # # Main Menu # main_menu: set textColor = color[white on black] clear set textColor = color[yellow on red] print " " print " ULTIMATE BOOT CD VER 2.21 " print " [Main Menu] " print " " set textColor = color[white on green] print " " print " " print " " print " " print " [F1] Hard Disk Utilities " print " [F2] Filesystem Utilities " print " [F3] Memory Utilities " print " [F4] System Utilities " print " [F5] DOS Boot Disks " print " [F6] Linux Boot Disks " print " [F7] Others " print " " print " [F10] Boot floppy drive A: " print " [F11] Boot first hard disk " print " [F12] Boot second hard disk " print " " print " " print " " print " " set textColor = color[white on blue] print " Please select an item (First hard disk will boot after 5 minutes) " set textColor = color[white on black] # # Main Menu - Actions # getkey 500 goto hddboot80 if ($lastKey == key[f1]); then goto hdd_menu if ($lastKey == key[f2]); then goto filesys_menu | | | \/ UBCD: cls #printing interface print c "\n\c02ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ<\cXX$time $date\c02>ÄÄ \n" print c "\cXXAJvK.nl Multi-OS Boot DVD \n" print c "\cXXUBCD Tools menu\n\n" print l "\c02Druk op \cXXH \c02voor hulp"; print r "\cXXArjan@AJvanKesteren.nl \n" print c "\c02ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ \n\n" print "\c07 F1 - Hard Disk Utilities \n" print "\c07 F2 - Filesystem Utilities \n" print "\c07 F3 - Memory Utilities \n" print "\c07 F4 - System Utilities \n" print "\c07 F5 - DOS Boot Disks \n" print "\c07 F6 - Linux Boot Disks \n" print "\c07 F7 - Others \n" SET TEXTCURSORX = 0; SET TEXTCURSORY = 23 print c "\cXXM: Main menu \n" UBCD_key: getkey 60 goto menu if $lastKey == key[f1]; then goto hdd_menu if $lastKey == key[f2]; then goto filesys_menu --------------------------------------------------------------------------------
  14. Hi every one I am new in this forum I am following the instruction http://flyakite.msfnhosting.com/ to creat a multi boot DVD, evry thing is going very well upto now but I have two questions: 1. at the end of each windows to finish up we have to copy some file to AIO-DVD to see these 2 windows both of them hase some file with same name to be copied in AIO-DVD root folder. when I copy message ask me that same file name is already existing do you want to replace it. I want to know if I replace the files with same name or rename one of them to keep them. Question 2. if I do not have all the windows can I creat the DVD with windows I have now? thanks for you great help in advance Raz
×
×
  • Create New...