|
Is it possible to connect via Remote Desktop Connection to a windows 7 machine without locking the remote computer (I want to use the same logged in user)? Or is it possible to release the lock after the remote desktop session is closed?
Started by yossis on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at superuser):
You go into the help and support area and create a remote assistance request you can send to the person you want to remote....
It basically uses the same remote desktop technology under the hood.
Take a look at remote assistance.
|
|
When simply doing git push to a remote repository, its master branch gets updated. This is undesirable in the case of non-bare repositories, and the warning message displayed by recent Git versions makes that clear.
I'd like to be able to push to a remote...
Started by Alex Morega on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can do:
git push master:some-remote-branch
for example:
git push master:alex/master.
Could just log in to the remote machine and clone this remote repository, and fetch/pull whenever you need it.
|
|
How do I detect if a remote client is running Remote Desktop Protocol? and it is also accepting remote desktop connections ??
Like Open an port to detect HTTP and send request, receive request headers and see in request headers information about HTTP ...
Started by Aizaz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could do netstat -a in the command line and see if the default port for remote desktop.
|
Ask your Facebook Friends
|
Is there a way with SVN to check out from a remote repository to another remote location rather than my local file system? Something like:
svn co http://myrepository/svn/project ssh me@otherlocation.net:/var/www/project
Started by Sam McAfee on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I think you could do:
ssh me@other.net 'svn co http://repository/svn/project /var/www/project'
This takes advantage of the fact that ssh lets you execute... .
You could use Subversion with SSHFS.
If you want to copy a repository, look into svnsync .
|
|
Using JBoss 4.0.5, JBossMQ, and Spring 2.0.8, I am trying to configure Spring to instantiate beans which depend on a remote JMS Queue resource. All of the examples I've come across depend on using JNDI to do lookup for things like the remote ConnectionFactory...
Started by Erik on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When the machine with the remote queue is brought back up, no messages are ever processed.
Attempted again.
|
|
I'm attempting to pass a remote object as a parameter to a remote method, but I get a security exception when the remote object attempts to run a method on the received remote object.
This is a sample remote object:
public class SharpRemotingDLL : MarshalByRefObject...
Started by vbigiani on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
You should obtain the message directly from Server1, rather than asking another remote server.
|
|
Hi All,
Thanks for reading. I have a friend that is using remote desktop to access her office desktop (XP) from her home desktop (Win7).
She wants to print from the remote box to the local one (XP to 7).
She has the "Share Printers" checkbox checked in...
Started by Eli on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Has this ever worked....
I believe that clipboard sharing can also be disabled via Group Policy .
If your friend is remoting into a corporate environment, it is possible that they have disabled printer redirection , as that is what is done at my company.
|
|
How can I run an app locally to access the mysql database on my server without enabling remote access to the mysql server.
I have full SSH access.
Is this possible? Reverse SSH? VPN? (but it seems like it would be a bit confusing)
Started by karmic on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
PHP on the server to access the db as localhost, would that fit your description of no remote line is the port you want to have locally, ie on C, the second one is the remote port that you.
|
|
Can I use the administrator user of a remote (no domain or anything like that) Windows Server to log in into the SQL Server running on that same machine? That would be, using the same credentials, user and password, as I use when I connect to that server...
Started by J. Pablo Fernández on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
If the username and/or password are different then no, you can't specify a Windows account ... .
If the username and password that you are logging into your local computer with, are the same as a username and password that exist on the SQL Server then yes .
|
|
I have an iMac on Mac OS X 10.5 Leopard and I connect to my workplace through a VPN connection. To this point everything is ok.
But I'd like to use a remote desktop viewer, with a good quality, and free, does it exist on Mac? I'm getting tired of using...
Started by Ron on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
There is also an open source RDC called.
Microsoft Remote Desktop Connection Client for Mac from Microsoft.
|