SYNOPSIS
Get archive.
SYNTAX
Get-ASArchive [-Core] <ConnectCore> [-ContainerType] <ContainerTypeEnum> [[-ContainerId] <Guid[]>] [<CommonParameters>]
DESCRIPTION
The Get-ASArchive will return existing archive(s) based on defined parameters. You can specify core as a parameter, or call Connect-ASCore once and the core parameter will be automatically added from the session state.
Example:
Get-ASArchive -ContainerType EnterpriseVault |
/* Retrieves all Enterprise Vault archives */ |
Get-ASArchive -ContainerType DellArchiveManager -ContainerId "ContainerId" |
/* Retrieves information about specific archive */ |
SYNOPSIS
Gets Active Directory user.
SYNTAX
Get-ASUser -Core <ConnectCore> [[-UserSid] <SecurityIdentifier[]>] [[-SAMAccountName] <string[]>] [[-UserPrincipalName] <string[]>] [[-Email] <string[]>] [[-PrimarySMTPAddress] <string[]>] [[-DomainADContainerId] <int[]>] [[-All] <SwitchParameter>] [[-Skip] <uint64>] [[-First] <uint64>]
[<CommonParameters>]
DESCRIPTION
The Get-ASUser returns Active Directory user. Core parameter in the cmdlet is mandatory. You can specify core as a parameter, or call Connect-ASCore once and the core parameter will be automatically added from the session state.
Example:
Get-ASUser |
|
Get-ASUser -All -IncludeTotalCount | Select-Object UserSid,SAMAccountName |
|
Get-ASUser -First 1 -Skip 1000 |
|
Get-ASUser -DomainADContainerId 1 -SAMAccountName "SAName" |
|
SYNOPSIS
Displays data regarding container(s).
SYNTAX
Get-ASContainers [[-Core] <ConnectCore>] [[-ContainerId] <Guid>] [[-LegacyExchangeDN] <string>] [[-ContainerType] <ContainerTypeEnum>] [[-Name] <String>] [-SAMAccountName] [<string[]>] [-TagName] <string[]> [-Skip <uint64>] [-First <uint64>] [<CommonParameters>]
DESCRIPTION
The Get-ASContainers cmdlet gets data regarding a specified container or containers. The result contains: Container Id, Name, Link Id, Item Count, Item Size, and Enterprise Vault Environment Name. By default all containers details are displayed after the command executes. The core parameter is mandatory. You can specify core as a parameter, or call Connect-ASCore once and the core parameter will be automatically added from the session state.
Example:
Get-ASContainers -First 10| Select-Object Name,ItemCount|Sort-Object Name |
|
Get-ASContainers |Sort-Object Name|Select-Object Name -Last 5 |
|
Get-ASContainers -All -IncludeTotalCount |Sort-Object Name|Select-Object -Property Name -First 6 |
|
Get-ASContainers -IncludeTotalCount -All -Skip 1000 |
|
Get-ASContainers -TagName TAG01 |
/* Gets list of containers assigned to specific Tag */ |
SYNOPSIS
Gets Adam container.
SYNTAX
Get-AdamContainer [[-Core] <ConnectCore>] [-ContainerType] <GetContainerTypeEnum> [-EWSId] <string[]> [-GroupName] <string[]> [-PrimarySMTPAddress] <string[]> [<CommonParameters>]
DESCRIPTION
The Get-ASContainer gets adam container. Parameter (M)ContainerType is mandatory for all containers. Other parameters depends on container type:
·For types PublicFolder, ModernPublicFolder, ModernPublicFolderOnline: (M)EWSId.
·For types Office365GroupsMail and Office365GroupsSharepoint: (M)GroupName.
·For types SharedMailbox, SharedMailboxOnline: (M)PrimarySMTPAddress.
You can specify core as a parameter, or call Connect-ASCore once and the core parameter will be automatically added from the session state.
Example:
Get-AdamContainer -ContainerType ModernPublicFolder -All -IncludeTotalCount |
/* Retrieves all modern public folder containers and shows total count of these containers*/ |
Get-AdamContainer -ContainerType PublicFolder -EWSId |
/* Retrieves specified public folder container based on EWSId*/ |
Get-AdamContainer -ContainerType Office365GroupsMail -GroupName GROUPNAME01 |
/* Retrieves specified Office 365 Group container based on group name*/ |
Get-AdamContainer -ContainerType SharedMailbox -PrimarySMTPAddress user1@domain1.onmicrosoft.com |
/* Retrieves specified shared mailbox container based on email address*/ |
© 2024 Quest Software Inc. ALL RIGHTS RESERVED. 使用条款 隐私 Cookie Preference Center