Questions tagged [remote-execution]

105 questions
1
vote
1 answer

how to check if scheduler backups ran successfully

on each of our remote servers a scheduler task is created that calls an .exe program that shuts down the databases at 10:00:00 everyday (it create database backups)and start it up again at a specific time.now using the delphi application i need to…
Monica
  • 71
  • 1
  • 3
1
vote
1 answer

Alternatives for PsExec which works in standard user

I am using psexec to execute commands on remote server. Here is my command, PsExec.exe" -u user \\server -h run.bat I am entering the password manually. here I am using standard user account due to security issues. When I run the command I am…
IT researcher
  • 3,274
  • 17
  • 79
  • 143
1
vote
1 answer

Remote SSH commands not working in Linux

Regardless of why, I am trying to write a script that will let me send a command to various addresses. There is a shared key for the user, so there is no need for logging in. But this isn't working. So, the following will not…
jasonmclose
  • 1,667
  • 4
  • 22
  • 38
1
vote
1 answer

How to invoke a remote vbs file from local machine?

I have copied a .vbs file to a remote machine which inturn invokes a local application. Please suggest a way to invoke the remote vbs from the local machine. I tried with wmi. I need to have UI
1
vote
1 answer

Intermittent issue with Remote EJB invocation on WAS 7.0

We have a business functionality which is exposed as a Remote EJB. We shared the remote interface with the client. Below is the Remote interface that we shared. public interface EmployeeRemoteEJB { public Output saveEmployee(Input…
Apps
  • 3,284
  • 8
  • 48
  • 75
1
vote
0 answers

Remotely Install an Application from a FileShare using WMI

So far my code will start a process (Install an application) with command line arguments on a target computer and wait for the process to finish, IF I copy the install files to that computer. My goal now is to: Start a process with command line…
HiTech
  • 913
  • 1
  • 16
  • 34
1
vote
1 answer

Scenarios of using RMIClassLoader and URLClassLoader?

Could anyone explain the general purpose of these two loaders? And what are the major differences between them? In what typical scenarios are they used?
JackWM
  • 10,085
  • 22
  • 65
  • 92
1
vote
1 answer

Run a remote python script from ASP.Net

I have a python script on a linux server that I can SSH into and I want to run the script on the linux server( and pass it parameters entered by the user) and get the output on an ASP.net webpage running on IIS. How would I be able to do…
Jaelebi
  • 5,879
  • 8
  • 32
  • 34
1
vote
3 answers

Using check_by_ssh in Nagios Yielding Strange Behavior (and Remote Execution Failure)

I'm new to Nagios, and I've been trying to get Nagios to handle a few simple check_by_ssh commands. I'm at the point where I'm successfully able to run the command from the command line like so: #/usr/local/nagios/libexec/check_by_ssh -H…
Tepoz Topilli
  • 11
  • 1
  • 2
0
votes
3 answers

How can I use VB.NET to execute a batch file on another computer?

In vb.net 2008 I want to execute a batch file that resides on another computer. There is no error, but nothing happens. Here is the code: Dim pStart As New System.Diagnostics.Process Dim startInfo As New…
user109285
  • 3
  • 1
  • 1
  • 4
0
votes
1 answer

How to get private IPs of all instances in one remote-exec, terraform, aws

I create with terraform 2 types of EC2 instances; the count of instances is always different. I want to get private IP's of all instances to one of the instances to a file. For the moment I get IP's of the first instance created, but I don`t get the…
0
votes
1 answer

How to run node app inside remote-exec using Terraform

I want to automatically run a node app by configuring its steps inside the remote-exec of my Terraform script. However, when I run "terraform apply -auto-approve" I get an "Still creating... [10m21s elapsed]" message until it crashes. This is the…
0
votes
0 answers

Remote-exec not running on my Terraform code

I have this main.tf below. It creates the VMs fine with all the correct stuff. But for some reason it doesn't run the provisioner file and remote-exec section. I copied the code from here. I'm trying to setup a VM in Proxmox with 2 disks, and create…
GodAtum
  • 171
  • 2
  • 3
  • 11
0
votes
0 answers

How can I change Promethean Android app settings from Radix MDM?

I have two apps installed on a Promethean ActivPanel Android 8(26) arm64-v8a. There's two settings that I want to flip, but don't want to hand touch each of my 60ish panels. I'd like to send some sort of code or profile to do this for me. I have…
Damien Austin
  • 23
  • 1
  • 4
0
votes
1 answer

Execution of python code on remote machines

I'm building a testing suite using Python Pytest library, my challenge is that I want to run the test on remote windows machines without the overhead of deploying my python code on those remote machines. Current Solution: Using Jenkins I'm cloning…
Bored002
  • 353
  • 6
  • 18