How to end VBScript on Windows 10?
I accidently did a cd-drive vbs prank on myself on windows 10 and I can't find the wscript.exe file.. Is there any way to end this program?
task-manager vbscript
|
show 2 more comments
I accidently did a cd-drive vbs prank on myself on windows 10 and I can't find the wscript.exe file.. Is there any way to end this program?
task-manager vbscript
rebooting windows? from task manager?
– Máté Juhász
May 18 '16 at 15:08
@MátéJuhász There is no process visible in task manager
– Shariq Musharaf
May 18 '16 at 15:08
Reboot? Look forcscript.exe
processes instead ofwscript.exe
(it's the other scripting host process).
– Ƭᴇcʜιᴇ007
May 18 '16 at 15:09
@Ƭᴇcʜιᴇ007 There are no files like that there, any other way?
– Shariq Musharaf
May 18 '16 at 15:10
1
Just reboot. Unless you have set it to run at start. In which case, disable that then reboot.
– EBGreen
May 18 '16 at 15:17
|
show 2 more comments
I accidently did a cd-drive vbs prank on myself on windows 10 and I can't find the wscript.exe file.. Is there any way to end this program?
task-manager vbscript
I accidently did a cd-drive vbs prank on myself on windows 10 and I can't find the wscript.exe file.. Is there any way to end this program?
task-manager vbscript
task-manager vbscript
asked May 18 '16 at 15:06
Shariq Musharaf
12217
12217
rebooting windows? from task manager?
– Máté Juhász
May 18 '16 at 15:08
@MátéJuhász There is no process visible in task manager
– Shariq Musharaf
May 18 '16 at 15:08
Reboot? Look forcscript.exe
processes instead ofwscript.exe
(it's the other scripting host process).
– Ƭᴇcʜιᴇ007
May 18 '16 at 15:09
@Ƭᴇcʜιᴇ007 There are no files like that there, any other way?
– Shariq Musharaf
May 18 '16 at 15:10
1
Just reboot. Unless you have set it to run at start. In which case, disable that then reboot.
– EBGreen
May 18 '16 at 15:17
|
show 2 more comments
rebooting windows? from task manager?
– Máté Juhász
May 18 '16 at 15:08
@MátéJuhász There is no process visible in task manager
– Shariq Musharaf
May 18 '16 at 15:08
Reboot? Look forcscript.exe
processes instead ofwscript.exe
(it's the other scripting host process).
– Ƭᴇcʜιᴇ007
May 18 '16 at 15:09
@Ƭᴇcʜιᴇ007 There are no files like that there, any other way?
– Shariq Musharaf
May 18 '16 at 15:10
1
Just reboot. Unless you have set it to run at start. In which case, disable that then reboot.
– EBGreen
May 18 '16 at 15:17
rebooting windows? from task manager?
– Máté Juhász
May 18 '16 at 15:08
rebooting windows? from task manager?
– Máté Juhász
May 18 '16 at 15:08
@MátéJuhász There is no process visible in task manager
– Shariq Musharaf
May 18 '16 at 15:08
@MátéJuhász There is no process visible in task manager
– Shariq Musharaf
May 18 '16 at 15:08
Reboot? Look for
cscript.exe
processes instead of wscript.exe
(it's the other scripting host process).– Ƭᴇcʜιᴇ007
May 18 '16 at 15:09
Reboot? Look for
cscript.exe
processes instead of wscript.exe
(it's the other scripting host process).– Ƭᴇcʜιᴇ007
May 18 '16 at 15:09
@Ƭᴇcʜιᴇ007 There are no files like that there, any other way?
– Shariq Musharaf
May 18 '16 at 15:10
@Ƭᴇcʜιᴇ007 There are no files like that there, any other way?
– Shariq Musharaf
May 18 '16 at 15:10
1
1
Just reboot. Unless you have set it to run at start. In which case, disable that then reboot.
– EBGreen
May 18 '16 at 15:17
Just reboot. Unless you have set it to run at start. In which case, disable that then reboot.
– EBGreen
May 18 '16 at 15:17
|
show 2 more comments
3 Answers
3
active
oldest
votes
Your script probably runs elevated so could become invisible in normal unelevated task manager. Run it elevated as well.
Another approach: open an elevated command line window. Then, taskkill /?
could suggest a solution (or read taskkill
: End one or more processes by process ID or image name article).
To find process ID of any running Windows scripting engine i.e either wscript.exe
or cscript.exe
, type
tasklist | findstr /I "PID script.exe"
and search for .vbs
i.e. VBScript file extension:
wmic process where "CommandLine like '%.vbs%' and name != 'wmic.exe'" get /value
and search for your script file name (let's say cdprank.vbs
):
wmic process where "CommandLine like '%cdprank%' and name != 'wmic.exe'" get /value
add a comment |
Look for something called "Microsoft Windows Based Script Host" in the running processes. End this process and you should be fine.
How does this differ from the accepted answer
– Ramhound
Mar 25 '17 at 14:48
This is how I do it as well. Why was this down-voted? Much simpler than the accepted answer. You just run Task Manager, look for the above string, and click "end task".
– Blisterpeanuts
Nov 1 at 19:09
add a comment |
For Windows 10 TaskManager>Details search for wscript.exe Right click and select End Process tree.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1078273%2fhow-to-end-vbscript-on-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your script probably runs elevated so could become invisible in normal unelevated task manager. Run it elevated as well.
Another approach: open an elevated command line window. Then, taskkill /?
could suggest a solution (or read taskkill
: End one or more processes by process ID or image name article).
To find process ID of any running Windows scripting engine i.e either wscript.exe
or cscript.exe
, type
tasklist | findstr /I "PID script.exe"
and search for .vbs
i.e. VBScript file extension:
wmic process where "CommandLine like '%.vbs%' and name != 'wmic.exe'" get /value
and search for your script file name (let's say cdprank.vbs
):
wmic process where "CommandLine like '%cdprank%' and name != 'wmic.exe'" get /value
add a comment |
Your script probably runs elevated so could become invisible in normal unelevated task manager. Run it elevated as well.
Another approach: open an elevated command line window. Then, taskkill /?
could suggest a solution (or read taskkill
: End one or more processes by process ID or image name article).
To find process ID of any running Windows scripting engine i.e either wscript.exe
or cscript.exe
, type
tasklist | findstr /I "PID script.exe"
and search for .vbs
i.e. VBScript file extension:
wmic process where "CommandLine like '%.vbs%' and name != 'wmic.exe'" get /value
and search for your script file name (let's say cdprank.vbs
):
wmic process where "CommandLine like '%cdprank%' and name != 'wmic.exe'" get /value
add a comment |
Your script probably runs elevated so could become invisible in normal unelevated task manager. Run it elevated as well.
Another approach: open an elevated command line window. Then, taskkill /?
could suggest a solution (or read taskkill
: End one or more processes by process ID or image name article).
To find process ID of any running Windows scripting engine i.e either wscript.exe
or cscript.exe
, type
tasklist | findstr /I "PID script.exe"
and search for .vbs
i.e. VBScript file extension:
wmic process where "CommandLine like '%.vbs%' and name != 'wmic.exe'" get /value
and search for your script file name (let's say cdprank.vbs
):
wmic process where "CommandLine like '%cdprank%' and name != 'wmic.exe'" get /value
Your script probably runs elevated so could become invisible in normal unelevated task manager. Run it elevated as well.
Another approach: open an elevated command line window. Then, taskkill /?
could suggest a solution (or read taskkill
: End one or more processes by process ID or image name article).
To find process ID of any running Windows scripting engine i.e either wscript.exe
or cscript.exe
, type
tasklist | findstr /I "PID script.exe"
and search for .vbs
i.e. VBScript file extension:
wmic process where "CommandLine like '%.vbs%' and name != 'wmic.exe'" get /value
and search for your script file name (let's say cdprank.vbs
):
wmic process where "CommandLine like '%cdprank%' and name != 'wmic.exe'" get /value
answered May 18 '16 at 21:52
JosefZ
7,13541543
7,13541543
add a comment |
add a comment |
Look for something called "Microsoft Windows Based Script Host" in the running processes. End this process and you should be fine.
How does this differ from the accepted answer
– Ramhound
Mar 25 '17 at 14:48
This is how I do it as well. Why was this down-voted? Much simpler than the accepted answer. You just run Task Manager, look for the above string, and click "end task".
– Blisterpeanuts
Nov 1 at 19:09
add a comment |
Look for something called "Microsoft Windows Based Script Host" in the running processes. End this process and you should be fine.
How does this differ from the accepted answer
– Ramhound
Mar 25 '17 at 14:48
This is how I do it as well. Why was this down-voted? Much simpler than the accepted answer. You just run Task Manager, look for the above string, and click "end task".
– Blisterpeanuts
Nov 1 at 19:09
add a comment |
Look for something called "Microsoft Windows Based Script Host" in the running processes. End this process and you should be fine.
Look for something called "Microsoft Windows Based Script Host" in the running processes. End this process and you should be fine.
answered Mar 25 '17 at 14:15
DZoten
11
11
How does this differ from the accepted answer
– Ramhound
Mar 25 '17 at 14:48
This is how I do it as well. Why was this down-voted? Much simpler than the accepted answer. You just run Task Manager, look for the above string, and click "end task".
– Blisterpeanuts
Nov 1 at 19:09
add a comment |
How does this differ from the accepted answer
– Ramhound
Mar 25 '17 at 14:48
This is how I do it as well. Why was this down-voted? Much simpler than the accepted answer. You just run Task Manager, look for the above string, and click "end task".
– Blisterpeanuts
Nov 1 at 19:09
How does this differ from the accepted answer
– Ramhound
Mar 25 '17 at 14:48
How does this differ from the accepted answer
– Ramhound
Mar 25 '17 at 14:48
This is how I do it as well. Why was this down-voted? Much simpler than the accepted answer. You just run Task Manager, look for the above string, and click "end task".
– Blisterpeanuts
Nov 1 at 19:09
This is how I do it as well. Why was this down-voted? Much simpler than the accepted answer. You just run Task Manager, look for the above string, and click "end task".
– Blisterpeanuts
Nov 1 at 19:09
add a comment |
For Windows 10 TaskManager>Details search for wscript.exe Right click and select End Process tree.
add a comment |
For Windows 10 TaskManager>Details search for wscript.exe Right click and select End Process tree.
add a comment |
For Windows 10 TaskManager>Details search for wscript.exe Right click and select End Process tree.
For Windows 10 TaskManager>Details search for wscript.exe Right click and select End Process tree.
answered Dec 5 at 13:45
AV Sunil Kumar
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1078273%2fhow-to-end-vbscript-on-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
rebooting windows? from task manager?
– Máté Juhász
May 18 '16 at 15:08
@MátéJuhász There is no process visible in task manager
– Shariq Musharaf
May 18 '16 at 15:08
Reboot? Look for
cscript.exe
processes instead ofwscript.exe
(it's the other scripting host process).– Ƭᴇcʜιᴇ007
May 18 '16 at 15:09
@Ƭᴇcʜιᴇ007 There are no files like that there, any other way?
– Shariq Musharaf
May 18 '16 at 15:10
1
Just reboot. Unless you have set it to run at start. In which case, disable that then reboot.
– EBGreen
May 18 '16 at 15:17