發表文章

目前顯示的是 4月, 2020的文章

PowerShell 執行時出現無法下載 WARNING: Unable to download from URI 'https://go.microsoft.com/fwlink/?LinkID=627338&clcid=0x409' to ''

圖片
當你確認網路都正常 但是無法正確install模組 可以試試看在Powershell(管理員執行) 1. Open Powershell (As Admin) 2. [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 3. Try it again! 或是安裝Nuget新版本 Install - PackageProvider - Name NuGet - MinimumVersion 2.8 . 5.201 - Force It work fine for me footer See also :

MICROSOFT TEAMS Live event 即時活動 如何開啟公開設定

圖片
預設是關閉的 如果要開啟(表示組織外的人也可以參加即時活動live event) 需要到Office 365的teams後台 再會議選項中的即時活動原則中進行修改 將誰可以參與即時會議改為所有人 修改完需要等待一兩個小時才會生效 footer See also :

AZURE VPN 異常檢測

使用故障排除進行 VPN 測試 指令可以使用 cloud powerchell 黃色的部分請代換成自己的名稱 執行以下語法 $networkWatcher = Get-AzNetworkWatcher -Location " southeastasia " $connection = Get-AzVirtualNetworkGatewayConnection -Name " GSEO-Azure-IPSec-SEA " -ResourceGroupName " GSEO-Cloud-SEA " $sa = New-AzStorageAccount -Name " contosoexamplesa " -SKU "Standard_LRS" -ResourceGroupName " GSEO-Cloud-SEA " -Location " SoutheastAsia " Set-AzCurrentStorageAccount -ResourceGroupName $sa.ResourceGroupName -Name $sa.StorageAccountName $sc = New-AzStorageContainer -Name logs Start-AzNetworkWatcherResourceTroubleshooting -NetworkWatcher $networkWatcher -TargetResourceId $connection.Id -StorageId $sa.Id -StoragePath "$($sa.PrimaryEndpoints.Blob)$($sc.name)" 完成後會將結果寫在這裡 /Microsoft.Storage/storageAccounts/contosoexamplesa/containersList footer See also :   使用  Azure  網路監看員  PowerShell  來針對虛擬網路閘道和連線進行疑難排解