Share via

There is a task in my scheduler named "USER_ESRV_SVC_QUEENCREEK" author: Intel Energy Checker.

Anonymous
2018-05-23T16:44:49+00:00

It starts the program, "C:\Windows\System32\Wscript.exe" with these arguments: //B //NoLogo "C:\Program Files\Intel\SUR\QUEENCREEK\x64\task.vbs"

What is this and what does it do?

System Resources?

Windows for home | Previous Windows versions | Apps

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Anonymous
    2018-05-23T21:51:35+00:00

    This looks like a totally unprofessional job. Here is why:

    1. The task uses wscript.exe to invoke task.vbs.
    2. Task.vbs invokes task.bat.
    3. Task.bat invokes task.exe

    Any half-competent programmer would use the Task Scheduler to invoke task.exe directly. I suspect that task.exe is/was malware that got deleted by your virus scanner. I would now disable the task itself.

    50+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2018-05-23T21:25:52+00:00

    Contents of task.vbs:

    Set objShell = CreateObject("WScript.Shell")

    objShell.Run("C:\Windows\system32\cmd.exe /c ""C:\Program Files\Intel\SUR\QUEENCREEK\x64\task.bat"""), 0

    Set objShell = Nothing

    Contents of task.bat

    "C:\Program Files\Intel\SUR\QUEENCREEK\x64\task.exe"

    I couldn't find the "task.exe" executable in a windows search

    3 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2018-05-23T20:34:48+00:00

    If you post the contents of task.vbs then someone might be able to tell you.

    1 person found this answer helpful.
    0 comments No comments