How to map Azure file shares on Entra Joined windows 11 laptops via Intune

Criti 0 Reputation points
2024-05-15T15:54:30.13+00:00

How to map Azure file shares on Entra Joined windows 11 laptops via Intune ?

Azure Files
Azure Files
An Azure service that offers file shares in the cloud.
1,187 questions
Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
8,455 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,493 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. akinbade abiola 1,885 Reputation points
    2024-05-15T16:24:44.02+00:00

    Hello Criti,

    Thanks for your question. To do this, I will recommend using New-PSDrive CMdelet to map the File share as a network drive.

    https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/new-psdrive?view=powershell-7.4#examples
    For Example:

    New-PSDrive -Name "Public" -PSProvider "FileSystem" -Root "\\<FileSharePath"

    FileSharePath should assume the format: <storage-account-name>.file.core.windows.net<file-share-name> as documented here:

    User's image

    After doing this, you can proceed to deploy the script directly as an Intune PowerShell script.

    See: https://learn.microsoft.com/en-us/mem/intune/apps/intune-management-extension

    Please let me know if you have further questions

    You can mark it 'Accept Answer' if this helped.

    0 comments No comments

  2. ZhoumingDuan-MSFT 9,240 Reputation points Microsoft Vendor
    2024-05-16T02:03:08.6733333+00:00

    @Criti, Thanks for posting in Q&A.

    For Intune side, we can use ADMX file to map Azure file shares on windows device via Intune.

    Here is the links for reference.

    https://www.petervanderwoude.nl/post/mapping-azure-file-shares-on-windows-devices/

    Non-official, just for reference.

    Hope it will 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.