0
votes
2answers
57 views
Running a program on a remote machine as part of continuous integration
We use TeamCity, nant and psexec to run a command on a remote machine as part of the release packaging. Everything works fine when I run the nant from the console but when running …
1
vote
1answer
54 views
Remote and automated IIS 7 management from build server - permissions issue
Here's the scenario:
Win2003 Build Server (CCNET)
IIS7 target deployment server
The various MSBuild tasks (Sdc.Tasks, MSBuild Community, MSBuild Extension Pack) for doing this …
0
votes
2answers
61 views
Psexec not outputting to log file in VB script
Hi all,
I have a VB script which needs to run psexec to launch an app called md5 on a remote server. Md5 generates a hash key of a file and takes one parameter - the file path\nam …
0
votes
1answer
149 views
PSEXEC redirect output to local file
I need the correct way to accomplish this via a vbscript.
This works fine from command prompt:
psexec \\99.99.99.99 -u username -p password cmd.exe /c ver > output.txt
From …
1
vote
3answers
419 views
Start And Stop Windows Service remotely using PSEXEC
How to start and and stop a windows service remotely using PSEXEC
Preferable the syntax to write I tried the cmdlet given below
psexec \Server -u Administrator -p Somepassword Se …
0
votes
1answer
240 views
PSEXEC… DTEXEC ERROR 128
I'm using PSEXEC within batch files to execute DTEXEC (SQL SSIS jobs) as part of a scheduling system. What I'm finding is when a bunch of jobs are triggered together (or even close …
2
votes
1answer
112 views
Access is denied - PSEXEC Called from TFS
I'm implementing a continuous integration scenario for a SharePoint deployment. After all features have been build on the build server, I'm attempting to deploy the new features t …
0
votes
2answers
155 views
Using Psexec with Windows Server 2003
I'm trying to run a psexec command to a remote Windows Server 2003 machine. I run the following command:
psexec \machinename perfmon.msc -u machineadmin -p adminpassword -i -s
Th …
0
votes
0answers
282 views
How to install msi on remote machine from msbuild using Psexec?
I have searched all the custom tasks in Extension Pack and Community Tasks and finally found a task called Msi.Istall in SDC Tasks. But the documentation is bad and causes problems …
0
votes
2answers
404 views
Cannot Start /Stop windows service using C# code with PsExec?
Process process = new Process();
ProcessStartInfo psi = new ProcessStartInfo(@"C:/PsExec.exe");
psi.UseShellExecute = false;
psi.RedirectStandardOutput = true;
psi.RedirectStandar …
8
votes
12answers
786 views
Program output lost when passed through PsExec
(This is a question my coworker posted elsewhere, but I thought I'd post it here to see if I could hit a different audience.)
Hello all,
I'm testing the possibility of writing a s …
0
votes
1answer
449 views
Psexec and calling batch files.
I'm going to try and break this down as simple as I can.
There are three computers involved. Local machine (LM), compute node (CN), and data node (DN) will be their names from …
1
vote
0answers
126 views
Psexec 64 bit support
Hi,
Does Psexec - the remote client installation utility support 64-bit machines?
Thanks,
Swaroop
1
vote
1answer
345 views
Using PSEXEC returns no output from the remote task
I am using psexec to run an exe on a server.
The command runs ok, but there is no output on my local console.
This is the command I am using:
psexec.exe \\my-machine ping localho …
0
votes
1answer
137 views
Calling bash from PsExec from SQL with xp_cmdshell
I am trying to call a bash command through a user account with PsExec. Cygwin is being used, and I am trying to run a command from SQL:
exec master..xp_cmdshell 'psexec -u cyg_se …
