Powershell not working to disable Windows Update
I have been using the command: sc.exe config wuauserv start=disabled on Powershell to disable Windows Updates in Windows 10. But I am unable to do so today after recent Windows Update.
This is the message I am getting using above sc.exe command.
[SC] OpenService FAILED 5:
Access is denied.
Please suggest how can i fix this.
windows windows-10 powershell
add a comment |
I have been using the command: sc.exe config wuauserv start=disabled on Powershell to disable Windows Updates in Windows 10. But I am unable to do so today after recent Windows Update.
This is the message I am getting using above sc.exe command.
[SC] OpenService FAILED 5:
Access is denied.
Please suggest how can i fix this.
windows windows-10 powershell
1
Did you run that command in powershell with administrator privilege?
– Biswapriyo
Jan 11 at 8:19
yes powershell is in administrator mode.
– Karan
Jan 11 at 10:14
My batch script for cmd prompt still works on 1809 and latest updates.
– Moab
Jan 11 at 14:18
add a comment |
I have been using the command: sc.exe config wuauserv start=disabled on Powershell to disable Windows Updates in Windows 10. But I am unable to do so today after recent Windows Update.
This is the message I am getting using above sc.exe command.
[SC] OpenService FAILED 5:
Access is denied.
Please suggest how can i fix this.
windows windows-10 powershell
I have been using the command: sc.exe config wuauserv start=disabled on Powershell to disable Windows Updates in Windows 10. But I am unable to do so today after recent Windows Update.
This is the message I am getting using above sc.exe command.
[SC] OpenService FAILED 5:
Access is denied.
Please suggest how can i fix this.
windows windows-10 powershell
windows windows-10 powershell
asked Jan 11 at 7:52
KaranKaran
1
1
1
Did you run that command in powershell with administrator privilege?
– Biswapriyo
Jan 11 at 8:19
yes powershell is in administrator mode.
– Karan
Jan 11 at 10:14
My batch script for cmd prompt still works on 1809 and latest updates.
– Moab
Jan 11 at 14:18
add a comment |
1
Did you run that command in powershell with administrator privilege?
– Biswapriyo
Jan 11 at 8:19
yes powershell is in administrator mode.
– Karan
Jan 11 at 10:14
My batch script for cmd prompt still works on 1809 and latest updates.
– Moab
Jan 11 at 14:18
1
1
Did you run that command in powershell with administrator privilege?
– Biswapriyo
Jan 11 at 8:19
Did you run that command in powershell with administrator privilege?
– Biswapriyo
Jan 11 at 8:19
yes powershell is in administrator mode.
– Karan
Jan 11 at 10:14
yes powershell is in administrator mode.
– Karan
Jan 11 at 10:14
My batch script for cmd prompt still works on 1809 and latest updates.
– Moab
Jan 11 at 14:18
My batch script for cmd prompt still works on 1809 and latest updates.
– Moab
Jan 11 at 14:18
add a comment |
1 Answer
1
active
oldest
votes
Please be sure to spend the time to get spun up on PowerShell using all the no cost online training (YouTube, Microsoft Virtual Academy, MS Channel9, etc.) and no cost eBooks, and the pick up some of the highly recommended PS books via Amazon.
As for what you are doing, this is not the way to run external exe in the PS console host or ISE or VSCode.
Exe's run in cmd.exe not in PS. Calling and exe in PS needs shell to cmd.exe, but you have to do that in code.
PowerShell has special characters that are reserved. The '=' is an assignment operator, so that straight cmd.exe like command cannot be used directly. How to run exe via PS is fully documented.
PowerShell: Running Executables
PowerShell - Special Characters And Tokens
There are several different methods for running executables as well as invoking code. How do you know which one to use for the job? Here is an outline of the methods with examples and general use.
# Your - sc.exe config wuauserv start=disabled
# becomes like this...
# Start and external process calling sc.exe and pass the arguments to SC.exe
Start-Process -FilePath sc.exe -ArgumentList 'config wuauserv start=disabled'
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%2f1393065%2fpowershell-not-working-to-disable-windows-update%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Please be sure to spend the time to get spun up on PowerShell using all the no cost online training (YouTube, Microsoft Virtual Academy, MS Channel9, etc.) and no cost eBooks, and the pick up some of the highly recommended PS books via Amazon.
As for what you are doing, this is not the way to run external exe in the PS console host or ISE or VSCode.
Exe's run in cmd.exe not in PS. Calling and exe in PS needs shell to cmd.exe, but you have to do that in code.
PowerShell has special characters that are reserved. The '=' is an assignment operator, so that straight cmd.exe like command cannot be used directly. How to run exe via PS is fully documented.
PowerShell: Running Executables
PowerShell - Special Characters And Tokens
There are several different methods for running executables as well as invoking code. How do you know which one to use for the job? Here is an outline of the methods with examples and general use.
# Your - sc.exe config wuauserv start=disabled
# becomes like this...
# Start and external process calling sc.exe and pass the arguments to SC.exe
Start-Process -FilePath sc.exe -ArgumentList 'config wuauserv start=disabled'
add a comment |
Please be sure to spend the time to get spun up on PowerShell using all the no cost online training (YouTube, Microsoft Virtual Academy, MS Channel9, etc.) and no cost eBooks, and the pick up some of the highly recommended PS books via Amazon.
As for what you are doing, this is not the way to run external exe in the PS console host or ISE or VSCode.
Exe's run in cmd.exe not in PS. Calling and exe in PS needs shell to cmd.exe, but you have to do that in code.
PowerShell has special characters that are reserved. The '=' is an assignment operator, so that straight cmd.exe like command cannot be used directly. How to run exe via PS is fully documented.
PowerShell: Running Executables
PowerShell - Special Characters And Tokens
There are several different methods for running executables as well as invoking code. How do you know which one to use for the job? Here is an outline of the methods with examples and general use.
# Your - sc.exe config wuauserv start=disabled
# becomes like this...
# Start and external process calling sc.exe and pass the arguments to SC.exe
Start-Process -FilePath sc.exe -ArgumentList 'config wuauserv start=disabled'
add a comment |
Please be sure to spend the time to get spun up on PowerShell using all the no cost online training (YouTube, Microsoft Virtual Academy, MS Channel9, etc.) and no cost eBooks, and the pick up some of the highly recommended PS books via Amazon.
As for what you are doing, this is not the way to run external exe in the PS console host or ISE or VSCode.
Exe's run in cmd.exe not in PS. Calling and exe in PS needs shell to cmd.exe, but you have to do that in code.
PowerShell has special characters that are reserved. The '=' is an assignment operator, so that straight cmd.exe like command cannot be used directly. How to run exe via PS is fully documented.
PowerShell: Running Executables
PowerShell - Special Characters And Tokens
There are several different methods for running executables as well as invoking code. How do you know which one to use for the job? Here is an outline of the methods with examples and general use.
# Your - sc.exe config wuauserv start=disabled
# becomes like this...
# Start and external process calling sc.exe and pass the arguments to SC.exe
Start-Process -FilePath sc.exe -ArgumentList 'config wuauserv start=disabled'
Please be sure to spend the time to get spun up on PowerShell using all the no cost online training (YouTube, Microsoft Virtual Academy, MS Channel9, etc.) and no cost eBooks, and the pick up some of the highly recommended PS books via Amazon.
As for what you are doing, this is not the way to run external exe in the PS console host or ISE or VSCode.
Exe's run in cmd.exe not in PS. Calling and exe in PS needs shell to cmd.exe, but you have to do that in code.
PowerShell has special characters that are reserved. The '=' is an assignment operator, so that straight cmd.exe like command cannot be used directly. How to run exe via PS is fully documented.
PowerShell: Running Executables
PowerShell - Special Characters And Tokens
There are several different methods for running executables as well as invoking code. How do you know which one to use for the job? Here is an outline of the methods with examples and general use.
# Your - sc.exe config wuauserv start=disabled
# becomes like this...
# Start and external process calling sc.exe and pass the arguments to SC.exe
Start-Process -FilePath sc.exe -ArgumentList 'config wuauserv start=disabled'
edited Jan 12 at 1:47
answered Jan 12 at 1:42
postanotepostanote
1,04333
1,04333
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.
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%2f1393065%2fpowershell-not-working-to-disable-windows-update%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
1
Did you run that command in powershell with administrator privilege?
– Biswapriyo
Jan 11 at 8:19
yes powershell is in administrator mode.
– Karan
Jan 11 at 10:14
My batch script for cmd prompt still works on 1809 and latest updates.
– Moab
Jan 11 at 14:18