Skip to content

Instantly share code, notes, and snippets.

@PCfromDCSnippets
Created April 4, 2017 01:38
Show Gist options
  • Save PCfromDCSnippets/042809ec36c8b79529890bd072fe3155 to your computer and use it in GitHub Desktop.
Save PCfromDCSnippets/042809ec36c8b79529890bd072fe3155 to your computer and use it in GitHub Desktop.
Mount File Share
#region Mount File Share
$root = "\\" + $storageAccountName + ".file.core.windows.net\" + $fileShareName
$psd = Get-PSDrive | Where-Object {$_.DisplayRoot -eq $root}
if ($psd.Count -gt 0) {
Write-Host "File share already exists as drive $psd..."
}
else {
$command = "net use " + $driveLetter + ": " + $root
$sb = [scriptblock]::Create($command)
$sb.Invoke()
}
#endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment