Jump to content

FuzzBall

Member
  • Posts

    35
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by FuzzBall

  1. I would not use those power supplies that come with those cheap cases.

    I've seen several go up in smoke(lit.), and even fry several other componets on the motherboard.

    Since your using a PIII system though, you should be allright. If you ever upgrade to a P4 or an AMD XP... consider buying a new power supply.

  2. Your still not extracting the BOOTSECTOR...

    The bootsector is NOT a file in the cd fielsystem, rather info stored at the beginning of the CD, that allows it to be booted from.

    Try UltraISO and open up the ISO, it should say "Bootable" or something similiar, that means you can save the bootsector. So, from here click "bootable -> save bootfile" give it a name!

    From there, open the bootsector you saved in a hex editor, then make the changes to it as ncessary.

    Here's a screenshot of an ISO i opened up that contains a bootsector.

    post-82-1097556801_thumb.jpg

  3. Well, i noticed in the new version of CdShell it says you cvan use "diskemu" to load two images at once...

    So, here's my delema:

    1) Turn on PC, CdShell loads Image #1

    --This disk is a bootable DOS disk that executes "Tweak.exe /load" (need it to set an IRQ for a device)

    2) CdShell loads Image #2

    ---This image contains a bootloader capable of either going to the MBR, or loading linux (I do not have windows on the system this is being run on)

    So, to make it short i am trying to... Load up DOS run TWEAK, then load up linux WITHOUT doing a reboot after running tweak.

    So, my huge ordeal here is, I CANT REBOOT!

    please. any help or sugestions would be greatly apreciated.

  4. the fan is as said earlier an arctic cooling copper, it can cool 3200+

    the ram can't handle it? i don't know. but it couldn't finish a pi calculation.

    the cooling is sufficient, right?

    in addition i have another 80mm chassis fan sucking out the air right where the cpu is located.

    ... when you o/c, it doesnt mean that it will give out as much heat as that same model would.

    In other words:

    2500 oc'ed to 3200 = Hotter than 3200

    You need a better cooling solution

    And, you misunderstood. YOUR RAM IS JUST FINE, IT'S STOCK SPEEDS ARE SEFFECIENT FOR THE 200MHZ FSB

  5. Your RAM cant handle it?

    Your ram is suppose to support a 200Mhz FSB, running it at 3200 speeds should be easy as pie.

    I have the same processor as you, easily overclocked it to 3200 speeds(11x200), and i still have low temps(no higher then 43c)

    CPU would have to be able to handle at least those speeds. You may need a better cooling solution, and that is wht it crashing. To O/C you need a good heatsink

  6. I've made an autoit script for Everest Pro, not sure if it will work with everest home.

    As long as the Title contains the string "Setup - EVEREST", it should work fine. But this may not be the case if the install screens are different in home then they are pro. As in menu order, etc... Heres the autoit code, and i've upped the exe

    Oh yeah, your gonna have to rename your setup exe to "everestpro110.exe" so the script can run it, sorry :-/

    I can change it if you really need it

    ; ----------------------------------------------------------------------------
    ;
    ; AutoIt Version: 3.0
    ; Language:       English
    ; Platform:       WinXP
    ; Author:         AleXz
    ;
    ; Script Function:
    ; Everest Pro Install
    ;
    ; ----------------------------------------------------------------------------

    ; ----------------------------------------------------------------------------
    ; Set up our defaults
    ; ----------------------------------------------------------------------------

    AutoItSetOption("TrayIconDebug", 1)
    AutoItSetOption("WinTitleMatchMode", 2)

    ; ----------------------------------------------------------------------------
    ; Script Start
    ; ----------------------------------------------------------------------------
    Run("everestpro110.exe")

    WinWaitActive("Setup", "This will install EVEREST Professional. Do you wish to continue?")
    Send("Y")

    WinWaitActive("Setup - EVEREST")
    Send("{TAB}" & "N")

    WinWaitActive("Setup - EVEREST", "License")
    Send("{TAB}" & "A" & "N")

    WinWaitActive("Setup - EVEREST", "SelectDir")
    Send("C:\Program Files\EVEREST" & "{TAB}" & "{TAB}" & "{TAB}")
    Send("N")

    WinWaitActive("Setup - EVEREST", "SelectProgramGroup")
    Send("_Utilities\EVEREST Pro" & "{TAB}" & "{TAB}")
    Send("N")

    WinWaitActive("Setup - EVEREST", "SelectTasks")
    Send("{SPACE}" & "N")

    WinWaitActive("Setup - EVEREST", "Ready")
    Send("I")

    WinWaitActive("Setup - EVEREST", "Launch EVEREST Professional")
    Send("{SPACE}" & "F")

    Everest.exe

  7. it's a bat file i find in the REG Tweak thread that someone posted.can anyone help to convert it to an auattended mode? for i know little about that..

    i just want to move the Paging File to D:\ and resize it  to 1536M.

    This should do it

    ::Made by SibTiger  May 22, 2004
    ::-------------
    @echo off
    cls
    echo.
    echo * CHANGE PAGEFILE SIZE AND/OR LOCATION. *
    :setdrive
    SET dr=D
    Echo.
    rem SET /P dr=Select drive letter for pagefile.
    IF NOT '%dr%'=='' SET dr=%dr:~0,1%
    echo This is a temporary file. Please delete. >%dr%:\~tmp.txt
    if not exist %dr%:\~tmp.txt (
        echo.
        echo Drive %dr% doesn't exist! Enter a different drive letter.
        goto setdrive
    )
    del %dr%:\~tmp.txt
    :setsize
    echo ========================
    echo.
    echo    Set pagefile size...
    SET Choice=6
    Echo.
    echo     1 -  256MB pagefile
    echo     2 -  384MB pagefile
    echo     3 -  512MB pagefile
    echo     4 -  768MB pagefile
    echo     5 - 1024MB pagefile
    echo     6 - 1536MB pagefile
    rem SET /P Choice=       (1,2,3,4,5,6)
    IF '%Choice%'=='1' (
    set csize=256
    goto editreg
    )
    IF '%Choice%'=='2' (
    set csize=384
    goto editreg
    )
    IF '%Choice%'=='3' (
    set csize=512
    goto editreg
    )
    IF '%Choice%'=='4' (
    set csize=768
    goto editreg
    )
    IF '%Choice%'=='5' (
    set csize=1024
    goto editreg
    )
    IF '%Choice%'=='6' (
    set csize=1536
    goto editreg
    )
    echo.
    echo           !!!You must press 1,2,3,4,5 or 6. Try again.
    goto setsize
    :editreg
    echo.
    echo.
    echo PAGEFILE WILL BE SET TO:  %dr%:\pagefile.sys   SIZE: %csize%MB
    echo Press any key to continue, or CTRL-C to abort
    rem pause >NUL
    :: ---- REGISTRY CHANGES FOR PAGEFILE SIZE AND LOCATION ----
    echo Windows Registry Editor Version 5.00> cacheset.reg
    echo.>> cacheset.reg
    echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Memory Management]>> cacheset.reg
    echo "PagingFiles"="%dr%:\\pagefile.sys %csize% %csize%">> cacheset.reg
    echo.>> cacheset.reg
    echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]>> cacheset.reg
    echo "PagingFiles"="%dr%:\\pagefile.sys %csize% %csize%">> cacheset.reg
    echo.>> cacheset.reg
    :: ------ ADDS _CLEAN.CMD TO RUNONCE --------
    echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce]>> cacheset.reg
    echo "CLEANUP"="c:\\_clean.cmd">> cacheset.reg
    echo.>> cacheset.reg
    REGEDIT /S cacheset.reg
    :: --- CREATE _CLEAN.CMD ---
    ::DELETES OLD PAGEFILE AFTER REBOOT
    if exist c:\_clean.cmd del c:\_clean.cmd
    echo @echo off> c:\_clean.cmd
    echo rem Created automatically by cacheset.cmd on %date% at %time%.>> c:\_clean.cmd
    echo echo Old pagefile being deleted. Please wait...>> c:\_clean.cmd
    if /I not '%dr%'=='C' (
        echo if exist c:\pagefile.sys attrib -s -h c:\pagefile.sys>> c:\_clean.cmd
        echo if exist c:\pagefile.sys del /f /q c:\pagefile.sys>> c:\_clean.cmd
    )
    if /I not '%dr%'=='d' (
        echo if exist d:\pagefile.sys attrib -s -h d:\pagefile.sys>> c:\_clean.cmd
        echo if exist d:\pagefile.sys del /f /q d:\pagefile.sys>> c:\_clean.cmd
    )
    if /I not '%dr%'=='e' (
        echo if exist e:\pagefile.sys attrib -s -h e:\pagefile.sys>> c:\_clean.cmd
        echo if exist e:\pagefile.sys del /f /q e:\pagefile.sys>> c:\_clean.cmd
    )
    if /I not '%dr%'=='f' (
        echo if exist f:\pagefile.sys attrib -s -h f:\pagefile.sys>> c:\_clean.cmd
        echo if exist f:\pagefile.sys del /f /q f:\pagefile.sys>> c:\_clean.cmd
    )
    if /I not '%dr%'=='g' (
        echo if exist g:\pagefile.sys attrib -s -h g:\pagefile.sys>> c:\_clean.cmd
        echo if exist g:\pagefile.sys del /f /q g:\pagefile.sys>> c:\_clean.cmd
    )
    if /I not '%dr%'=='h' (
        echo if exist h:\pagefile.sys attrib -s -h h:\pagefile.sys>> c:\_clean.cmd
        echo if exist h:\pagefile.sys del /f /q h:\pagefile.sys>> c:\_clean.cmd
    )
    echo del c:\_clean.cmd>> c:\_clean.cmd
    :: -------------------------
    echo.
    echo **** MUST REBOOT FOR SETTINGS TO TAKE EFFECT. ****
    shutdown.exe -r -f -t 15 -c "Windows XP will now restart in 15 seconds..."
    echo.
    echo Automatic restart in 15 seconds. Press any key to abort.
    :: Remove the 2 lines below if you want the BAT to exit automatically, then windows restarts
    pause >NUL
    shutdown -a
    goto end
    :end

×
×
  • Create New...