PowerShell: Ouvrir une session sur Office 365 (FR-FR)
Les étapes à suivre sont les suivantes :
1. Ouvrir la console (Microsoft PowerShell ISE) entant qu'administrateur.
2. Insérer le code suivant :
#--------Declarations--------
#The user name as an email.
$user = xxxx@xxx.xx
#The strong password.
$passWord = ConvertTo-SecureString -String "passWord" -AsPlainText -Force
#The user credential.
$userCredential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $user, $passWord
#The path of the document library, to get the correct path open your Document Library form (Open with the Explorer) menu.
$documentLibraryPath = "\astoine365.sharepoint.com@SSL\DavWWWRoot\Project Documents"
Cette partie contient toutes les déclarations nécessaires.
http://www.elhoudaigui.com/SiteAssets/blog/Declarations.png
3. Le bloque suivant ouvre une session Office 365 :
#--------Manage Office 365 Session--------
#Create the new Session Object.
$session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $userCredential -Authentication Basic -AllowRedirection
#Open the session.
Import-PSSession $session
http://www.elhoudaigui.com/SiteAssets/blog/ImportSession1.png
http://www.elhoudaigui.com/SiteAssets/blog/ImportSession2.png
4. Exécuter le code suivant pour mapper la Bibliothèque de Documents avec un lecture réseau (Z comme exemple) :
#--------Map to Drive--------
#To map the document library with a (Z) Drive.
net use Z: $documentLibraryPath
5. Ce dernier morceau crée un réseau sur le bureau pour la même bibliothèque de document :
#--------Create a shortcut--------
#Create WScript object.
$wshShell = New-Object -comObject WScript.Shell
#Create the Shortcut object, this example make the shortcut in the desktop.
$shortcut = $wshShell.CreateShortcut("$Home\Desktop\DocumentLibraryName.lnk")
#Change the URL to your URL
$shortcut.TargetPath = $documentLibraryPath
$shortcut.Save()
http://www.elhoudaigui.com/SiteAssets/blog/MapShortcut.png
Vous pouvez télécharger le scripte à partir d'ici.