Jump to content

Mikep7779

Member
  • Posts

    221
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by Mikep7779

  1. heres what i have

    [\CODE]

    ' * * * * * * * * * * * * * * User Variables * * * * * * * * * * * * * *

    ' FTP address for the root of your web site:

    ' Example: "ftp.myISP.com" (check ISP help page for details) *

    FTPaddr = "00000000"

    ' Local folder that equates to the root of your web site: *

    BaseDir = "C:/Documents and Settings/Panda67/Desktop/"

    ' FTP username for your site: *

    UserName = "00000000"

    ' FTP password for your site: *

    Password = "000000000"

    ' ---ADVANCED Setup Options--- *

    ' (If you don't know what ascii upload means, leave this alone!)

    ' Files to be uploaded in ASCII format: *

    arASCII = Array("rar","bmp","jpg","log","txt", "cgi", "pl", "htm", "html", "asp", "js", "vbs")

    ' Suppress Popup if upload succeeded (True or False, no quotes): *

    ShowSuccess = False

    ' * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

    [\/CODE]

    And now im getting it must be in that DIR or a sub dir ;/

  2. hmm actually you can have multiple ones if you like...the issue is getting the RunOnce key to execute with out having to reboot...this can be done tho...and has been covered many a time with in these forums.

    cmdow @ /HID
    @echo off

    SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

    REG ADD %KEY% /V TITLE /D "Installing Applications Part 1" /f

    REG ADD %KEY%\005 /VE /D "Adobe Reader 6" /f
    REG ADD %KEY%\005 /V 1 /D "%systemdrive%\install\AdobeReader6\AR6.msi /qn" /f

    REG ADD %KEY%\010 /VE /D "Alcohol 120" /f
    REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\alcohol\setup.exe /qn" /f
    REG ADD %KEY%\010 /V 2 /D "REGEDIT /S %systemdrive%\install\alcohol\register.reg" /f

    REG ADD %KEY%\015 /VE /D "Diskeeper 8" /f
    [b]...
    [/b]
    rundll32.exe iernonce.dll,RunOnceExProcess

    REG ADD %KEY% /V TITLE /D "Installing Applications Part 2" /f

    REG ADD %KEY%\005 /VE /D "QuickTime 7" /f
    REG ADD %KEY%\005 /V 1 /D "%systemdrive%\install\QuickTime\setup /s" /f

    REG ADD %KEY%\010 /VE /D "XP Codec Pack 3" /f
    REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\XP_Codec\install.exe /qn" /f

    REG ADD %KEY%\015 /VE /D "PSPad" /f
    [b]...[/b]

    rundll32.exe iernonce.dll,RunOnceExProcess

    The important part is:

    rundll32.exe iernonce.dll,RunOnceExProcess

    Since the base cmd file will populate the RunOnce reg entry...and the line above will then force every thing thats been entered into the entry to then run at that point.

    Are the ... important?

×
×
  • Create New...