rdp

Unable to RDP to Windows Azure Svc VM (RDP enabled, RDP endpoint configured)

断了今生、忘了曾经 提交于 2019-12-10 19:13:41
问题 I've seen multiple articles discussing how to configure your RDP settings via visual studio, credential caching via the RDP program, and yet we still have a problem. I've also seen articles saying "you need to add an endpoint to your role for RDP" -- If I do that, Visual Studio complains that "an endpoint is already defined for remote desktop" -- because it does this behind the scenes (or so it seems) when you enable RDP via the UI. (It wont let me publish, so I'm going to (cringe) assume

How to find amount of time mstsc is used and by whom?

吃可爱长大的小学妹 提交于 2019-12-10 18:06:30
问题 Our team has geographically dispersed and many virtual machine will be connected by them using remote desktop. I would like to find who is accessing a remote desktop session and how long it is being used. I tried to do it with powershell. I wrote a script where user will invoke mstsc using powershell. It will log who has logged in and when he logged. But i would like to find when some one log off from mstsc or disconnect mstsc . Is there any way to capture that information in log file using

How to verify an Azure virtual machine RDP certificate?

点点圈 提交于 2019-12-10 15:40:00
问题 My VM's RDP certificate fingerprint changed for some reason. Is there a way for me to verify the new certificate fingerprint in Azure? Type: Virtual Machine (classic), Machine: Basic_A3, OS: Windows Server 回答1: There are boot diagnostic logs available in Azure, enabled by default, when you boot a virtual machine. You can find them by selecting the virtual machine in the Azure portal; in the menu section 'Support + troubleshooting', select 'Boot diagnostics' and then the tabpage 'Serial log'.

Send Special Keys Over Remote Desktop

≡放荡痞女 提交于 2019-12-10 12:01:11
问题 I am able to send special keys on local machine but the same thing is not working on remote machine. I referred to many articles but could not find the code to send special keys to remote desktop connection. Please help on this. Below is the code. static void Main(string[] args) { Thread.Sleep(3000); //char[] keyboardStrokes = { (char)Keys.LWin, (char)Keys.R }; char[] keyboardStrokes = { (char)Keys.LMenu, (char)Keys.F4 }; SendData(keyboardStrokes); } struct INPUT { public INPUTType type;

Generating RDP file on the fly

谁说我不能喝 提交于 2019-12-09 18:03:36
问题 I want to create a web application similar to TS Web Access, where I can create rdp files on the fly for Remote Apps configured on the server. Any idea?? 回答1: We had to do this exact thing. private void InvokeRDPSign(String fileName, String certificateThumbPrint) { Process signingProcess = new Process(); signingProcess.StartInfo.FileName = @"rdpsign.exe"; String arguments = String.Format("/sha1 {0} {1}", certificateThumbPrint, fileName); signingProcess.StartInfo.Arguments = arguments;

Cannot connect to azure VM. CredSSP issue

爷,独闯天下 提交于 2019-12-08 12:56:18
问题 After I received a windows update on my PC I cannot connect to my azure vm via RDP. How can I connect to Azure in order to install the update? 回答1: This is a known issue. Root Cause Analysis To resolve a vulnerability issue with Credential Security Support Provider protocol (CredSSP), a monthly Windows update in May was applied which does two things: Correct how Credential Security Support Provider protocol (CredSSP) validates requests during the authentication process Change the group policy

P2P RDP with Python

試著忘記壹切 提交于 2019-12-08 01:36:58
问题 I want to write a Simple P2P RDP Client and Server in Python. This is how I Sketched it out. Take Screenshots in short Interval Compress them and send to the server application Get Keyboard, Mouse events from server application. Serialize them and send to client. Client will unserialize them and will use SendInput Calls to reflect them and What I need to know is Do there exist and rdp library in Python that I can use to simplify my Job ? How to get Keyboard or Mouse Event from Server Operator

Generating RDP Profile Issue

北城余情 提交于 2019-12-07 13:46:56
问题 edit Figured it out, instead of trying to launch it via mstsc.exe file.rdp, I launch file.rdp instead and it works just fine. end edit Ok I am working on a c# program, part of it is generating its own .rdp file that will automatically connect with all information provided when it is generated. When I try to launch the rdp file from command line I get that it's not a vaild connection profile. If I double click it in windows it opens up, connects and logs in. So I know the password hashes that

Android SDK app failed to load library

≡放荡痞女 提交于 2019-12-07 10:00:47
问题 Heyho. I've got the same error message as this guy: "Android NDK app failed to load library" and i'm trying to transfer these answers here on my situation for hours now, but it doesnt work. Can someone help me? It's this opensource project here, which i want to try to get it run on my emulator. https://github.com/itskewpie/FreeRDP-android FreeRDPActivity.java package net.itskewpie.freerdp; import android.app.Activity; import android.os.Bundle; public class FreeRDPActivity extends Activity {

New Azure portal (no End Points) how to connect to VM with RDP from behind a firewall

六眼飞鱼酱① 提交于 2019-12-07 09:00:58
问题 I've created a VM (non-classic, using Resource Manager) in new Azure portal but I need to connect from behind a firewall. I've found a bunch of articles explaining how to solve it by editing an Endpoint settings for RDP, but in the new portal there is nothing like this! Inbound and Outbound rules are just firewall rules as I understand and it gives nothing. I've connected to it from home and tried to change RDP listening port to something not blocked by firewall with following power shell