Events

Prev Next

Get-LiquitEvent

This command displays a list of all events known within the Application Workspace or you can just select one in particular.

Syntax

Get-LiquitEvent 
    [-LiquitContext <LiquitContext>]  
    [<CommonParameters>]

Get-LiquitEvent 
    [-ID] <guid[]> 
    [-LiquitContext <LiquitContext>]  
    [<CommonParameters>]

Get-LiquitEvent 
    [[-TargetType] {Unknown | System | Server | Zone | Tag | IdentitySource | Device | User | Group | DeviceCollection | Package | PackageSnapshot | ActionSet | Action | FilterSet | Filter | Workspace | Policy | Context | View | MailServer | License | Team | Authenticator | Connector | Credential | ScheduledTask | EntityFilter | Deployment | Content | IdentityProvider | Certificate | SystemUpdate | MailTemplate | AuthContract | PersonalPackage | DeviceRegistration | ConditionSet | Category | EventCollector | ZoneDomain | UserCollection | Session | Variable | Permission | Resource | Task | Approval}] 
    [-LiquitContext <LiquitContext>]
    [<CommonParameters>]

Parameters

Name Value Description Required Default value
TargetType {Unknown | System | Server | Zone | Tag | IdentitySource | Device | User | Group | DeviceCollection | Package | PackageSnapshot | ActionSet | Action | FilterSet | Filter | Workspace | Policy | Context | View | MailServer | License | Team | Authenticator | Connector | Credential | ScheduledTask | EntityFilter | Deployment | Content | IdentityProvider | Certificate | SystemUpdate | MailTemplate | AuthContract | PersonalPackage | DeviceRegistration | ConditionSet | Category | EventCollector | ZoneDomain | UserCollection | Session | Variable | Permission | Resource | Task | Approval} The place where event took place on (e.g. package, deployment) and for which you want to retrieve events. Yes
Date <DateTime> A date range for which you want to retrieve events.
LiquitContext <LiquitContext> Determines the selected zone. No Default

Examples

The following command retrieves all past events up to 10 days ago:

    Get-LiquitEvent -TargetType $user -EndDate $(Get-Date).AddDays(-10)

The following command retrieves events from the last 30 calendar days:

    Get-LiquitEvent -TargetType $user -StartDate $(Get-Date).AddDays(-30)

The following command retrieves events from the last 8 days excluding today:

    Get-LiquitEvent -TargetType $user -StartDate $(Get-Date).AddDays(-8) -EndDate $(Get-Date).AddDays(-1)
For more info see https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/get-date

Remove-LiquitEvent

This command removes an event.

Syntax

    Remove-LiquitEvent 
    [-Event] <Event[]> 
    [-LiquitContext ] 
    [-WhatIf] 
    [-Confirm]

Parameters

Name Value Description Required Default value
Event <Event[]> The event you want to remove. Yes
LiquitContext <LiquitContext> Determines the selected zone. No Default