Windows 10 PsExec localhost The 2019 Stack Overflow Developer Survey Results Are InPSExec...

Are there any other methods to apply to solving simultaneous equations?

Are spiders unable to hurt humans, especially very small spiders?

Pokemon Turn Based battle (Python)

What do the Banks children have against barley water?

What is the accessibility of a package's `Private` context variables?

How to deal with fear of taking dependencies

What is the meaning of Triage in Cybersec world?

Output the Arecibo Message

Apparent duplicates between Haynes service instructions and MOT

How to notate time signature switching consistently every measure

Have you ever entered Singapore using a different passport or name?

Resizing object distorts it (Illustrator CC 2018)

Lightning Grid - Columns and Rows?

What are the motivations for publishing new editions of an existing textbook, beyond new discoveries in a field?

Worn-tile Scrabble

Why did Acorn's A3000 have red function keys?

Why do some words that are not inflected have an umlaut?

If a Druid sees an animal’s corpse, can they wild shape into that animal?

Loose spokes after only a few rides

Is a "Democratic" Oligarchy-Style System Possible?

Why isn't airport relocation done gradually?

How come people say “Would of”?

How to save as into a customized destination on macOS?

Should I use my personal e-mail address, or my workplace one, when registering to external websites for work purposes?



Windows 10 PsExec localhost



The 2019 Stack Overflow Developer Survey Results Are InPSExec cannot find explorer.exe?PSExec can not connect from Windows XP to Windows 7Windows 7: Script to automatically log into network account using PsExecPsExec: Access is deniedPSExec “cannot find the file specified” on local machinePsExec: The user name or password is incorrectpsexec: “Access is denied” (Win10 =>XP)PSEXEC OpenSCManager fails when execute command for workgroup from domainpsexec could not start psexec service on <server>. Error in the remote procedure call was cancelledUse PSEXEC to connect to a computer using Elevated Creds, but keep current user





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







1















The following command generally works fine on Windows 7 and Windows 10:



psexec \machine -u username -p password -h -c -f script.bat


However, on Windows 10 when 'machine' is the localhost, I receive the error below:



Could not start PSEXESVC on localhost:
Access is denied.


The error message goes away if I run the command at an elevated prompt. Is there anyway to avoid this? What specifically is causing the issue on the local machine on Windows 10?










share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • This is due to the differences between Windows 10 and Windows 7, Windows 10 elevates a process by implicit request from a user, Windows 7 didn't require that

    – Ramhound
    Jul 15 '16 at 11:37


















1















The following command generally works fine on Windows 7 and Windows 10:



psexec \machine -u username -p password -h -c -f script.bat


However, on Windows 10 when 'machine' is the localhost, I receive the error below:



Could not start PSEXESVC on localhost:
Access is denied.


The error message goes away if I run the command at an elevated prompt. Is there anyway to avoid this? What specifically is causing the issue on the local machine on Windows 10?










share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • This is due to the differences between Windows 10 and Windows 7, Windows 10 elevates a process by implicit request from a user, Windows 7 didn't require that

    – Ramhound
    Jul 15 '16 at 11:37














1












1








1








The following command generally works fine on Windows 7 and Windows 10:



psexec \machine -u username -p password -h -c -f script.bat


However, on Windows 10 when 'machine' is the localhost, I receive the error below:



Could not start PSEXESVC on localhost:
Access is denied.


The error message goes away if I run the command at an elevated prompt. Is there anyway to avoid this? What specifically is causing the issue on the local machine on Windows 10?










share|improve this question
















The following command generally works fine on Windows 7 and Windows 10:



psexec \machine -u username -p password -h -c -f script.bat


However, on Windows 10 when 'machine' is the localhost, I receive the error below:



Could not start PSEXESVC on localhost:
Access is denied.


The error message goes away if I run the command at an elevated prompt. Is there anyway to avoid this? What specifically is causing the issue on the local machine on Windows 10?







windows-10 psexec






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 15 '16 at 11:02







Franzl

















asked Jul 15 '16 at 9:29









FranzlFranzl

11613




11613





bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • This is due to the differences between Windows 10 and Windows 7, Windows 10 elevates a process by implicit request from a user, Windows 7 didn't require that

    – Ramhound
    Jul 15 '16 at 11:37



















  • This is due to the differences between Windows 10 and Windows 7, Windows 10 elevates a process by implicit request from a user, Windows 7 didn't require that

    – Ramhound
    Jul 15 '16 at 11:37

















This is due to the differences between Windows 10 and Windows 7, Windows 10 elevates a process by implicit request from a user, Windows 7 didn't require that

– Ramhound
Jul 15 '16 at 11:37





This is due to the differences between Windows 10 and Windows 7, Windows 10 elevates a process by implicit request from a user, Windows 7 didn't require that

– Ramhound
Jul 15 '16 at 11:37










1 Answer
1






active

oldest

votes


















0














psexec \machine -u USERNAMR -p PASSWORD -h -c -f script.bat


or just omit -p PASSWORD to securely prompt for password:



