Determina ce comenzi de administrare sunt disponibile pentru Exchange Online cu PowerShell

Configurare noua (How To)

Situatie

Vrei sa vezi o lista de comenzi de administrare disponibile pentru Exchange Online.

Solutie

Pasi de urmat

Te loghezi in Exchange Online folosing PowerShell.

Rulezi comanda:

$mods=Get-Module | where {$_.Name -like "tmp_*"}; $modName=$mods.Name
Get-Command -Module $modName | More

Exemplu :

Comanda pentru a vedea lista de interogari similare cu “Disable”

Get-Command -Name "Disable*" -Module $modName 

Rezultatul afisat va aparea astfel:
CommandType     Name                             ModuleName
-----------     ----                             ----------
Function        Disable-App                      tmp_lqy0pg2k.aij
Function        Disable-HostedContentFilterRule  tmp_lqy0pg2k.aij
Function        Disable-InboxRule                tmp_lqy0pg2k.aij
Function        Disable-JournalRule              tmp_lqy0pg2k.aij
Function        Disable-Mailbox                  tmp_lqy0pg2k.aij
Function        Disable-MailPublicFolder         tmp_lqy0pg2k.aij
Function        Disable-MalwareFilterRule        tmp_lqy0pg2k.aij
Function        Disable-OutlookProtectionRule    tmp_lqy0pg2k.aij
Function        Disable-TransportRule            tmp_lqy0pg2k.aij
Function        Disable-UMAutoAttendant          tmp_lqy0pg2k.aij
Function        Disable-UMCallAnsweringRule      tmp_lqy0pg2k.aij
Function        Disable-UMIPGateway              tmp_lqy0pg2k.aij
Function        Disable-UMMailbox                tmp_lqy0pg2k.aij

Pentru a vedea comenzile pentru “Junk” :

Get-Command -Name "*Junk*" -Module $modName 

Rezultatul va fi afisat astfel:
CommandType     Name                               ModuleName
-----------     ----                               ----------
Function        Get-MailboxJunkEmailConfiguration  tmp_lqy0pg2k.aij
Function        Set-MailboxJunkEmailConfiguration  tmp_lqy0pg2k.aij

Tip solutie

Permanent

Voteaza

(12 din 23 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?