rdp

How do I enable SecuredSettingsEnabled when using AxMsRdpClient to connect through RDP to a Cloud Instance?

你。 提交于 2020-01-12 11:03:59
问题 I've searched the web high and low and just cannot wrap my head around this. Basically I want to connect to a windows server 2008 instance, located in the cloud and run a batch file (which is located on the instance). I'm using the AxMSTSCLib and MSTSCLib to connect to it through RDP, but cannot get the batch running. The problem is SecuredSettingsEnabled isn't enabled so I am restricted doing this kind of operation. How do I connect properly, so that SecuredSettingsEnabled is set to True and

C# RDP application with STUN

﹥>﹥吖頭↗ 提交于 2020-01-06 11:26:10
问题 I have searched all most all the links in the internet about NAT traversing with C# and STUN. I got the public IP and the port that is using by the application. On most webpages i've read about STUN, a protocol, which should help me to connect to another client behind a NAT-Router or a firewall. Now my question... if I understand STUN, STUN is ONLY there to give me the public IP-Address and the characterization of my NAT. But so HOW can I connect with this informations to another client? here

Can't rdp to Azure on Mac OS X

夙愿已清 提交于 2019-12-31 11:43:51
问题 I am trying to Remote Desktop onto an Azure instance from Mac OS X, but can't find a tool that allows me to do it. Address and username is fine, but none of the clients seem to have the capabilities to include the instance information. I have so far tried the Miscrosoft RDC and CoRD but to no avail. Has anyone succeeded in using RDP to an Azure instance on a Mac? 回答1: you need to create connect from microsoft remote desktop on mac add ip, user, password and you can connect now if you still

Can't rdp to Azure on Mac OS X

為{幸葍}努か 提交于 2019-12-31 11:43:13
问题 I am trying to Remote Desktop onto an Azure instance from Mac OS X, but can't find a tool that allows me to do it. Address and username is fine, but none of the clients seem to have the capabilities to include the instance information. I have so far tried the Miscrosoft RDC and CoRD but to no avail. Has anyone succeeded in using RDP to an Azure instance on a Mac? 回答1: you need to create connect from microsoft remote desktop on mac add ip, user, password and you can connect now if you still

Create a headless Remote Desktop connection

為{幸葍}努か 提交于 2019-12-30 10:27:10
问题 I'm looking to automate deploying content via RDP. The current setup involves manually RDPing to the machine, copying the file to it, and moving it into place. Once on the remote machine, I can easily script massaging the content into place, but how do I script establishing the RDP session and kicking off the remote script? 回答1: It appears that Remote Desktop can only be used interatively. Powershell Remoting seems to accomplish the goal though. 来源: https://stackoverflow.com/questions

Command Line Windows Hanging in RDP Windows

时光总嘲笑我的痴心妄想 提交于 2019-12-30 05:59:59
问题 We regularly access the build machine through RDP and it there are lots of command line windows that open. Sometimes these windows hang like someone switched focus to them and press the Pause key. Tapping the keyboard moves the process along, but every once in a while this is missed and everyone waits on the process to finish while it is waiting for someone to press a key. Why does this happen? Is there a setting or version up/down-grade that can keep it from happening? 回答1: When this happens

WPF: Prevent unload & load after RDP (dis)connect

折月煮酒 提交于 2019-12-28 07:03:31
问题 When my WPF application is open, and I open a Remote Desktop Connect to my PC, WPF reloads the application (Unload and Load events on the main control are triggered). When I disconnect, this happens again. I understand that the UI has to be redrawn, but why is the control reloaded? Can this be prevented? Or is there a way to detect if a reload is triggered by an RDP (dis)connect? 回答1: Interesting question, i don't know why this happens, but with some code from this page http://blogs.msdn.com

Remote (RDP) utility with mstscax.dll

被刻印的时光 ゝ 提交于 2019-12-25 03:14:20
问题 I am looking for information on using mstscax.dll in VB. The goal is to create a utility that logs into a remote service in the same manner as remote desktop. However, my utility is not required to show the desktop. I have a series of commands that I will start off with that will look for users, reset logins, shadow, and message. I have been using a batch file on my RDP to perform these functions, but we are already looking for more functionality and power than what the batch commands can

WinForms ActiveX RDP Client Issue With NLA

 ̄綄美尐妖づ 提交于 2019-12-24 08:18:17
问题 I'm trying to make a WinForms RDP client in C# using the RDP ActiveX control as a bit of a learning exercise. I can get everything working when the target server doesn't use Network Level Authentication (NLA), but when I try and configure the control to use 'EnableCredSspSupport', which I think is needed for NLA, I get the following error when running through the code: An unhandled exception of type 'System.Windows.Forms.AxHost.InvalidActiveXStateException' occurred in AxInterop.MSTSCLib.dll

WPF re-invoke constructor when connect using Remote Desktop Connection (RDP) to pc

让人想犯罪 __ 提交于 2019-12-24 07:44:38
问题 We have an ItemControl that UserConrols will be added to it, the code is as follows: <ItemsControl ItemsSource="{Binding CamerasList}" x:Name="AllCamerasControl"> <ItemsControl.ItemsPanel> <ItemsPanelTemplate> <UniformGrid /> </ItemsPanelTemplate> </ItemsControl.ItemsPanel> <ItemsControl.ItemTemplate> <DataTemplate> <local:SingleView /> </DataTemplate> </ItemsControl.ItemTemplate> </ItemsControl> Constructor of UserControl is as follows: public SingleCameraView() { InitializeComponent();