我想找到更多信息獲取腳本的Windows PowerShell腳本,將登錄到PowerShell的Office 365,將提示用戶的管理員憑據。我不是關鍵詞,我可以搜索這個,但我沒有找到關於它的很多信息,請幫助我們。我不只是想要一個能做到的腳本,我也在尋找它的信息以及它的工作原理。Powershell腳本,將登錄到PowerShell的辦公室365
0
A
回答
2
對Exchange PowerShell中使用:
$ SecPass1 =的ConvertTo-SecureString的-AsPlainText -string 「密碼」 - 強制
$ MSOLM =新對象System.Management.Automation.PSCredential -ArgumentList「GlobalAdmin @一些.COM」,$ SecPass1
$會議=新的PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $ MSOLM -Authentication基本-AllowRedirection
導入模塊MSOnline 進口的PSSession $會話-AllowClobber
1
這個腳本會提示輸入憑據,並登錄到Office 365的管理員:我搜索過
To Login:
$LiveCred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange-ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
Import-PSSession $Session
如果您有更多的任務不僅僅是登錄的事,我也許能幫助你的腳本並寫了許多Office 365.
相關問題
- 1. 辦公室365 Powershell
- 2. python django:登錄辦公室365
- 3. 自動登錄辦公室365 outlook
- 4. 單點登錄辦公室365展望
- 5. 將辦公室加載項部署到辦公室365
- 6. 將ucma 3.0連接到辦公室365
- 7. exchange powershell:找到活動目錄的辦公室屬性
- 8. Powershell腳本登錄到多臺機器
- 9. SSO與辦公室365
- 10. 辦公室365 - 郵箱
- 11. 辦公室365 DNS要求
- 12. VSTO加入辦公室365
- 13. 辦公室辦公室文件在辦公室辦公室文件2007年登錄提示只在產品
- 14. 辦公室移動腳本
- 15. 將目錄傳遞到powershell腳本
- 16. PowerShell腳本記錄
- 17. 辦公室365 cmdlet的參數錯誤
- 18. 辦公室365中的DKIM設置
- 19. 免費辦公室365訂閱
- 20. 辦公室365 API請求超時
- 21. 辦公室365:組織單位
- 22. 從SharePoint Online中(365辦公室)
- 23. 辦公室365 apis失敗401
- 24. 辦公室365 - 從VS'13和Windows 7
- 25. 辦公室365設置憑據
- 26. 辦公室365的活動目錄服務
- 27. PowerShell的CSV登錄
- 28. 使用Powershell登錄到WebForm
- 29. Powershell腳本活動目錄
- 30. powershell exchange 2003:查詢ActiveDirectory的ActiveSync,辦公室和描述?
如果我的理解是正確的,你想從powershell啓動辦公室365和啓動辦公室365時提示用戶的crendentials。正確? – Peter
是的,我發現這些行$ cred = Get-Credential $ s = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $ cred -Authentication Basic -AllowRedirection $ importresults = Import-PSSession $ s – user2596912
@ user2596912如果您自己回答了問題,如果您以回答的方式寫入而不是評論,以便其他具有相同問題的用戶可以更輕鬆地找到答案,那麼這是首選。 –