Jump to content

jacksont123

Member
  • Posts

    65
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Canada

Posts posted by jacksont123

  1. so how exactly do you bypass the validation?

    EDIT:

    This Windows Genuine Advantage stuff is already starting to aggrivate me, especially since I don't have a live connection available on some of my testing boxes. Here's how to unofficially bypass this check...

    # Extract IE7-WindowsXP-x86-enu.exe with WinRAR (or anything that works) to a temporary directory.

    # Open update\iecustom.dll in a hex editor.

    # Navigate to hexadecimal offset 0x1034h(4148 decimal) and change 0F 95 to 0F 94.

    # Save and execute update.exe.

    # Enjoy.

    Don't ask me where to get Internet Explorer 7 and don't blame if all your hard drive data disappears.

    Original: http://www.extended64.com/blogs/rafael/arc...07/28/1051.aspx

  2. yay!

    it works!!!!!!!!!!!

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    thank you

    ^_^;

  3. your supposed to extract the installer as I said

    in cmd run it like this:

    GoogleEarthPro.exe /extract_all:C:

    it will extract in C:\ you will find a folder called disk1 and find data2.cab

    how did you repack it as a msi?

    could you send it to me once you have data2.cab?

  4. I tryed to extract it then installing it silently, by using the -s switch but it didnt work. :/

    When I try it it initializes setup.exe then within a matter of seconds, it closes it. :/

    /extract_all:<path> : Package's files should not be run but simply extracted (InstallScript and InstallScript MSI projects only)

    Specifies that a self-extracting package's files should not be run but simply extracted to the location that is specified by <path>.

    I hope someone figures it out.

    Link Removed ~ Alanoll

  5. ok ill try that. thanks!

    but shouldn't the cmd load even though mplayer.exe is not in the folder?

    and shouldnt it already work because mplayer2.exe is already in the system folder.

    ive read some other posts and it said that detachedprogram wouldnt be able to open cmd files

    but it would be able to open exe files

    i ttryed converting the cmd file to exe by using quick batch file compiler and it still didnt work!

    Help Me! :P

    does "DetachedProgram" really disallow cmd files?

    also could more people help me?

  6. for some reason, a batch file i created for my music selection does not execute at t-39

    this is my batch script:

    cls
    @echo off
    TITLE Windows XP SP2 - Unattended Installation
    mode con cols=76 lines=23 & color f0

    :MENU
    ECHO Over the next few minutes, the following will be implemented:
    ECHO.
    ECHO Automated installations of various Sofware Applications
    ECHO Windows Updates
    ECHO Registry Tweaks
    ECHO.
    ECHO The computer will restart automatically once the whole process has finished!
    ECHO ____________________________________________________________________________
    ECHO Feel free to entertain yourself by using any of the options below:
    echo.
    ECHO M - Music
    ECHO ____________________________________________________________________________
    ECHO Other Options:
    ECHO.
    ECHO C - Color Options
    ECHO * - Close Window
    ECHO ____________________________________________________________________________

    echo.
    SET Choice=
    SET /P Choice=Type the Letter/Number/Symbol and Press Enter:
    IF NOT '%Choice%'=='' SET Choice=%Choice:~0,4%
    IF /I '%Choice%'==' ' GOTO  
    IF /I '%Choice%'=='M' GOTO M
    IF /I '%Choice%'=='*' GOTO *
    IF /I '%Choice%'=='cmd' GOTO cmd
    IF /I '%Choice%'=='C' GOTO C

    :
    ECHO Entering Nothing is NOT Valid
    GOTO MENU

    :M
    cls
    @Echo off
    mode con cols=50 lines=38 & color f0
    :MUSIC
    Title Music Selection
    echo Music Selection:
    echo.
    echo !  - Play All
    echo X  - Close open Media Player
    echo MC - Color Options
    ECHO M  - Return to Menu
    echo *  - Close Music Selection Window
    echo.
    echo 1.   P.O.D - Intro
    echo 2.   Paul Oakenfold - Aeternal
    echo 3.   LFO - Freak
    echo 4.   Omega Men - Sweet World
    echo 5.   Moby - Sunday
    echo 6.   Moby - Flower
    echo 7.   Linkin Park - Session
    echo 8.   Linkin Park - Cure For The Itch
    echo 9.   Daft Punk - Da Funk
    echo 10.  Daft Punk - Around The World
    echo 11.  TR/TR2.OST - The Well
    echo 12.  NFS3 - Romulus III
    echo 13.  NFS4 - Quantum Singularity
    echo 14.  NFS4 - Paradigm Shifter
    echo 15.  Squeak E. Clean - Hello Tomorrow
    echo 16.  AFI - This Time Imperfect
    echo 17.  Green Day - Holiday
    echo 18.  Collective Soul - Where The River Flows
    echo 19.  Blink 182 - Adam's Song
    echo 20.  White Stripes - Seven Nation Army
    echo 21.  Radiohead - Electioneering
    echo 22.  P.O.D - Youth Of The Nation
    echo 23.  Our Lady Peace - Is Anybody Home
    echo 24.  Nickelback - How You Remind Me
    echo 25.  Nickelback - Someday
    echo 26.  Newsboys - Million Pieces
    echo 27.  Newsboys - He Reigns
    echo 28.  Newsboys - Joy
    echo.
    SET Choice=
    SET /P Choice=Type the Letter/Number/Symbol and Press Enter:
    IF NOT '%Choice%'=='' SET Choice=%Choice:~0,4%
    IF /I '%Choice%'==' ' GOTO  
    IF /I '%Choice%'=='!' GOTO !
    IF /I '%Choice%'=='X' GOTO X
    IF /I '%Choice%'=='MC' GOTO MC
    IF /I '%Choice%'=='M' GOTO M
    IF /I '%Choice%'=='*' GOTO *
    IF /I '%Choice%'=='1' GOTO 1
    IF /I '%Choice%'=='2' GOTO 2
    IF /I '%Choice%'=='3' GOTO 3
    IF /I '%Choice%'=='4' GOTO 4
    IF /I '%Choice%'=='5' GOTO 5
    IF /I '%Choice%'=='6' GOTO 6
    IF /I '%Choice%'=='7' GOTO 7
    IF /I '%Choice%'=='8' GOTO 8
    IF /I '%Choice%'=='9' GOTO 9
    IF /I '%Choice%'=='10' GOTO 10
    IF /I '%Choice%'=='11' GOTO 11
    IF /I '%Choice%'=='12' GOTO 12
    IF /I '%Choice%'=='13' GOTO 13
    IF /I '%Choice%'=='14' GOTO 14
    IF /I '%Choice%'=='15' GOTO 15
    IF /I '%Choice%'=='16' GOTO 16
    IF /I '%Choice%'=='17' GOTO 17
    IF /I '%Choice%'=='18' GOTO 18
    IF /I '%Choice%'=='19' GOTO 19
    IF /I '%Choice%'=='20' GOTO 20
    IF /I '%Choice%'=='21' GOTO 21
    IF /I '%Choice%'=='22' GOTO 22
    IF /I '%Choice%'=='23' GOTO 23
    IF /I '%Choice%'=='24' GOTO 24
    IF /I '%Choice%'=='25' GOTO 25
    IF /I '%Choice%'=='26' GOTO 26
    IF /I '%Choice%'=='27' GOTO 27
    IF /I '%Choice%'=='28' GOTO 28

    :
    ECHO Entering Nothing is NOT Valid
    GOTO MUSIC

    :!
    start mplayer2.exe Playlist.m3u
    GOTO MUSIC

    :X
    TASKKILL /F /IM MPLAYER2.EXE
    GOTO MUSIC

    :M
    mode con cols=76 lines=23
    TITLE Windows XP SP2 - Unattended Installation
    GOTO MENU

    :*
    Exit

    :1
    start mplayer2.exe podintro7it.mp3
    GOTO MUSIC

    :2
    start mplayer2.exe POAeternal.mp3
    GOTO MUSIC

    :3
    start mplayer2.exe LFOF.mp3
    GOTO MUSIC

    :4
    start mplayer2.exe SweetWorld.mp3
    GOTO MUSIC

    :5
    start mplayer2.exe MSUN.mp3
    GOTO MUSIC

    :6
    start mplayer2.exe Flower.mp3
    GOTO MUSIC

    :7
    start mplayer2.exe LPS.mp3
    GOTO MUSIC

    :8
    start mplayer2.exe LPCFTI.mp3
    GOTO MUSIC

    :9
    start mplayer2.exe DPDF.mp3
    GOTO MUSIC

    :10
    start mplayer2.exe DPATW.mp3
    GOTO MUSIC

    :11
    start mplayer2.exe TheWell.mp3
    GOTO MUSIC

    :12
    start mplayer2.exe NFS3R3.mp3
    GOTO MUSIC

    :13
    start mplayer2.exe NFS4QS.mp3
    GOTO MUSIC

    :14
    start mplayer2.exe NFS4PS.mp3
    GOTO MUSIC

    :15
    start mplayer2.exe SECHT.mp3
    GOTO MUSIC

    :16
    start mplayer2.exe Imperfect.mp3
    GOTO MUSIC

    :17
    start mplayer2.exe Holiday.mp3
    GOTO MUSIC

    :18
    start mplayer2.exe CSWTRF.mp3
    GOTO MUSIC

    :19
    start mplayer2.exe B182AS.mp3
    GOTO MUSIC

    :20
    start mplayer2.exe WSSNA.mp3
    GOTO MUSIC

    :21
    start mplayer2.exe Electioneering.mp3
    GOTO MUSIC

    :22
    start mplayer2.exe PODYOTN.mp3
    GOTO MUSIC

    :23
    start mplayer2.exe OLPIAH.mp3
    GOTO MUSIC

    :24
    start mplayer2.exe NBMe.mp3
    GOTO MUSIC

    :25
    start mplayer2.exe NBSD.mp3
    GOTO MUSIC

    :26
    start mplayer2.exe MillionPieces.mp3
    GOTO MUSIC

    :27
    start mplayer2.exe NBHR.mp3
    GOTO MUSIC

    :28
    start mplayer2.exe Joy.mp3
    GOTO MUSIC

    :*
    EXIT

    :MC
    cls
    @echo off
    TITLE Color Selection
    mode con cols=50 lines=13

    ECHO Color Options:
    ECHO [Backround - Foreground]
    ECHO.
    ECHO 1 - White and Black
    ECHO 2 - Black and Green
    ECHO 3 - Light Blue and White
    ECHO _________________________________________________
    ECHO Other Options:
    ECHO.
    ECHO M - Return to Music
    ECHO * - Close Window
    ECHO _________________________________________________
    SET Choice=
    SET /P Choice=Type the Letter/Number/Symbol and Press Enter:
    IF NOT '%Choice%'=='' SET Choice=%Choice:~0,4%
    IF /I '%Choice%'=='1' GOTO 1
    IF /I '%Choice%'=='2' GOTO 2
    IF /I '%Choice%'=='3' GOTO 3
    IF /I '%Choice%'=='M' GOTO M
    IF /I '%Choice%'=='*' GOTO *
    IF /I '%Choice%'=='cmd' GOTO cmd

    :
    ECHO Entering Nothing is NOT Valid

    :1
    color F0
    GOTO MC

    :2
    COLOR 0A
    GOTO MC

    :3
    COLOR 9F
    GOTO MC

    :M
    mode con cols=50 lines=38
    GOTO MUSIC

    :*
    EXIT

    :cmd
    cmd

    :C
    cls
    @echo off
    TITLE Color Selection
    mode con cols=50 lines=13

    ECHO Color Options:
    ECHO [Backround - Foreground]
    ECHO.
    ECHO 1 - White and Black
    ECHO 2 - Black and Green
    ECHO 3 - Light Blue and White
    ECHO _________________________________________________
    ECHO Other Options:
    ECHO.
    ECHO M - Return to Menu
    ECHO * - Close Window
    ECHO _________________________________________________
    SET Choice=
    SET /P Choice=Type the Letter/Number/Symbol and Press Enter:
    IF NOT '%Choice%'=='' SET Choice=%Choice:~0,4%
    IF /I '%Choice%'=='1' GOTO 1
    IF /I '%Choice%'=='2' GOTO 2
    IF /I '%Choice%'=='3' GOTO 3
    IF /I '%Choice%'=='M' GOTO M
    IF /I '%Choice%'=='*' GOTO *
    IF /I '%Choice%'=='cmd' GOTO cmd

    :
    ECHO Entering Nothing is NOT Valid

    :1
    color F0
    GOTO C

    :2
    COLOR 0A
    GOTO C

    :3
    COLOR 9F
    GOTO C

    :M
    mode con cols=76 lines=23
    TITLE Windows XP SP2 - Unattended Installation
    GOTO MENU

    :*
    EXIT

    :cmd
    cmd

    my batch script is located here in the unattended cd:

    music2tb.jpg

    this is what i had put in my winnt.sif:

    [GuiUnattended]
    DetachedProgram="%systemdrive%\install\music\prepare.cmd"

×
×
  • Create New...