psexec \machine -u USERNAMR -h -c -f script.bat


-h is to "run with the account's elevated token, if available". So, if you don't run your CMD with elevated privileges, no elevated token is available! There's nothing wrong with Windows. It needs either an elevated token, or elevated credentials to gain that token.






share|improve this answer


























  • On the first point, I was already entering the password, so I've amended my question to reflect that. On your second point, why does Windows not require an elevated token when running the script on a remote machine?

    – Franzl
    Jul 15 '16 at 11:05











  • What version of Windows, the command should require a UAC prompt on any version of Windows greater than 8.

    – Ramhound
    Jul 15 '16 at 11:38











  • The local and target machines are both running Windows 10. When running psexec on the local machine, from a non-elevated prompt, script.bat runs on the target machine elevated. However, this doesn't happen if the local and target machine are the same. The user is a domain account in the Administrators group on both machines.

    – Franzl
    Jul 15 '16 at 11:57











  • You are right. My guess is it needs to access \localhostadmin$ and that's an administrative share. so, because it's a local address, it tries to use the current token, instead the credentials you provided.

    – NetwOrchestration
    Jul 15 '16 at 12:38













  • @Ramhound I just tried on a system with disabled UAC and LocalAccountTokenFilterPolicy set to disabled (accesible administrative share from network) and still no luck! It's something sysinternals should fix.

    – NetwOrchestration
    Jul 15 '16 at 12:45












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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1101168%2fwindows-10-psexec-localhost%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









0














psexec \machine -u USERNAMR -p PASSWORD -h -c -f script.bat


or just omit -p PASSWORD to securely prompt for password:



psexec \machine -u USERNAMR -h -c -f script.bat


-h is to "run with the account's elevated token, if available". So, if you don't run your CMD with elevated privileges, no elevated token is available! There's nothing wrong with Windows. It needs either an elevated token, or elevated credentials to gain that token.






share|improve this answer


























  • On the first point, I was already entering the password, so I've amended my question to reflect that. On your second point, why does Windows not require an elevated token when running the script on a remote machine?

    – Franzl
    Jul 15 '16 at 11:05











  • What version of Windows, the command should require a UAC prompt on any version of Windows greater than 8.

    – Ramhound
    Jul 15 '16 at 11:38











  • The local and target machines are both running Windows 10. When running psexec on the local machine, from a non-elevated prompt, script.bat runs on the target machine elevated. However, this doesn't happen if the local and target machine are the same. The user is a domain account in the Administrators group on both machines.

    – Franzl
    Jul 15 '16 at 11:57











  • You are right. My guess is it needs to access \localhostadmin$ and that's an administrative share. so, because it's a local address, it tries to use the current token, instead the credentials you provided.

    – NetwOrchestration
    Jul 15 '16 at 12:38













  • @Ramhound I just tried on a system with disabled UAC and LocalAccountTokenFilterPolicy set to disabled (accesible administrative share from network) and still no luck! It's something sysinternals should fix.

    – NetwOrchestration
    Jul 15 '16 at 12:45
















0














psexec \machine -u USERNAMR -p PASSWORD -h -c -f script.bat


or just omit -p PASSWORD to securely prompt for password:



psexec \machine -u USERNAMR -h -c -f script.bat


-h is to "run with the account's elevated token, if available". So, if you don't run your CMD with elevated privileges, no elevated token is available! There's nothing wrong with Windows. It needs either an elevated token, or elevated credentials to gain that token.






share|improve this answer


























  • On the first point, I was already entering the password, so I've amended my question to reflect that. On your second point, why does Windows not require an elevated token when running the script on a remote machine?

    – Franzl
    Jul 15 '16 at 11:05











  • What version of Windows, the command should require a UAC prompt on any version of Windows greater than 8.

    – Ramhound
    Jul 15 '16 at 11:38











  • The local and target machines are both running Windows 10. When running psexec on the local machine, from a non-elevated prompt, script.bat runs on the target machine elevated. However, this doesn't happen if the local and target machine are the same. The user is a domain account in the Administrators group on both machines.

    – Franzl
    Jul 15 '16 at 11:57











  • You are right. My guess is it needs to access \localhostadmin$ and that's an administrative share. so, because it's a local address, it tries to use the current token, instead the credentials you provided.

    – NetwOrchestration
    Jul 15 '16 at 12:38













  • @Ramhound I just tried on a system with disabled UAC and LocalAccountTokenFilterPolicy set to disabled (accesible administrative share from network) and still no luck! It's something sysinternals should fix.

    – NetwOrchestration
    Jul 15 '16 at 12:45














0












0








0







psexec \machine -u USERNAMR -p PASSWORD -h -c -f script.bat


or just omit -p PASSWORD to securely prompt for password:



psexec \machine -u USERNAMR -h -c -f script.bat


-h is to "run with the account's elevated token, if available". So, if you don't run your CMD with elevated privileges, no elevated token is available! There's nothing wrong with Windows. It needs either an elevated token, or elevated credentials to gain that token.






share|improve this answer















