Remote access is the connection to a data processing system from a remote location.

learn more… | top users | synonyms

6
votes
2answers
25k views

Copy file to remote computer using remote admin credentials

I am using C#... I need the ability to copy a set of files to about 500 unique computers. I have successfully been able to use the LogonUser() method to impersonate a domain account that has the ...
5
votes
1answer
4k views

How do I pass credentials to a machine so I can use Microsoft.Win32.RegistryKey.OpenRemoteBaseKey() on it?

This .NET API works OK if I'm trying to open the Registry in a machine that's in the same domain as I am (and my logged-on user has admin rights on the target machine). It gets tricky if it's an ...
9
votes
4answers
2k views

How to expand environment variables remotely with .NET?

I need a way to expand environment variable on a remote machine. Suppose I have a path to a folder %appdata%\MyApp\Plugins or %ProgramFiles%\MyCompany\MyApp\Plugins and I want to list files in that ...
2
votes
3answers
3k views

Accessing a stateless EJB from another instance of Glassfish

there is an issue that troubles me and I cannot find any uniform way to solve it around the internet. I am developing an enterprise application using Java EE, Glassfish and Netbeans. I have two ...
3
votes
2answers
2k views

start remote process within the context

I am wondering how to start process remotely within the users context like he started it. Let me explain. I know how to start process remotely, so for example I want to start notepad: ...
7
votes
2answers
7k views

Get current user's credentials object in Powershell without prompting

I have a Powershell script that is going to be run through an automation tool against multiple servers. It works fine on Windows machines, as the remote calls use the tool's service account without ...
1
vote
3answers
2k views

Check status of services that run in a remote computer using C#

I'm using the following code. ServiceController MyController = new ServiceController(); MyController.MachineName = server_txt.Text.Trim(); MyController.ServiceName = "Service1"; string msg = ...
5
votes
3answers
838 views

How to get permissions for using System.Diagnostics.Process.GetProcess(string)?

I'm using Microsoft Visual Studio to make a simple remote task manager for experience purposes. I want to use Process.GetProcesses(string); but there is an access denied exception that won't allow ...
7
votes
2answers
10k views

How to remotely control a Windows Service with ServiceController?

I'm trying to control Windows Services that are installed in a remote computer. I'm using the ServiceController class. I have this: ServiceController svc = new ServiceController("MyWindowsService", ...
2
votes
3answers
6k views

Connecting a remote JMS client to GlassFish 3

I am trying to connect to GlassFish 3's JMS service from a standalone remote client. However I am getting a java.lang.ClassNotFoundException: com.sun.messaging.jms.ra.ResourceAdapter. Any ideas on how ...
1
vote
1answer
5k views

Remote mySQL connection throws “cannot connect to MySQL 4.1+ using the old insecure authentication” error from XAMPP

I'm running a local copy of WordPress on XAMPP/WinXP for development, but would like to maintain a connection to the remote database. I keep getting "Error establishing database connection" no matter ...
0
votes
0answers
61 views

How to remotely access a LAN network (embedded) device without port forwarding? [closed]

I've looked around SO and haven't found exactly the answer I'm looking for, so please forgive me if this is a duplicate. If so, please direct me to the answer. Thanks. I've got an embedded ...
0
votes
0answers
394 views

can i connect to a remote SQLCe database?

We've got an SQL Ce database on a remote machine and we're trying to get a reporting system (using custom LINQ queries) via c# to connect to the database in shared read mode. At this point we're ...
0
votes
2answers
407 views

Is client LocalSystem (SYSTEM) identified by target/server machine? and in which context?

[1] tells: "When you configure to use a particular account as the process identity, ASP.NET attempts to delegate that account. If it is a local account that is identical (including password) to a ...
0
votes
1answer
402 views

Does access to server resources require client process to login to server machine?

Reposting my unanswered in technet.microsoft question? MSDN "ASP.NET Delegation" article tells: 1) "When you configure to use a particular account as the process identity, ASP.NET attempts to ...
7
votes
8answers
13k views

Text editor for editing files over ssh

