Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Timed Launch  (Read 2985 times)

0 Members and 1 Guest are viewing this topic.

Amrykid

    Topic Starter


    Beginner

  • Piplup rules!!!!!!!!
    Timed Launch
    « on: July 03, 2007, 07:48:47 PM »
    hi all
     Its there a way to a batch cound down to proceed with the command?
    or at lessed show progress. for ex 1% of download complete.
    Laptop Specs:
    Manufacturer:Gateway
    Model:MT3705
    OS:Windows Vista Home Premium
    Processor:Intel Pentium Dual-Core Mobile Processor 1.60 GHz, 533 MHz FSB
    Graphics:ATI Readeon Xpress 200M Graphics with 256 HyperMemory
    Memory:1024 MB DDR2
    Network: B/G WLAN Card, 10/100 mbps Ethernet LAN, 56k Fax/Modem

    Dark Blade

    • Forum Gaming Master


    • Adviser

      Thanked: 24
      • Yes
    • Experience: Experienced
    • OS: Windows XP
    Re: Timed Launch
    « Reply #1 on: July 03, 2007, 08:25:16 PM »
    For time to start:
    Code: [Select]
    @echo off

    ping -n 1 -w 1000 1.1.1.1 >nul
    echo 3 seconds...
    echo.
    ping -n 2 -w 1000 1.1.1.1 >nul
    echo 2 seconds...
    echo.
    ping -n 2 -w 1000 1.1.1.1 >nul
    echo 1 second...
    echo.
    ping -n 2 -w 1000 1.1.1.1 >nul
    echo.
    echo Starting program now!
    REM Add your code here.
    pause

    No 100% exact, but close enough. You could also try WAIT, which you can download somewhere (don't know the link, and can't upload because it's .exe)