psexec \machine -u USERNAMR -p PASSWORD -h -c -f script.bat


or just omit -p PASSWORD to securely prompt for password:



psexec \machine -u USERNAMR -h -c -f script.bat


-h is to "run with the account's elevated token, if available". So, if you don't run your CMD with elevated privileges, no elevated token is available! There's nothing wrong with Windows. It needs either an elevated token, or elevated credentials to gain that token.







share|improve this answer














share|improve this answer



share|improve this answer








edited Jul 15 '16 at 10:50

























answered Jul 15 '16 at 10:45









NetwOrchestrationNetwOrchestration

2,04211127




2,04211127













  • On the first point, I was already entering the password, so I've amended my question to reflect that. On your second point, why does Windows not require an elevated token when running the script on a remote machine?

    – Franzl
    Jul 15 '16 at 11:05











  • What version of Windows, the command should require a UAC prompt on any version of Windows greater than 8.

    – Ramhound
    Jul 15 '16 at 11:38











  • The local and target machines are both running Windows 10. When running psexec on the local machine, from a non-elevated prompt, script.bat runs on the target machine elevated. However, this doesn't happen if the local and target machine are the same. The user is a domain account in the Administrators group on both machines.

    – Franzl
    Jul 15 '16 at 11:57











  • You are right. My guess is it needs to access \localhostadmin$ and that's an administrative share. so, because it's a local address, it tries to use the current token, instead the credentials you provided.

    – NetwOrchestration
    Jul 15 '16 at 12:38













  • @Ramhound I just tried on a system with disabled UAC and LocalAccountTokenFilterPolicy set to disabled (accesible administrative share from network) and still no luck! It's something sysinternals should fix.

    – NetwOrchestration
    Jul 15 '16 at 12:45



















  • On the first point, I was already entering the password, so I've amended my question to reflect that. On your second point, why does Windows not require an elevated token when running the script on a remote machine?

    – Franzl
    Jul 15 '16 at 11:05











  • What version of Windows, the command should require a UAC prompt on any version of Windows greater than 8.

    – Ramhound
    Jul 15 '16 at 11:38











  • The local and target machines are both running Windows 10. When running psexec on the local machine, from a non-elevated prompt, script.bat runs on the target machine elevated. However, this doesn't happen if the local and target machine are the same. The user is a domain account in the Administrators group on both machines.

    – Franzl
    Jul 15 '16 at 11:57











  • You are right. My guess is it needs to access \localhostadmin$ and that's an administrative share. so, because it's a local address, it tries to use the current token, instead the credentials you provided.

    – NetwOrchestration
    Jul 15 '16 at 12:38













  • @Ramhound I just tried on a system with disabled UAC and LocalAccountTokenFilterPolicy set to disabled (accesible administrative share from network) and still no luck! It's something sysinternals should fix.

    – NetwOrchestration
    Jul 15 '16 at 12:45

















On the first point, I was already entering the password, so I've amended my question to reflect that. On your second point, why does Windows not require an elevated token when running the script on a remote machine?

– Franzl
Jul 15 '16 at 11:05





On the first point, I was already entering the password, so I've amended my question to reflect that. On your second point, why does Windows not require an elevated token when running the script on a remote machine?

– Franzl
Jul 15 '16 at 11:05













What version of Windows, the command should require a UAC prompt on any version of Windows greater than 8.

– Ramhound
Jul 15 '16 at 11:38





What version of Windows, the command should require a UAC prompt on any version of Windows greater than 8.

– Ramhound
Jul 15 '16 at 11:38













The local and target machines are both running Windows 10. When running psexec on the local machine, from a non-elevated prompt, script.bat runs on the target machine elevated. However, this doesn't happen if the local and target machine are the same. The user is a domain account in the Administrators group on both machines.

– Franzl
Jul 15 '16 at 11:57





The local and target machines are both running Windows 10. When running psexec on the local machine, from a non-elevated prompt, script.bat runs on the target machine elevated. However, this doesn't happen if the local and target machine are the same. The user is a domain account in the Administrators group on both machines.

– Franzl
Jul 15 '16 at 11:57













You are right. My guess is it needs to access \localhostadmin$ and that's an administrative share. so, because it's a local address, it tries to use the current token, instead the credentials you provided.

– NetwOrchestration
Jul 15 '16 at 12:38







You are right. My guess is it needs to access \localhostadmin$ and that's an administrative share. so, because it's a local address, it tries to use the current token, instead the credentials you provided.

– NetwOrchestration
Jul 15 '16 at 12:38















@Ramhound I just tried on a system with disabled UAC and LocalAccountTokenFilterPolicy set to disabled (accesible administrative share from network) and still no luck! It's something sysinternals should fix.

– NetwOrchestration
Jul 15 '16 at 12:45





@Ramhound I just tried on a system with disabled UAC and LocalAccountTokenFilterPolicy set to disabled (accesible administrative share from network) and still no luck! It's something sysinternals should fix.

– NetwOrchestration
Jul 15 '16 at 12:45


















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1101168%2fwindows-10-psexec-localhost%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...