Get all commands in a powershell module with example and description for Exchange Online.

Gurudas 951 Reputation points
2022-06-17T08:45:00.81+00:00

Hello Team,

Greetings!

I have ran a powershell command to download all available commands for Exchange Online module.

Please help me provide all the commands available for Exchange Online so that I will extract the examples and description of the same.

  1. Import-Module "ExchangeOnlineManagement"
  2. Export the output to a .csv file
    Get-Command -Module "ExchangeOnlineManagement" | Export-CsvC:\powershell\ExchOL_13June2022.csv
  3. Prepare a csv file with the contents import the file and get the details and explain with below command
    Import-Csv C:\powershell\ExchOL_13June2022.csv | %{Get-Help -detail $_.exch} >>C:\powershell\Exch_OL_13June2022.csv
Windows for business | Windows Server | User experience | PowerShell
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,921 Reputation points
    2022-06-20T08:33:00.863+00:00

    Hi there,

    You can get all commands available in the Exchange Online module from the below article.The Exchange Online PowerShell V2 module (abbreviated as the EXO V2 module) uses modern authentication and works with multi-factor authentication (MFA) for connecting to all Exchange-related PowerShell environments in Microsoft 365

    About the Exchange Online PowerShell V2 module https://learn.microsoft.com/en-us/powershell/exchange/exchange-online-powershell-v2?view=exchange-ps

    Exchange Online PowerShell https://learn.microsoft.com/en-us/powershell/exchange/exchange-online-powershell?view=exchange-ps

    -------------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer–


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.