is there a way to run a report to see who has created a link to view one drive files in Microsoft 365 admin center?

Zach Olson 1 Reputation point
2022-09-22T15:43:22.133+00:00

Within Microsoft admin center you can go to a user in your organization. Once you have a user open you can select the One Drive tab. When the One Drive tab opens you have the option to 'Create link to view files.' This will give anyone with admin rights the ability to view One Drive files in that persons account. What I am wondering if there is a report to see if anyone in my organization has done this?

OneDrive Management
OneDrive Management
OneDrive: A Microsoft file hosting and synchronization service.Management: The act or process of organizing, handling, directing or controlling something.
1,245 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Vasil Michev 104.3K Reputation points MVP
    2022-09-22T17:25:29.75+00:00

    Basically, this functionality adds someone as Secondary Site collection administrator for said user's OneDrive, so you can report on this via Get-SPOSiteUser:

    Get-SPOUser -Site https://tenant-my.sharepoint.com/personal/user_domain_com| ? {$_.IsSiteAdmin}   
    

    Of course, the same can be achieved via the PnP module or CSOM.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.