cmd命令提示字元
net use列出你存在的連線,假設是想清掉某個連線:\\192.168.1.1\fileshare
net use \\192.168.1.1\fileshare /delete
正常來講你的電腦的這個連線就會被清除了。
然後應該就可以重連,不會再出現如標題的錯誤
net use列出你存在的連線,假設是想清掉某個連線:\\192.168.1.1\fileshare
net use \\192.168.1.1\fileshare /delete
$exchangeSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri “https://outlook.office365.com/powershell-liveid/” -Credential $credential -Authentication “Basic” -AllowRedirection
Import-PSSession $exchangeSession
Get-mailbox| Set-MailboxRegionalConfiguration -Language 1028 -DateFormat "yyyy-MM-dd" -TimeFormat "H:mm" -TimeZone "Taipei Standard Time"完整版請見: