בעיה בהתחברות ל MSO של Exchange 365

Arielvista

New member
בעיה בהתחברות ל MSO של Exchange 365

יש לי סקריפט powershell שאמור להתחבר ל MSO Services של האופיס365
שלי.
עד לפני כשבועיים זה עבד יופי ועכשיו פתאום הוא נותן שגיאה.
הנה הקוד כפי שעבד עד לפני כשבועיים:
# Connect to MSO Services
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-Module MsOnline
connect-msolservice -Credential $UserCredential

והנה הודעת השגיאה:
connect-msolservice : The term 'connect-msolservice' is not recognized as the name of a cmdlet, function, script file,
or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and
try again.
At S:\IT\Powershell_commands\02.MSOLservicesConnection.ps1:5 char:1
+ connect-msolservice -Credential $UserCredential
+ ~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (connect-msolservice:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

לא נעשו שום שינויים בסיסמאות או בשום דבר אחר שאני יודע עליו.
מי יכול לסייע?
 

arseny92

Well-known member
מנהל
הקומדלטים של 365 ו-AAD לא מותקנים, ראה

https://docs.microsoft.com/en-us/of.../manage-office-365-with-office-365-powershell
&nbsp
https://docs.microsoft.com/en-us/of...ell/cmdlet-references-for-office-365-services
&nbsp
חבילת המודולים שמשתמשת בשמות כמו Connect-MsolService היא גרסה ישנה של המודול, הגירסה המעודכנת משתמשת במודולים של AAD פוורשל
&nbsp
https://docs.microsoft.com/en-us/of...e-azure-active-directory-v2-powershell-module
&nbsp
לכן בכל סקריפט כזה יש לשנות כל MsolService ל-AzureAD ולהשתמש בקומנדלטים שלו
כמו כן, לא Import-Module MsOnline אלא Import-Module AzureAD וזה בהנחה שמתישהו קודם אי פעם בוצעה התקנה של המודול באמצעות Install-Module AzureAD
&nbsp
https://docs.microsoft.com/en-us/powershell/module/Azuread/?view=azureadps-2.0
&nbsp
https://www.powershellgallery.com/packages/AzureAD
&nbsp
MsOnline זו חבילת מודול ישנה שאינה מתעדכנת יותר:
https://www.powershellgallery.com/profiles/AzureADPowerShell/
 
למעלה