@Vinod Survase, Thanks for posting in Q&A. Based on my checking, I didn't find the report in Intune to get the device remote access status.
But after researching, I find we can check the status via the registry key fDenyTSConnections under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server. If value is 0 means RDP is enabled. If value is 1, it means RDP is disabled.
(Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server' -Name fDenyTSConnections).fDenyTSConnections
You can use the above command to confirm the RDP status.
Hope the above information can help.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.