powershell-scripts/SharePointDLMapping.ps1
AdminDroid 55e81a45b1 Map network drive to SharePoint Online
Map network drive to SharePoint Online
2023-02-10 16:08:48 +05:30

6 lines
406 B
PowerShell
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

$URL = https://your_domain.sharepoint.com/sites/test_site/Shared%20Documents #<Replace with your document library URL copied in the first procedure>
$IESession = Start-Process -file iexplore -arg $URL -PassThru -WindowStyle Hidden
Sleep 20
$IESession.Kill()
$Network = new-object -ComObject WScript.Network
$Network.MapNetworkDrive('Z:', $URL) #<Use the required drive name in place of Z>