You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there an issue with the passcode length? can this easily be changed to be supported?
It works fine from a windows system.
Thanks
$connectTestResult = Test-NetConnection -ComputerName hostxyz.file.core.windows.net -Port 445
if ($connectTestResult.TcpTestSucceeded) {
# Save the password so the drive will persist on reboot
cmd.exe /C "cmdkey /add:`"hostxyz.file.core.windows.net`" /user:`"localhost\usrxyz`" /pass:`"YDEVsqXLg9wCZ8N41oRv6TLWUIRgRmcBTgw4hyUyBF4g5hx17qj2dMN4fYNHOjtbdhXhafa6e/tv+AStE1JIKA==`""
# Mount the drive
New-PSDrive -Name Z -PSProvider FileSystem -Root "\\hostxyz.file.core.windows.net\xyzpub" -Persist
} else {
Write-Error -Message "Unable to reach the Azure storage account via port 445. Check to make sure your organization or ISP is not blocking port 445, or use Azure P2S VPN, Azure S2S VPN, or Express Route to tunnel SMB traffic over a different port."
}
Azure Storage Account File Share
Is there an issue with the passcode length? can this easily be changed to be supported?
It works fine from a windows system.
Thanks
The text was updated successfully, but these errors were encountered: