1
vote
4answers
250 views

Launch Linux Script remotely from Windows

I have an rsync script that runs on one Linux server to synchronize files with another Linux server. Is there a way to launch a script on one of the Linux machines without actually opening an ...
3
votes
3answers
1k views

Why does TERM=xterm have to be set for my script to work correctly when remotely executed?

I'm attempting to automate the installation of a Debian server (debian 6.0 squeeze 64bit). Part of the installation requires the Sun JRE package to be installed. This package has a licence ...
6
votes
4answers
4k views

Is it possible to run a command on windows server from Linux?

I want to restore a sqlserver db backup on remote windows server from linux. I tired "net rpc" but there is nothing for execute a command or script on remote server.
0
votes
4answers
122 views

Remote reboot of windows to knoppix

I am attempting to develop an Auditing application. This audit application will be employed on windows networks. The Audit will need to discover Hardware and software details of all machines ...
2
votes
2answers
3k views

Powershell - Query remote Local Security Policy?

I am looking to remotely query a list of servers, to ensure they are "set up" correctly One of the things I want to check is the Local Security Policy -> User Rights Assignment ->Deny Log on through ...
4
votes
7answers
18k views

Execute program on remote computer using PowerShell

How can I execute a program on a remote machine using powershell?
2
votes
5answers
810 views

Why doesn't my python script keep running when I use &

I have my gameServer.py script running remotely through PuTTy. gameServer.py looks like this: while True : (( listen for packets )) (( send all packets to all clients )) WHEN I execute the ...
1
vote
3answers
1k views

WMI Remote connection objsWbemLocator.ConnectServer

I have an issue when connecting to remote machines using the following: Set objWMIService = objSWbemLocator.ConnectServer _ (sIP, "root\CIMV2", strUser, strPassword, "MS_409", "ntlmdomain:" + ...
1
vote
9answers
1k views

Remote performance monitoring for Solaris and Windows

I have a python framework that I've created to run performance tests in a mixed server environment of Windows, Linux and Solaris. I'm looking for a way to remotely gather performance data for the CPU, ...