batch script ??

Discussion in 'Windows' started by Bjam, Dec 17, 2008.

  1. Bjam

    Bjam New Member

    Joined:
    Nov 11, 2008
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    0
    Dear All,
    Am not sure if am posting in the right forum. If false, plz guide me.

    I want to make a batch file that do the following:
    1. End a process (taskmanager), the process is wscript.exe
    2. Change attribute (unhide) for a .inf file, autorun.inf which is on C:
    3. delete the .inf file

    Any help guys ???
    Ill be greatfulllll.

    Best regards.
     
  2. neo_vi

    neo_vi Member

    Joined:
    Feb 1, 2008
    Messages:
    720
    Likes Received:
    16
    Trophy Points:
    18
    Occupation:
    Software engineer
    Location:
    Earth
    Home Page:
    http://computertipaday.blogspot.com
    Read this. Destroy virus from hard drive in 15 seconds
    U can find the answer for 2nd and 3rd question.
    for the 1st question the command is
    Code:
    taskkill
    Jus go to the task manager and enable the PID for the process. and look for the wscript.exe's PID.
    and use this code
    Code:
    taskkill /PID <PID number>
    Post ur doubts after trying this.
     
  3. oyeLucky

    oyeLucky New Member

    Joined:
    Dec 27, 2008
    Messages:
    18
    Likes Received:
    0
    Trophy Points:
    0
    just open the notepad and type the following commands:
    Code:
    taskkill /f /im wscript.exe
    attrib -r -h -s c:\autorun.inf
    del autorun.inf
    
    Save the file with extension .bat for example "heal.bat" or you can also save it with .cmd extension also for example "heal.cmd".
    Now just double click the file and the work will be done.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice