Is there any way we can get or see which all services are using RDP protocol on devices via Intune or any other way like Graph API or PowerShell?

Vinod Survase 4,706 Reputation points
2023-11-29T14:47:24.5533333+00:00

Is there any way we can get or see which all services are using RDP protocol on devices via Intune or any other way like Graph API or PowerShell?

Microsoft Intune Security
Microsoft Intune Security
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Security: The precautions taken to guard against crime, attack, sabotage, espionage, or another threat.
349 questions
Microsoft Intune Configuration
Microsoft Intune Configuration
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Configuration: The process of arranging or setting up computer systems, hardware, or software.
1,747 questions
Microsoft Intune Reporting
Microsoft Intune Reporting
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Reporting: The process of giving an account of something that has been observed, heard, done, or investigated.
60 questions
Microsoft Intune Enrollment
Microsoft Intune Enrollment
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Enrollment: The process of requesting, receiving, and installing a certificate.
1,267 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,451 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. JatinMakhija 966 Reputation points
    2023-11-29T16:17:43.6233333+00:00

    Currently, there doesn't seem to be a direct method in Intune to identify all services using the RDP protocol. However, if you wish to obtain this information on a Windows device using the command prompt, you can execute the following command from an elevated command prompt and go through all the services that use the 3389 protocol.

    netstat -anob
    

    To Filter with RDP protocol, you could use the below command:

    netstat -anob | findstr :3389
    

    User's image

    ---If the response is helpful, please click "Accept Answer" and upvote it.---

    1 person found this answer helpful.