I can't find any free programmer-oriented text editor that would run on windows and would edit remote files over ssh(sfpt). Any suggestions?
6
votes
4answers
14k views

Developing PHP with Eclipse on a remote server (FTP) on Windows

I'm a real klutz when it comes to Eclipse, but I'm also poor, which is why it is the option I've chosen. I've installed Eclipse 3.5, Eclipse for PHP, and RSE. I've actually gotten to a point where I ...
2
votes
2answers
3k views

Connecting to a remote database through CodeIgniter

Unable to connect to your database server using the provided settings. I've been having difficulty connecting my application to my remote database. I'm receiving the error shown above when I run ...
2
votes
2answers
562 views

Using a single emacs instance from multiple (virtual) machines

I love emacsclient. It allows me to use a single Emacs frame for all my editing, also when programs want to open an editor (i.e. export EDITOR=emacsclient). I'd like to have it work like this with ...
1
vote
1answer
946 views

How can I run an application on a remote machine by ssh?

How can I run an application on a remote machine via ssh? I tried using JSCH, this way: Properties props = new Properties(); props.put("StrictHostKeyChecking", "no"); String host = ...
13
votes
5answers
13k views

Accessing ASP.NET Development Server from another pc on the network

I would like to test my web app in other browsers. I have installed Virtual PC to do just that. the ASP.NET development server does not allow remote connections so the virtual pc (another computer on ...
8
votes
15answers
3k views

Developing via Remote Desktop

Has anybody any successful remarks about having a team working via Remote Desktop? In many workplaces, we put end users via Citrix and the applications on a central, powerful server. Sometimes the ...
6
votes
1answer
4k views

Eclipse Tomcat7 Server Doesnt support Remote Host

My Problem is: When I try to add my Tomcat7 to Eclipse EE as a server, I get an error message that says: "The currently selected server type does not support remote hosts" Does anyone know how ...
2
votes
4answers
11k views

Connect to MySQL on AWS from local machine

I am trying to set up a dev environment on my local machine that accesses a MySQL DB on AWS, but I keep getting a "Can't connect" message. mysql_connect('xxx.xxx.xxx.xxx:3306', 'USERNAME', ...
1
vote
1answer
8k views

Using advapi32.dll:LogonUserA() to impersonate a remote machine's local user

I need to be able to run RegLoadKey() on a remote machine, and it may be that my machine and the remote machine are not in the same domain. If they are, the below code works OK and I can impersonate a ...
0
votes
1answer
4k views

Logon failure: unknown user name or bad password? But I am using the right username and password

I want to connect xml file in remote server. I wrote my code like this: string XMLPATH = ...
5
votes
2answers
944 views

Can I run matlab on Windows with UI, just that the code runs on remote server?

Hey, I am using my laptop to run MATLAB and it's very convenient but SLOW. We have strong servers that run MATLAB but it's more convenient for me to run the application with UI on my laptop (as ...
3
votes
2answers
11k views

Unable to access an instance of SQL Server 2008 R2 remotely

A very mysterious problem coming up :P I have a server configured with a static IP. I have installed SQL Server 2008 R2 with additional instance (ITAPP). Now When I use the IP to access the SQL ...
3
votes
2answers
4k views

how to connect remote windows machine by java?

I want to connect to a remote windows desktop from a local machine with a Java program. I have to check the disk space and several other services in the remote machine.
3
votes
3answers
2k views

I need to read a remote file with logs from a tomcat

I need to read a remote file with logs from a tomcat What is the most convenient way to do it if I have ssh access to the log folder ?
2
votes
2answers
223 views

I can't connect remotely to mysql database [closed]

I can connect to a mysql database from my server. I use the following code to do that: <?php $con=mysqli_connect("localhost","username","userpass","dbname"); if (mysqli_connect_errno($con)) { ...
2
votes
2answers
15k views

Unable to connect to SQL Server instance remotely

I’m trying to access the SQL Server instance on my VPS from SQL Server Management Studio on my local machine. It’s not working (the error I’m getting is: “A network-related or instance-specific ...
2
votes
4answers
601 views

Reading remote file size using filesize

I read the manual that filesize() is able to calculate file size from remote file. However, when I try to do that with snippet below. I got error PHP Warning: filesize(): stat failed for ...
2
votes
3answers
941 views

Remote Process Execution

My scenerio is connection to remote machine with C#.Net, and listing all processes with that remote computer. I can kill a process, or start a new process at remote. The problem is, when I execute a ...
2
votes
7answers
435 views

Getting Jquery from google

There are some tutorials which suggest to use jquery path which is from google eg: <script type="text/javascript" ...
1
vote
1answer
2k views

Monitoring remote system using Jconsole

I am connecting to remote Unix system using putty and .ppk key file. Now i want to monitor this remote unix system using Jconsole. On remote system jmx port is enabled on 8080. I have its ip address ...
1
vote
2answers
83 views

How to change clients' site dynamically?

So, going from the discussion here where I was soundly rebuked and for good reason. I want to give clients unique code snip-its that allow me to change a banner ad without requiring them to FTP ...
1
vote
5answers
474 views

How to grab code from another website (that I control)?

I want to enter a line of php into my site and have it echo out code that is to be entered on my site. Essentially I am controlling a part of a clients' site and it is more convenient for all involved ...
1
vote
3answers
1k views

How to check programmatically the OS of remote host?

I need to check if remote host is Windows or Unix/Linux. I can't assume that it has web server configured. All I can do is to try to connect to several TCP or UDP services. Which TCP services (TCP ...
1
vote
3answers
950 views

How to upload files and store them in a server local path when MS SQL SERVER allows remote connections?

I am developing a win32 windows application with Delphi and MS SQL Server. it works fine in LAN but I am trying to add the support for SQL Server remote connections (= working with a DB that can be ...
0
votes
2answers
38 views

Connecting Clients machine to MySQL Server machine

I've two machine. Machine 1 (Server) : MySQL Server installed on it. Machine 2 (Client) : MySQL Server not installed on it. I would like connect from Machine 2 (Client) to MySQL Server on Machine ...
0
votes
0answers
42 views

Is there a way for a C or C++ application to connect to remote JVM via JMX? [closed]

I would like to know if is a way to connect a C or C++ application to a remote JVM via JMX? Best regards, SK
0
votes
2answers
79 views

How to remotely access a LAN network (embedded) device without port forwarding? [duplicate]

I've looked around SO and haven't found exactly the answer I'm looking for, so please forgive me if this is a duplicate. If so, please direct me to the answer. Thanks. I've got an embedded ...
0
votes
2answers
2k views

MySQL remote connection fails with “unknown authentication method”

I am trying to remotely connect to MySQL server online from my local machine, but I am getting the following error: Warning: PDO::__construct(): The server requested authentication method unknown to ...
0
votes
1answer
2k views

Remote access to windows 7 command prompt

I would like to gain access to a remote windows machine's command prompt from my mac, and in specific from the mac's terminal, the windows machine does not have remote desktop connection at as it is a ...
0
votes
0answers
34 views

Ant, get directiores names from remote machine [duplicate]

Possible Duplicate: Ant, download fileset from remote machine How to get folder names from specified directory in remote machine using ant?
0
votes
2answers
489 views

TerminalServicesManager().CurrentSession.ClientName

I am trying to figure out what clients are connected to my machine using remote desktop. I read about Cassia and the Cassia.TerminalServicesManager, but I can't wrap my mind around it... I thought ...
0
votes
1answer
850 views

Find out which computer is remotely connected to another computer

We have a shared machine running windows xp professional, and people log in to that machine using remote desktop with a single username and password. Problem with Windows remote desktop is that when a ...
0
votes
1answer
198 views

Java Running Remote Bashscript

I want to connect a remote machine(has a Linux operation system) from my Java Program and I want to run a script on it. I will process the result of that script(it writes something to console) too. ...
0
votes
1answer
375 views

Help Understanding Impersonation

I was looking for a way to Start / Stop Windows Services residing in a remote machine using C# code, and found the following code sample. It works fine for me. It is coded using Impersonation ...

1 2