Questions tagged [remote-process]

38 questions
1
vote
1 answer

C#: Restore Window executing same exe

I execute my Program, which later displays a Form. Once I minimize it, it gets shrinked into the systemtray. Doubleclicking my systemtray-icon does: Show(); Activate(); WindowState = FormWindowState.Normal; Which shows the Form again.…
Joel
  • 1,725
  • 3
  • 16
  • 34
1
vote
1 answer

Start Application on Remote machine and keep it running and powershell script should not wait for process to finish

There is an application on remote machine say Vesper.exe. What I am doing right now is that I remotely login to machine using powershell session. Requirement: Need to start an application on remote machine and application should be keep running…
1
vote
1 answer

Set the working folder for a remote process using WMI

I'm using this article to start a process on a remote machine using WMI. How can I control the working directory that process will start in? (No need to redirect me to psexec, I'm getting an error from it, currently trying the WMI approach).
ripper234
  • 222,824
  • 274
  • 634
  • 905
1
vote
1 answer

vbscript .run show output

I can run successfully test.vbs with syntax: Dim WshShell Set WshShell = CreateObject("WScript.Shell") sEXE = """\\uncpath\file.exe""" with CreateObject("WScript.Shell") .Run sEXE & " ", 1, true ' Wait for finish or False to not wait end…
Benjamin Jones
  • 987
  • 4
  • 22
  • 50
1
vote
2 answers

%syslput not working in rsubmit SAS

----------------------Implementing use of rsubmit & accessing values passed to it---------------------------- I am trying to write a code which will create different remote session, also it'll pass data set values to particular rsubmit blocks with…
mac_21
  • 113
  • 9
1
vote
0 answers

How can the client display the server's progress during a remote DCOM call?

I have an multi tier application witch use a TDcomConnection on the client side and a TRemoteDataModule on the Server side. I have published a process server, which reads a TSQLQuery. When I call this procedure from the Client application through…
1
vote
1 answer

Remote Proc fails to load FreeRTOS Elf

I am using this port of FreeRTOS and I am loading it onto the Cortex-M3 within an OMAP4430. This works fine using the remote proc framework and I am able to use RPMsg to communicate with it. Sometimes, however, rproc fails to load the elf and gives…
Henry
  • 13
  • 1
  • 5
1
vote
0 answers

how to load a dll into remote process in which kernel32.dll not yet loaded

i want to load my dll into address space of remote process in which kernel32.dll is not yet loaded . so to load my dll into remote process i need LoadLibrary function but wchich is present in kernel32.dll . so please suggest me how to achieve the…
nagaradderKantesh
  • 1,672
  • 4
  • 18
  • 30
1
vote
1 answer

Autosys: KILLJOB event leaves orphan processes

I am running a variety of processes on a Windows server ( a mix of batch files, java, perl, csharp scripts/applications). These processes are launched using Autosys. The autosys agent on Windows always prefixes the command I provide in the job…
0
votes
0 answers

Run process in remote machine using WMI failed

I am an administrator and want to delegate helpdesk stuff to do some applications silent installs which requires admin. rights, I tried below code and always gets error message 'RPC server is unavailable', I cannot figure out what's wrong with my…
Ahmed Nazmy
  • 391
  • 1
  • 8
  • 20
0
votes
2 answers

C, [Remote procedure call] define and call functions remotely

I'm writing a firmware in which I would like to define functions "command" in multiple .c files, and automatically insert them in a list of function pointers. Subsequently from the serial port I want to recall one of these commands present in the…
0
votes
0 answers

write error: Invalid argument using linux remoteproc on BeagleBone Black

I have been trying to further understand the Sitara Am335x PRUs and I tried to follow the TI labs on how to get started with Programmable real-time units on the BeagleBone Black and but I encountred this problem that I couldn't overcome; sudo -i …
0
votes
1 answer

Get process Id psexec using PSCommands

A follow on from Get Process ID after starting psexec I would like to know how the answer to the question can be obtained using PSCommand and PowerShell. I am out my depth and would like some help. Here's what I initially thought to translating the…
Fox Forge
  • 57
  • 1
  • 5
0
votes
0 answers

Spring batch partitioning example

I am new to Spring Batch. I have a working example of spring batch without remote capability. Though I understood the concepts of remote partitioning and chunking, I didnt find any example which explains step by step. Kindly suggest links or…
amarzeet
  • 63
  • 2
  • 11
0
votes
3 answers

C# - WMI InvalidOperationException when trying to run a script on a remote machine

I'm trying to execute a script on a remote machine in the same domain, with the same user account logged on to both the machines. Note the script is also stored on yet another machine. Code string prop = propertyName object[] cmd = {…
damienc88
  • 1,957
  • 19
  • 34