-
as seen on Server Fault
- Search for 'Server Fault'
As part of a deployment process I am trying to GAC a series of files. The actual build process occurs on a build server, and I am trying to use psexec to GAC the files on whichever machine has requested the build.
The current line I am trying to execute is:
C:\PsToolspsexec.exe \COMPUTER -u USER…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
Hi,
I use the PSEXEC to start the java process in local machine.
When I run the PSEXEC without any user account it works fine.
c:/psexec java testclass
But when I run with an user account
c:psexec -u user -p password java test
It gives me the below error
PsExec could not start java:
The…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I am trying to control a remote Python script, which reads commands from stdin, via psexec 1.98, but I need to redirect psexec's input since psexec itself will be launched from another program. However, I have no luck making psexec accept redirected input. Is it supposed to work at all?
An example…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've written a WCF service as a wrapper around a C# utility we've written that uses the SysInternals psexec utility to run jobs on a remote system. psexec is invoked from C# with command-line parameters that specify the domain, user and password to use.
All works fine when I invoke the C# utility…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi All,
I'm trying to call a PSExec task from CC.NET and running into some difficulties.
Here's the CC project
<project name="Test">
<tasks>
<exec>
<executable>C:\Utilities\psexec.exe</executable>
<buildArgs>-u [UNAME] -p [PWD] "C:\Utilities\Joel…
>>> More