Run a program on remote Windows system and get its stdout/stderr












0















The task: execute program/script on remote Windows system, and get its stdout/stderr.



Apart from setting up SSHd on remote system (say, Cygwin openssh server) and running ssh to execute commands/get output, less complex means would be preferred (in most cases, it is not possible to request a running SSH daemon on Windows).



I tried using PsExec, but that piece of software behaves unpredictably:




  • when I run remote simple command like "C:WindowsSystem32cmd.exe /c dir c:", it works fine; when I try running more complex commands, it can fail with a message like "Unable to start service"

  • when I run PsExec command from cmd.exe, it works; when I try to run it via Invoke-Command from PS, it returns a binary garbage looking like "═хтхЁэ√щ фхёъЁшяЄюЁ"


Systems I try running script on: Windows 8, Window 10. Remote systems are all at least Windows 8 or newer (and corresponding Windows Server versions).










share|improve this question























  • What is an example for "more complex"? If you are already running PowerShell why not use PowerShell remoting? What does your command for Invoke-Command look like? Depending on what you're actually trying to run not every option might work.

    – Seth
    Jan 14 at 10:52
















0















The task: execute program/script on remote Windows system, and get its stdout/stderr.



Apart from setting up SSHd on remote system (say, Cygwin openssh server) and running ssh to execute commands/get output, less complex means would be preferred (in most cases, it is not possible to request a running SSH daemon on Windows).



I tried using PsExec, but that piece of software behaves unpredictably:




  • when I run remote simple command like "C:WindowsSystem32cmd.exe /c dir c:", it works fine; when I try running more complex commands, it can fail with a message like "Unable to start service"

  • when I run PsExec command from cmd.exe, it works; when I try to run it via Invoke-Command from PS, it returns a binary garbage looking like "═хтхЁэ√щ фхёъЁшяЄюЁ"


Systems I try running script on: Windows 8, Window 10. Remote systems are all at least Windows 8 or newer (and corresponding Windows Server versions).










share|improve this question























  • What is an example for "more complex"? If you are already running PowerShell why not use PowerShell remoting? What does your command for Invoke-Command look like? Depending on what you're actually trying to run not every option might work.

    – Seth
    Jan 14 at 10:52














0












0








0








The task: execute program/script on remote Windows system, and get its stdout/stderr.



Apart from setting up SSHd on remote system (say, Cygwin openssh server) and running ssh to execute commands/get output, less complex means would be preferred (in most cases, it is not possible to request a running SSH daemon on Windows).



I tried using PsExec, but that piece of software behaves unpredictably:




  • when I run remote simple command like "C:WindowsSystem32cmd.exe /c dir c:", it works fine; when I try running more complex commands, it can fail with a message like "Unable to start service"

  • when I run PsExec command from cmd.exe, it works; when I try to run it via Invoke-Command from PS, it returns a binary garbage looking like "═хтхЁэ√щ фхёъЁшяЄюЁ"


Systems I try running script on: Windows 8, Window 10. Remote systems are all at least Windows 8 or newer (and corresponding Windows Server versions).










share|improve this question














The task: execute program/script on remote Windows system, and get its stdout/stderr.



Apart from setting up SSHd on remote system (say, Cygwin openssh server) and running ssh to execute commands/get output, less complex means would be preferred (in most cases, it is not possible to request a running SSH daemon on Windows).



I tried using PsExec, but that piece of software behaves unpredictably:




  • when I run remote simple command like "C:WindowsSystem32cmd.exe /c dir c:", it works fine; when I try running more complex commands, it can fail with a message like "Unable to start service"

  • when I run PsExec command from cmd.exe, it works; when I try to run it via Invoke-Command from PS, it returns a binary garbage looking like "═хтхЁэ√щ фхёъЁшяЄюЁ"


Systems I try running script on: Windows 8, Window 10. Remote systems are all at least Windows 8 or newer (and corresponding Windows Server versions).







windows remote






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 14 at 9:14









Konstantin BoyandinKonstantin Boyandin

1158




1158













  • What is an example for "more complex"? If you are already running PowerShell why not use PowerShell remoting? What does your command for Invoke-Command look like? Depending on what you're actually trying to run not every option might work.

    – Seth
    Jan 14 at 10:52



















  • What is an example for "more complex"? If you are already running PowerShell why not use PowerShell remoting? What does your command for Invoke-Command look like? Depending on what you're actually trying to run not every option might work.

    – Seth
    Jan 14 at 10:52

















What is an example for "more complex"? If you are already running PowerShell why not use PowerShell remoting? What does your command for Invoke-Command look like? Depending on what you're actually trying to run not every option might work.

– Seth
Jan 14 at 10:52





What is an example for "more complex"? If you are already running PowerShell why not use PowerShell remoting? What does your command for Invoke-Command look like? Depending on what you're actually trying to run not every option might work.

– Seth
Jan 14 at 10:52










0






active

oldest

votes











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%2f1394032%2frun-a-program-on-remote-windows-system-and-get-its-stdout-stderr%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















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%2f1394032%2frun-a-program-on-remote-windows-system-and-get-its-stdout-stderr%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

flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

Mangá

 ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