View Poll Results: Did you find this thread usefull?

Voters
87. You may not vote on this poll
  • YES

    82 94.25%
  • NO

    5 5.75%
Page 1 of 4 123 ... LastLast
Results 1 to 25 of 96

Thread: Easiest way to automate night 2-8 downloads....... without any software....

  1. #1
    Gold Member
    Join Date
    Feb 2009
    Liked
    0 times
    Posts
    573

    Default Easiest way to automate night 2-8 downloads....... without any software....

    Hi..... if you are looking to easily automate free downloads, just try this..... This has been brought up in many threads, still i just managed to summarize everything here... The main reason for bringing this up again is because so many are still searching to find a way to automate downloads.....

    you will need to configure your modem to work in BRIDGE mode for this to work.....

    Steps to configure UT300R2U modem is here, also given is how to create a dialler.....

    http://www.indiabroadband.net/bsnl-b...reduced-2.html (Home 500 + UT300R2u bandwidth suddenly reduced)

    Some do say bridge mode is a bit of a hassle, but i find no problems with it whatsoever till now.....

    I tried this on xp-sp2 and should work on vista as well, I hope......

    All you need to do is put the system in Hibernate mode and make the windows scheduler run a command file at say, 2.15am (to make sure we don't start before 2am......)
    Make sure your modem is also ON..... Don't worry, in bridge mode unless you log in from the dialer internet won't be connected......

    Code:
    @ECHO OFF
    
    :CONNECT
    rasdial connection-name username password
    if NOT %ERRORLEVEL% ==0 GOTO FAILED
    EXIT
    
    :FAILED
    GOTO CONNECT

    copy paste this into notepad, replace connection-name with your dialer name, username with your bsnl id, password and save as connect.cmd.........
    next step is to make the windows scheduler to run this file at 2.15am....

    note:To make the windows scheduler work you will need atleast an account with password on your computer..... This is no problem..... If you log in every time as Administrator, just create a password for it (like xyz or 123 or anything).............. Or create a new account with password.....

    Lastly make your torrent client run at say, 2.16am.....

    By the way, I'm using XP-SP2 with UT300R2U modem, Utorrent..........

  2. #2
    Junior Member
    Join Date
    Jun 2009
    Age
    24
    Liked
    0 times
    Posts
    5

    Default

    Can u tell me how to create a dialer in Macbook??

  3. #3
    Platinum Member Archer's Avatar
    Join Date
    Aug 2008
    Liked
    0 times
    Posts
    2,969

    Default

    Code to run the torrent client

    Code:
    start "" "path to torrent client executable file"
    Example: start "" "C:\Program Files\uTorrent\uTorrent.exe"

    Code to hibernate Windows XP

    Code:
    RUNDLL32.EXE PowrProf.dll,SetSuspendState
    PS, Windows scheduler is unreliable. Using a 3rd party scheduler software is better.

  4. #4
    Gold Member
    Join Date
    Feb 2009
    Liked
    0 times
    Posts
    573

    Default

    PS, Windows scheduler is unreliable. Using a 3rd party scheduler software is better.
    The only problem I found with windows scheduler so far is that it will need a user with password to run a task..... This can be easily solved by setting an easy to remember password like 123 etc......

  5. #5
    The Wizard meetdilip's Avatar
    Join Date
    Aug 2009
    Liked
    0 times
    Posts
    8,563

    Default

    Create two batch files using rasdial and schedule it using Windows Scheduler or a third party client.

    You will find it here

    http://www.indiabroadband.net/broadb...oad-night.html (Automate Download at Night)

  6. #6
    Gold Member
    Join Date
    Feb 2009
    Liked
    0 times
    Posts
    573

    Default

    Quote Originally Posted by meetdilip View Post
    Create two batch files using rasdial and schedule it using Windows Scheduler or a third party client.

    You will find it here

    http://www.indiabroadband.net/broadb...oad-night.html (Automate Download at Night)
    I assumed everyone will wake up at 8.00am......

    In case you don't here is the cmd file code for disconnection.......

    Code:
    rasdial connection-name /DISCONNECT
    save this as a cmd file and schedule to run at 8.00am.......

  7. #7
    The Master imrock's Avatar
    Join Date
    Sep 2008
    Liked
    0 times
    Posts
    2,200

    Default

    i am using this method in windows 7 final.
    working fine!

  8. #8
    Platinum Member Archer's Avatar
    Join Date
    Aug 2008
    Liked
    0 times
    Posts
    2,969

    Default

    Quote Originally Posted by hitler517 View Post
    The only problem I found with windows scheduler so far is that it will need a user with password to run a task..... This can be easily solved by setting an easy to remember password like 123 etc......
    Does this script also wakes system from hibernation ? I use the BIOS settings to start system system after 2 AM, so never tried it.

    I am using this method in Windows XP SP3 without a password protected account. The reason I said Windows Scheduler is unreliable is that sometimes it doesn't run the task.
    Last edited by Archer; 10-30-09 at 08:58 PM.

  9. #9
    Gold Member
    Join Date
    Feb 2009
    Liked
    0 times
    Posts
    573

    Default

    Does this script also wakes system from hibernation ? I use the BIOS settings to start system system after 2 AM, so never tried it.
    After you create a scheduled task, right click and select properties.....
    Ensure that Wake the computer to run this task is enabled.....
    This will make the task scheduler to run the task resuming from hibernate mode......

    See screnshot below.....




    I am using this method in Windows XP SP3 without a password protected account. The reason I said Windows Scheduler is unreliable is the sometimes it doesn't run the task.
    Ya, that's the only problem with windows scheduler.... u need to have an account with password to run windows scheduler....... Otherwise it won't work..... It's easy.... just enable a password for your account.......

  10. #10
    Platinum Member Archer's Avatar
    Join Date
    Aug 2008
    Liked
    0 times
    Posts
    2,969

    Default

    Thanks. I never noticed that option before.

    Quote Originally Posted by hitler517 View Post
    Ya, that's the only problem with windows scheduler.... u need to have an account with password to run windows scheduler....... Otherwise it won't work..... It's easy.... just enable a password for your account.......
    I mean it also works without a password protected account.

    Enable "Use the Welcome screen" and disable "Use Fast User Switching" in User Account settings. Also enable "Run only if logged on" in windows scheduler task properties and it will work without a password protected account.

  11. #11
    Gold Member
    Join Date
    Feb 2009
    Liked
    0 times
    Posts
    573

    Default

    I mean it also works without a password protected account.

    Enable "Use the Welcome screen" and disable "Use Fast User Switching" in User Account settings. Also enable "Run only if logged on" in windows scheduler task properties and it will work without a password protected account.
    Thanks buddy.... It works without password that way.......

  12. #12
    Junior Member
    Join Date
    Mar 2009
    Age
    23
    Liked
    0 times
    Posts
    14

    Default

    Thanx for the wonderful trick@@@@@!!!!!!!
    happy downloading.................
    :surrender:
    Last edited by Jumbomgk; 10-30-09 at 10:52 PM. Reason: Automerged Doublepost

  13. #13
    Gold Member
    Join Date
    Feb 2009
    Liked
    0 times
    Posts
    573

    Default

    Quote Originally Posted by chalookhopdi View Post
    Can u tell me how to create a dialer in Macbook??
    Configure Mac OS X

    1. From the Apple menu, choose System Preferences.
    2. From the View menu, choose Network.
    3. Choose "Internal Modem" from the Show pop-up menu (or the "Configure" pop-up menu prior to Mac OS X v10.1).
    If your computer does not have a built-in modem, select your external modem.

    4. Mac OS X v10.5 or later: From the Configuration pop-up menu, choose Add Configuration.
    Mac OS X 10.4.x or earlier: Click the PPP tab.
    5. Enter your information into the relevant fields. Your username goes in the Account Name field, for example. If you want to copy this connection information to other user accounts on this computer, select "Save password".
    6. You should now be able to connect. If you need to configure DNS servers or other advanced settings, continue to the next step.
    7. Mac OS X v10.5 or later: Click the Advanced button, then click the DNS tab.
    Mac OS X v10.4 or earlier: Click the TCP/IP tab. Choose either PPP or Manually from the Configure pop-up menu, as instructed by your Internet service provider. If configuring manually, type the IP address in the matching field.
    8. Type the DNS server addresses in their field if necessary (click the "+" button first in Mac OS X v10.5 or later).
    9. Click OK.
    10. Click Apply (or Apply Now for Mac OS X v10.4 or earlier).


    Connect and verify

    1. Mac OS X v10.5 or later: Open Network preferences (in System Preferences).
    Mac OS X v10.4.x or earlier: Open Internet Connect (from the Applications folder).
    2. Be sure the Configuration pop-up menu is set to your modem.
    3. Click the Connect button.
    4. Once you're connected, open a Web browser or other Internet application to make sure your connection works.

  14. #14
    The Master imrock's Avatar
    Join Date
    Sep 2008
    Liked
    0 times
    Posts
    2,200

    Default

    Quote Originally Posted by hitler517 View Post
    After you create a scheduled task, right click and select properties.....
    Ensure that Wake the computer to run this task is enabled.....
    This will make the task scheduler to run the task resuming from hibernate mode......

    See screnshot below.....






    Ya, that's the only problem with windows scheduler.... u need to have an account with password to run windows scheduler....... Otherwise it won't work..... It's easy.... just enable a password for your account.......
    thank you!!great work!


    the problem of account is bad.
    it is solved in windows vista and 7!

  15. #15
    Gold Member
    Join Date
    Feb 2009
    Liked
    0 times
    Posts
    573

    Default

    Quote Originally Posted by imrock View Post
    thank you!!great work!


    the problem of account is bad.
    it is solved in windows vista and 7!
    even the problem of account is solved....... (Thanks to Archer......)
    see post #10 by Archer...........
    that way you won't need the password for scheduler......

  16. #16
    Bronze Member
    Join Date
    Oct 2009
    Age
    17
    Liked
    0 times
    Posts
    181

    Cool Automatic Downloads

    I use IDM to because it has all functions you need and so I.
    Features:
    More Downloading speed [very different from another softwares]
    QUEUES [Timed queues starts downloading at a fixed time and closes at a fix time too.]
    and many more features

  17. #17
    Gold Member
    Join Date
    Feb 2009
    Liked
    0 times
    Posts
    573

    Default

    Quote Originally Posted by rishbhsharma View Post
    I use IDM to because it has all functions you need and so I.
    Features:
    More Downloading speed [very different from another softwares]
    QUEUES [Timed queues starts downloading at a fixed time and closes at a fix time too.]
    and many more features
    I'm also using IDM............

  18. #18
    Bronze Member
    Join Date
    Oct 2009
    Age
    17
    Liked
    0 times
    Posts
    181

    Smile

    Quote Originally Posted by hitler517 View Post
    I'm also using IDM............
    Yes. IDM gives me a great internet speed and has many features:thumbup1:

  19. #19
    Bronze Member
    Join Date
    Jul 2009
    Liked
    0 times
    Posts
    193

    Default

    hey jst download automation file from megaupload i have uploaded....

  20. #20
    Junior Member
    Join Date
    Feb 2009
    Age
    25
    Liked
    0 times
    Posts
    20

    Default

    If I may have my own input, I had written a blog entry back in April based on using Batch configuration method.

    here is the link -> z.pe/AbB (copy paste in browser)

    also, i have made the xml config files for Vista available for download. so you can import them directly into your task scheduler.

    Hope this helps

  21. #21
    Unregistered
    Guest

    Unhappy Automated download for WA1003A

    Guyzzzzzzz can u help me out with this automated downloading wrt huawei wa1003a adsl router. I hav a pppoe connection n i dont hav ne mail id given by bsnl. How do u obtain d email id? Also can i share my bb connection using a switch even after changing to a bridge connection using switch.

  22. #22
    The Wizard meetdilip's Avatar
    Join Date
    Aug 2009
    Liked
    0 times
    Posts
    8,563

    Default

    Quote Originally Posted by Unregistered View Post
    Guyzzzzzzz can u help me out with this automated downloading wrt huawei wa1003a adsl router. I hav a pppoe connection n i dont hav ne mail id given by bsnl. How do u obtain d email id? Also can i share my bb connection using a switch even after changing to a bridge connection using switch.
    Talk to your local exchange for email ID. For automating in PPPoE mode, you can use Imran's Broadband Helper utility

    http://imran-utilities.synthasite.com/

  23. #23
    Gold Member
    Join Date
    Feb 2009
    Liked
    0 times
    Posts
    573

    Default

    The whole method summarized...............



    Step 1: Configure your modem in BRIDGE mode..........

    Step 2: Make two cmd files with the following codes replacing connection-name, username, password with your respective data ..........

    connect.bat script

    Code:
    @ECHO OFF
    
    :CONNECT
    rasdial connection-name username password
    if NOT %ERRORLEVEL% ==0 GOTO FAILED
    EXIT
    
    :FAILED
    GOTO CONNECT

    disconnect.bat script

    Code:
    rasdial connection-name /DISCONNECT

    Step 3: Schedule to run connect.bat at 2.15 am


    Step 4: Schedule to run utorrent at 2.16 am

    Step 5: Schedule to run disconnect.bat at 7.55 am

  24. #24
    Junior Member
    Join Date
    Nov 2009
    Liked
    0 times
    Posts
    10

    Question

    Thanks a lot guyzzzzz for helping me out.....I understood the other procedures frm d previous posts........The only thing i'm worried abt is configuring my router for bridge mode or configuring imran's ibroadband....... I tried d bridge mode n it went horribly wrong for me.....Those BSNL guys warned me not to use it again......So it would be helpful if neone of u posted on how to configure my router (WA1003A) to bridge mode...........Also can u give me d screenshots of what to fill in the parameters for configuring tht imran's ibroadbandsoftware.....

    And also i hav a static ip n DHCP cannot be used for some reason even i dont know........:confused1: ANd if i'm in bridge mode can i share my connection with other pc's using a switch..........
    Last edited by rohit.r; 11-03-09 at 05:58 PM. Reason: Automerged Doublepost

  25. #25
    The Wizard meetdilip's Avatar
    Join Date
    Aug 2009
    Liked
    0 times
    Posts
    8,563

    Default

    Imran's work in PPPoE mode not in Bridge mode. To share your connection, you need to be in PPPoE mode.

Page 1 of 4 123 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Which is the Best Antivirus software package for your computer?
    By Preeti_20 in forum Computer Security
    Replies: 54
    Last Post: 12-27-11, 09:36 PM
  2. Replies: 2
    Last Post: 03-18-10, 02:26 PM
  3. Laptop Battery Monitor Software: BatteryCare
    By Preeti_20 in forum Laptop
    Replies: 0
    Last Post: 02-09-10, 11:37 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •