ฉันกำลังพยายามเชื่อมต่อกับ Office 365 ผ่าน Powershell เหมือนที่ฉันมีอยู่เสมอและไม่ว่าด้วยเหตุผลใด
ฉันใช้งาน Windows 10 Enterprise และสิ่งหนึ่งที่ฉันสังเกตเห็นคือผู้ช่วยลงชื่อเข้าใช้ Microsoft Online Service สำหรับผู้เชี่ยวชาญด้านไอทีไม่สามารถใช้งานได้กับ Windows 10 สิ่งนี้ทำให้ฉันคิดว่าบางทีมันอาจติดตั้งไว้ใน Windows 10 เป็นค่าเริ่มต้น ดังนั้นบางทีนั่นอาจไม่เป็นเช่นนั้น
ด้านล่างเป็นขั้นตอนที่ฉันลองและเชื่อมต่อกับ O365 ใน Powershell
$Credential = Get-Credential
Import-Module MsOnline
Connect-MsolService -Credential $credential
$ExchangeSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "https://outlook.office365.com/powershell-liveid/" -Credential $credential -Authentication "Basic" -AllowRedirection
Import-PSSession $ExchangeSession
ฉันพยายามทำเช่นนี้โดยไม่สำเร็จ:
$Credential = Get-Credential
Import-Module MsOnline
Connect-MsolService -Credential $credential
$ExchangeSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Cred -Authentication Basic -AllowRedirection #PS 5.0+
Import-PSSession $ExchangeSession
ข้อผิดพลาดที่ฉันได้รับคือ:
Connect-MsolService : The type initializer for 'Microsoft.Online.Administration.Automation.ConnectMsolService' threw
an exception.
At C:\Users\xxxxx\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1:3 char:1
+ Connect-MsolService -Credential $credential
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OperationStopped: (:) [Connect-MsolService], TypeInitializationException
+ FullyQualifiedErrorId : System.TypeInitializationException,Microsoft.Online.Administration.Automation.ConnectMso
lService
ฉันรันคำสั่งด้านล่างและพบว่าฉันใช้ Windows Azure AD Module v1.0.8262.2
PS C:\Users\xxxxx> (get-item C:\Windows\System32\WindowsPowerShell\v1.0\Modules\MSOnline\Microsoft.Online.Administrati
on.Automation.PSModule.dll).VersionInfo.FileVersion
1.0.8262.2
ฉันทำ Googling มาแล้วมากมาย แต่ไม่พบสิ่งใดที่เหมาะกับฉัน ผม คิด สิ่งนี้ควรอยู่ใน SuperUser กับ ServerFault เนื่องจากนี่เป็นปัญหากับแล็ปท็อปของฉัน แต่ถ้าคุณคิดว่ามันเหมาะกว่าสำหรับ ServerFault โปรดย้ายออก
ขอบคุณล่วงหน้าสำหรับความช่วยเหลือใด ๆ !