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

Author Topic: Open a file every week as a reminder using batch  (Read 3880 times)

0 Members and 1 Guest are viewing this topic.

sivaramr

    Topic Starter


    Newbie

    • Experience: Beginner
    • OS: Windows 7
    Open a file every week as a reminder using batch
    « on: January 08, 2014, 01:11:34 AM »
    HI

    Is it possible to open a excel file every week using a batch script which should run automatically after user logging into a system

    DaveLembke



      Sage
    • Thanked: 662
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 10
    Re: Open a file every week as a reminder using batch
    « Reply #1 on: January 08, 2014, 08:12:30 PM »
    Kind of confused as to what you want to have happen.

    A scheduled task in windows can launch an excel file to load at a specific time etc.

    A batch or excel file added to the startup folder can cause an event to trigger on logon.

    More information on what you need to have happen will produce a better solution.  :-\

    Geek-9pm


      Mastermind
    • Geek After Dark
    • Thanked: 1026
      • Gekk9pm bnlog
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 10
    Re: Open a file every week as a reminder using batch
    « Reply #2 on: January 08, 2014, 09:24:44 PM »
    Has the OP already looked at this:
    http://windows.microsoft.com/en-us/windows/schedule-task#1TC=windows-7
    Quote
    If you use a specific program on a regular basis, you can use the Task Scheduler wizard to create a task that opens the program for you automatically according to the schedule you choose. For example, if you use a financial program on a certain day each month, you can schedule a task that opens the program automatically to avoid the risk of forgetting to open it yourself.
    Running a task once a week is a normal part of Windows.  A batch file is seldom needed.

    Bgines



      Rookie

      • Certifications: List
      • Computer: Specs
      • Experience: Expert
      • OS: Windows 7
      Re: Open a file every week as a reminder using batch
      « Reply #3 on: January 09, 2014, 10:04:12 PM »
      HI

      Is it possible to open a excel file every week using a batch script which should run automatically after user logging into a system

      Yes This is very Easy!
      BUT THE BATCH FILE MUST RUN 24/7


      Code: [Select]
      @echo off
      :remind
      ping localhost -n 604800 >nul
      start C:\YourPathHere\YourExcellWork.xls
      goto remind
      NOW ADD THIS TO YOUR STARTUP FOLDER SO EVERY TIME YOU LOGIN IT WILL START BUT TAKE NOTE THE TIMER WILL RESTART ON LOGIN!

      The ping localhost -n 604800 >nul Will Wait Till a week in seconds which a week in seconds is 604800

      Dont Forget to Change C:\YourPathHere\YourExcellWork.xls To Your Actual Path

      There You Go I Found This Out MySelf
      It was free for 6 Months.
      But now it's $35 ~ A Virus remover(HINT ME)