Jump to content

Randy Rhoads

Member
  • Posts

    133
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by Randy Rhoads

  1. Well i did some changes although im not sure if it would help as i dont have a setup to try a slave drive without cracking open the tower and adding one. Added a hexed FINDCD.EXE you add in the images and a file for each 9X's you place in the root of the CD/CD's (renamed WIN51 files). I also added how the autoexec.bat looks now as well.

    Someone with a slave drive and old empty hardrive to play with will have to check it out or just boot from a master drive only, which i feel is the easiest method.

    DVD Burner is the only drive someone should own because it can function as a:

    *CDROM

    *CDRW

    *DVD Player

    *DVD Burner

    All in one drive, set it as master, throw slave in garbage. Problem solved...lol

  2. and the only DVD drive was the slave?

    There should never be a need for slave optical drive IMO. I see no reason why it wont work, because if it didnt work in a slave drive, then that means booting a default 98 cd wouldnt have worked in that situation ither as all i changed from the original code, in that area, is to boot as Z instead of D. So, if thats the case then its M$'s fault..lol

  3. If say you have 2 CDROMs. IF you use the SECOND CDROM, the autoexec will break, as the FIRST one detected becomes Z: and the second shouldn't even get a letter.

    I'll have to check that, but who boots a Windows disk with a slave drive? If you have a CDRW theres no need for a cdrom added as it is just sapping the PSU. If you have a DVD burner, theres no reason to have a seperate CDRW or CDROM installed ither. So, technically, you just one master optical drive.

  4.   if you have more then one CDROM, you might run into problems.

    Details?

    The cdrom will always boot as drive Z, C will always be the 1st active partition, and you cant format D untill you create an extended D partition to format which will boot the cdrom as E, by default, after the reboot, but the edited autoexec should boot it as drive Z anyway.

  5. Ive attached my finished boot image files for these OS's and quoted the 98 example. The 95 is the same just edited to say 95 instead.

    The attachment has all the files needed to inject into your current images sepeated by folders.

    Both include a JO.SYS file which gives you the option to boot from hardrive or CDROM with hardrive being default with a 10 second timer. This is best if you use these for seperate Windows cd's.

    So, if you use these for a multiboot CD or DVD, you will need to edit in your paths to the windows folder inside the Autoexec.bat and it would be better to not use the JO.SYS file so the multi-boot menu jumps straight to the Autoexec.bat.

    The Autoexec.bat included is edited assuming the WIN95 and WIN98 folders are in the root of the cd.

    @ECHO OFF

    set EXPAND=YES

    SET DIRCMD=/O:N

    set LglDrv=27 * 26 Z 25 Y 24 X 23 W 22 V 21 U 20 T 19 S 18 R 17 Q 16 P 15

    set LglDrv=%LglDrv% O 14 N 13 M 12 L 11 K 10 J 9 I 8 H 7 G 6 F 5 E 4 D 3 C

    cls

    call setramd.bat %LglDrv%

    path=%RAMD%:\;a:\;%CDROM%:\

    copy command.com %RAMD%:\ > NUL

    copy choice.com %RAMD%:\ > NUL

    set comspec=%RAMD%:\command.com

    copy extract.exe %RAMD%:\ > NUL

    copy readme.txt %RAMD%:\ > NUL

    copy rebooter.exe %RAMD%:\ > NUL

    %RAMD%:\extract /y /e /l %RAMD%: ebd.cab > NUL

    echo.

    LH %ramd%:\MSCDEX.EXE /D:mscd001 /L:M

    echo.

    smartdrv.exe /q

    set CDROM=FOO23

    FINDCD.EXE

    if "%CDROM%"=="FOO23" goto NOCDROM

    path=a:\;%CDROM%\

    :ERROR

    IF EXIST ebd.cab GOTO MAIN

    echo Please insert Windows 98 Startup Disk 2

    echo.

    pause

    GOTO ERROR

    :MAIN

    CLS

    echo Windows 98SE Setup Main Menu

    echo =============================

    echo.

    ECHO Press 1. Run The FDISK Utility To Create Or Delete Partitions

    ECHO Press 2. Go To The Format Menu With Full Or Quick Options

    ECHO Press 3. Copy The 98 CD Files To Drive C And Begin Setup

    ECHO Press 4. Start The 98 SE Setup Straight From The CDROM

    echo.

    ECHO Press 5. Exit To DOS Prompt

    ECHO Press 6. Reboot The Computer

    echo.

    CHOICE /C:123456 /N /T:5,60 Press the Number Key To Choose a Menu Option.

    IF ERRORLEVEL == 6 GOTO REBOOT

    IF ERRORLEVEL == 5 GOTO QUIT

    IF ERRORLEVEL == 4 GOTO CDROM

    IF ERRORLEVEL == 3 GOTO DRIVEC

    IF ERRORLEVEL == 2 GOTO FORMAT

    IF ERRORLEVEL == 1 GOTO FDISK

    :FDISK

    CLS

    FDISK.EXE

    GOTO REBOOT

    :DRIVEC

    CLS

    MD C:\CABS

    path=a:\;%CDROM%\

    %CDROM%

    CD \WIN98

    XCOPY *.* C:\CABS\*.* /s

    CLS

    echo Setup Is Ready To Start 98SE Install.

    echo ===================================

    echo.

    echo Once Setup Begins You Can Remove The CD.

    echo.

    echo.

    Pause

    C:\CABS\SETUP.EXE /nf /ie /is

    GOTO QUIT

    :CDROM

    CLS

    path=a:\;%CDROM%\

    %CDROM%

    CD \WIN98

    echo.

    SETUP.EXE /nf /ie /is

    GOTO QUIT

    :FORMAT

    CLS

    echo Format Options Menu

    echo ====================

    echo.

    ECHO Quick options are only for partitions that have been

    ECHO previously full formated.

    echo.

    ECHO Drive D options are only for extended partitions

    ECHO that was created using FDISK.

    echo.

    ECHO Press 1. Full Format Of Drive C

    ECHO Press 2. Quick Format Of Drive C

    echo.

    ECHO Press 3. Full Format Of Drive D

    ECHO Press 4. Quick Format Of Drive D

    echo.

    ECHO Press 5. Go Back To Main Menu

    ECHO Press 6. Exit To DOS Prompt

    ECHO Press 7. Reboot the Computer

    echo.

    echo.

    CHOICE /C:1234567 /N /T:6,60 Press the Number Key To Choose a Menu Option.

    IF ERRORLEVEL == 7 GOTO REBOOT

    IF ERRORLEVEL == 6 GOTO QUIT

    IF ERRORLEVEL == 5 GOTO MAIN

    IF ERRORLEVEL == 4 GOTO QUICKD

    IF ERRORLEVEL == 3 GOTO FULLD

    IF ERRORLEVEL == 2 GOTO QUICKC

    IF ERRORLEVEL == 1 GOTO FULLC

    :FULLC

    CLS

    ECHO Press Y or N followed by the Enter key to begin.

    ECHO -------------------------------------------------------------

    echo.

    path=a:\;%CDROM%\

    %CDROM%

    CD \WIN98

    FORMAT C: /s /v:WIN_98

    GOTO MAIN

    :QUICKC

    CLS

    ECHO Press Y or N followed by the Enter key to begin.

    ECHO -------------------------------------------------------------

    echo.

    path=a:\;%CDROM%\

    %CDROM%

    CD \WIN98

    FORMAT C: /q /s /v:WIN_98

    GOTO MAIN

    :FULLD

    CLS

    ECHO Press Y or N followed by the Enter key to begin.

    ECHO -------------------------------------------------------------

    echo.

    path=a:\;%CDROM%\

    %CDROM%

    CD \WIN98

    FORMAT D: /s /v:DRV_D

    GOTO MAIN

    :QUICKD

    CLS

    ECHO Press Y or N followed by the Enter key to begin.

    ECHO -------------------------------------------------------------

    echo.

    path=a:\;%CDROM%\

    %CDROM%

    CD \WIN98

    FORMAT D: /q /s /v:DRV_D

    GOTO MAIN

    :NOCDROM

    echo.

    echo Dude, the Windows 98 cd wasnt detected.

    pause

    echo.

    :REBOOT

    CLS

    ECHO Rebooting Computer.....

    REBOOTER.EXE

    :QUIT

    CLS

    echo To get help, type HELP and press ENTER.

    rem clean up environment variables

    set CDROM=

    set LglDrv=

    95_98_Custom_Boot_Files.zip

  6. You need to use the F8 key to boot the PC, like you would to nomally chose Safe Mode but choose to boot into DOS mode and try the command there. Be sure there is a space between SCANREG and /RESTORE

    If that doesnt help you could install Windows Me over top of itself which will fix missing or corrupted files but does nothing to any virues that may be there.

    If they have stuff they want to save i would do the reinstall overtop, without formating of course, save the data then format it clean and start a fresh install.

    Be sure to go to Windows update and grab the system restore update or disable that garbage as it usually never works and just eats up resources and space. Plus it will backup virues and lock them causing antivirus software to complain that the files cant be deleted.

  7. Thanks for the info and help. Just about have the 9X's done now.

    XCOPY.exe is located in the WIN98_47.CAB file if anyone needs to extract it without needing a 98 install to copy it from Windows.

    CHOICE is a external command as well. To bad, as i would love to create Yes and No choices throught the install process like:

    Yes or No to Format

    Yes = would Format

    No = goto Drive

    Drive section would run another Yes and No to copy setup files to drive C, picking no would default to command prompt:

    Z:/Setup/95os2/Win95/

    With a prompt to type in Setup.exe to run setup from CD. Throw in a Fdisk choice for good measure.

  8. COPY Z:\SETUP\95OS2\WIN95\*.* C:\CABS

    This works, thanks a bunch. Now its time to edit the 98 image to do the same. I also edited the original thread with the changed settings incase anyone wants to use this.

    *Edit, added a automatic volume label switch for format.exe and forgot to edit out those 98 setup switchs which only work on 98 and ME, but did add a 95 setup switch which will bypass scandisk before starting setup.

    Here is a list of setup switchs

  9. Im creating a multi Windows DVD and i am using CDshell to load a 98.IMA image file that i renamed to 95.IMA to use with 95B OS2 setup. I edited the AUTOEXEC.BAT to allow auto formating and i have that part working.

    I set my cdrom drive letter to load as Z and a DIR command in DOS shows it is booting in that drive letter.

    The last part is giving me some issues however. I want a line added to AUTOEXEC.BAT to allow me to copy win95 setup files from the cd to C:\CABS. The line i added to create the cabs directory on drive C works, but the line added after that to copy the files isnt. It keeps saying invalid path, although i can manually CD my way there and have checked spelling errors which they are none.

    Below is my edited AUTOEXEC.BAT, highlighted in bold are the lines i have added thats not working. I assume the setup.exe line should work once those files gets copied?

    ** Problem found and fixed, edited AUTOEXEC.BAT below with correct switchs. **

    Thanks.

    @ECHO OFF

    set EXPAND=YES

    SET DIRCMD=/O:N

    set LglDrv=27 * 26 Z 25 Y 24 X 23 W 22 V 21 U 20 T 19 S 18 R 17 Q 16 P 15

    set LglDrv=%LglDrv% O 14 N 13 M 12 L 11 K 10 J 9 I 8 H 7 G 6 F 5 E 4 D 3 C

    cls

    call setramd.bat %LglDrv%

    set temp=c:\

    set tmp=c:\

    path=%RAMD%:\;a:\;%CDROM%:\

    copy command.com %RAMD%:\ > NUL

    set comspec=%RAMD%:\command.com

    copy extract.exe %RAMD%:\ > NUL

    copy readme.txt %RAMD%:\ > NUL

    :ERROR

    IF EXIST ebd.cab GOTO EXT

    echo Please insert Windows 95 Startup Disk 2

    echo.

    pause

    GOTO ERROR

    :EXT

    %RAMD%:\extract /y /e /l %RAMD%: ebd.cab > NUL

    echo The diagnostic tools were successfully loaded to drive %RAMD%.

    echo.

    LH %ramd%:\MSCDEX.EXE /D:mscd001 /L:Z

    echo.

    cls

    echo Windows 95B OS2 Setup

    echo ====================

    echo.

    echo Do You  Want To Quick Format Drive C ?

    format c: /q /s /v:WIN_95

    echo.

    CLS

    echo Copy 95B Setup Files To Drive C ?

    echo.

    pause

    MD C:\CABS

    COPY Z:\SETUP\95OS2\WIN95\*.* C:\CABS

    echo.

    CLS

    echo Setup Is Ready To Start 95B Install

    echo.

    Pause

    C:\CABS\SETUP.EXE /is

    echo.

    GOTO QUIT

    :QUIT

    echo To get help, type HELP and press ENTER.

    echo.

    rem clean up environment variables

    set CDROM=

    set LglDrv=

  10. Great guide! Just wondering why you have chosen iepress over say winrar? Winrar can do this also and gives a little better compression - infact it is close to a 1mb smaller and whilst this is not a great deal, over a number of applications it can really make a difference to your unattended install footprint.

    I was going to, but some people may not have it installed and its just a extra thing to do if you didnt.

  11. Think nothing of it man, i can never explain things without coming off as p***ed..lol. I just meant that the way i posted this was so any newbie, me included, could get this on there cd ASAP ready to go without much hassle and that if anyone else can include a better or cleaner way to install or add the reg tweaks during setup then post those steps for everyone else with detailed instuctions and not just that it could be done better a certain way while not explaining how or going into details on the methods if they have done it.

    Theres a bunch of apps here i would love to try on my cd, but most all require knowlege of some advanced editing of HTML or XML stuff and i feel these apps should have been made with automated GUI step by step guides like the nLite app to make the custom files, aid in adding custom options, and applying these to the Windows source etc. Not only would it simply the process for newbies, it would avoid many user errors in the editing of those files the hard way and cut down on "This app dont work for me" threads. They usually dont work because they were written as if everyone using them has the same knowledge of the person making the software.. ex: Linux.

  12. (copying the .pwl file over during install did not work)

    Only way i know is to delete the .pwl files after 1st boot and to set the settings as i suggested. During the msbatch creation process it will let you choose Windows Logon as the default. If one could add something to delete the pwl file before 1st boot then you would only have to press the OK button the 1st time on 1st boot. At least it should work that way.

  13. Heres how to create a silent install and some registry tweaks to apply afterwards which will adjust the options, etc.

    Once WMP 10 is downloaded rename to: MP10Setup.exe and copy it to the root of drive C.

    Extract to a folder by Start>Run: MP10Setup.exe/c /t:C:\MP10

    Go back to Start>Run and type in: IEXPRESS.EXE to start the silent file creation.

    1) Once that loads up push Next ...

    2) Extract Files and Run Installion Command is already checked, press Next ...

    3) Package Title name: WMP10silent.exe then press Next...

    4) No prompt is already checked, press Next ...

    5) Dont display license is already cheked, press Next ...

    6) Add files section, browse to the extracted MP10 folder in the root of drive C and add all the files inside and press Next ...

    7) Install Program area; copy-paste: setup_wm.exe /DisallowSystemRestore /Q:A /R:N

    7a) Leave "post install command" set at <none> and press Next ...

    8) Show Window setting; Set this to Hidden and press Next ...

    9) Finished Message setting; Leave this set at No Message and press Next ...

    10) Package Name and Options; Choose name to save as: WMP10silent.exe and browse to select where to save the file. Check to Hide extraction process from user then press Next ...

    11) Configure Restart: Choose No restart and press Next ...

    12) Choose Dont Save and press Next ...

    13) Press Next to create the silent file.

    ==============================

    Adding file and reg tweaks to unattened cd:

    1) Create a folder named WMP10 inside the $OEM$\$1\install folder and copy the created silent install inside.

    2) While inside the WMP10 folder, create a Tweaks.reg file and copy the contents below:

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Preferences]"StretchToFit"=dword:00000001

    "AutoMetadataCurrentDownloadCount"=dword:00000000

    "AutoMetadataCurrent500ServerErrorCount"=dword:00000000

    "AutoMetadataCurrent503ServerErrorCount"=dword:00000000

    "AutoMetadataCurrentOtherServerErrorCount"=dword:00000000

    "AutoMetadataCurrentNetworkErrorCount"=dword:00000000

    "SendUserGUID"=hex:00

    "UpgradeCodecPrompt"=hex:00

    "PlayerScriptCommandsEnabled"=dword:00000001

    "SilentAcquisition"=dword:00000000

    "MetadataRetrieval"=dword:00000000

    "AutoAddMusicToLibrary"=dword:00000000

    "UsageTracking"=dword:00000000

    "DisableMRU"=dword:00000001

    "LaunchIndex"=dword:0000001d

    "AppColorLimited"=dword:00000000

    "LastRadioPresetFetchDay"=dword:00000002

    "StartInMediaGuide"=dword:00000000

    "AlwaysOnTop"=dword:00000000

    "EnableScreensaver"=dword:00000000

    "DoNotShowAnchor"=dword:00000001

    "AutoAddRemovable"=dword:00000000

    "PromptLicenseBackup"=dword:00000000

    "ForceOnline"=dword:00000000

    "CDRecordFileSeparator"=" "

    "CDRecordMP3"=dword:00000001

    "CDRecordMode"=dword:00000001

    "WMARecordRate"=dword:0001f400

    "WMARecordQuality"=dword:00000000

    "MP3RecordRate"=dword:0003e800

    "CDRecordDRM"=dword:00000000

    "AutoCopyCD"=dword:00000000

    "AutoEjectCD"=dword:00000000

    "UseDefaultBufferTime"=dword:00000001

    "CustomBufferTime"=dword:00001388

    "MaxBandwidth"=dword:00000000

    "SearchMinAudio"=dword:00000064

    "SearchMinVideo"=dword:000001f4

    "SaveDRMMusic"=dword:00000000

    "ShowAppTitlebar"=dword:00000001

    "FirstRun"=dword:00000000

    "X"="151"

    "Y"="75"

    "Width"="600"

    "Height"="509"

    "Maximized"="0"

    "Volume"=dword:00000064

    "ModeShuffle"=dword:00000000

    "ModeLoop"=dword:00000000

    "Mute"=dword:00000000

    "Balance"=dword:00000000

    "CurrentEffectType"="Battery"

    "CurrentEffectPreset"=dword:00000000

    "VideoZoom"=dword:00000064

    "ShrinkToFit"=dword:00000000

    "ShowEffects"=dword:00000000

    "ShowFullScreenPlaylist"=dword:00000000

    "NowPlayingQuickHide"=dword:00000000

    "ShowTitles"=dword:00000001

    "ShowCaptions"=dword:00000000

    "NowPlayingPlaylist"=dword:00000001

    "NowPlayingMetadata"=dword:00000001

    "NowPlayingSettings"=dword:00000001

    "VizAutoSelect"=dword:00000000

    "CurrentDisplayView"="VizView"

    "CurrentSettingsView"="EQView"

    "CurrentMetadataView"="MediaInfoView"

    "CurrentDisplayPreset"=dword:00000000

    "CurrentSettingsPreset"=dword:00000000

    "CurrentMetadataPreset"=dword:00000000

    "UserDisplayView"="VizView"

    "UserWMPDisplayView"="VizView"

    "UserWMPSettingsView"="EQView"

    "UserWMPMetadataView"="MediaInfoView"

    "UserDisplayPreset"=dword:00000000

    "UserWMPDisplayPreset"=dword:00000000

    "UserWMPSettingsPreset"=dword:00000000

    "UserWMPMetadataPreset"=dword:00000000

    "UserWMPShowSettings"=dword:00000000

    "UserWMPShowMetadata"=dword:00000000

    "ShowAlbumArt"=dword:00000000

    "RandomFolderName"="00547A67"

    "LastPlaylistQuery"=""

    "LastPlaylistIndex"=dword:00000000

    "CDAutoPlay"=dword:00000001

    "ShowMinimizeDialog"=dword:00000000

    "AcceptedPrivacyStatement"=dword:00000001

    "Migrated59R"=dword:00000001

    "Migrated130"=dword:00000001

    "Migrating"=dword:00000000

    "SyncPlaylistsAdded"=dword:00000001

    "LastLibraryBasket"=dword:00000000

    "LibraryPaneVisible"=dword:00000001

    "LibraryHasBeenRun"=dword:00000001

    "LastContainerMode"=dword:00000001

    "TranscodedFilesCacheSize"=dword:00000f9f

    "TranscodedFilesCacheDefaultSizeSet"=dword:00000001

    "LibraryLastHScroll"=dword:00000000

    "CDCopySplitterPos"=dword:00000079

    "NextLaunchIndex"=dword:0000001e

    "FirstMediaGuideRun"=dword:00000000

    "SilentDRMConfiguration"=dword:00000000

    "AlwaysOnTopVTen"=dword:00000000

    "AcceptedPrivacyStatement"=dword:00000001

    Now add a line in one of your CMD files to install and run the reg tweak files:

    ECHO Installing Windows Media Player 10

    ECHO Please wait...

    start /wait %systemdrive%\install\WMP10\WMP10silent.exe

    ECHO.

    ECHO Tweaking Media Player 10 ...

    ECHO Please wait...

    REGEDIT /S %systemdrive%\install\WMP10\Tweaks.reg

    ECHO.

    All done.

  14. Well teh thread wasnt wasted as i learned that my OEM 98 cd needed extra tweaks in the msbatch file so i wouldnt have to press Next when the cd key came up. The instructions gave later in the thread to fix that works great. People who had 98 and didnt know the differnce or knew one could make a msbatch file learned alot more.

    Wasted thread? only if you didnt learn anything, but its better than 300 posts requesting the info and only getting something like; "Noone uses 98 anymore, you should format that right away and upgrade everything now before the feds break in and take your out of date box that wont even play Doom 1 (insert any new popular 13 year old game that requires 512 ram and 128MB card).

  15. Now, does anyone know how to skip the password prompt after Windows has installed? You know, the one that says to enter a password but if you leave the password field blank it won't ask again? It is kind of annoying to have that right in the middle of an unattended install...

    Do a file search for: *.pwl and delete any that shows up. Go to the Control Panel and doublclick Network and set "Primary Windows Logon" to Windows Logon. Reboot the PC and it will show up once more. Leave all passwords blank and push "OK" and it shouldnt show up again.

  16. However, there's a guide on this forum to turning Win2003 into a workstation. Can I still do that via your method?

    Yeah this will have all that stuff done during setup. The only exception is the sound acceleration tweak wont work if 2003 cant install audio drivers during setup so that will need to be done manually after updating drivers if that is the case. This will be the case with Soundblaster 5.1 and the emulated audio in Virtual PC 2004. There is a way to add your drivers and have setup look for and use these updated drivers, but its extra work.

    Everything else i can think of is taken care of. The registry tweaks are optional i just enabled and disabled some start menu items to appear more like a XP Pro would and added some IE tweaks i use if wanted.

×
×
  • Create New...