< Back

Get-CrmTraceAlerts

Sat Jan 18, 2020 4:02 pm

NAME Get-CrmTraceAlerts



SYNOPSIS

Retrieves alert notifications from CRM organization.





SYNTAX

Get-CrmTraceAlerts [[-conn] <CrmServiceClient>] [<CommonParameters>]





DESCRIPTION

The Get-CrmTraceAlerts cmdlet lets you retrieve alert notifications from CRM organization.





PARAMETERS

-conn <CrmServiceClient>

A connection to your CRM organization. Use $conn = Get-CrmConnection <Parameters> to generate it.



Required? false

Position? 0

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS









OUTPUTS









NOTES









-------------------------- Example 1 --------------------------



Get-CrmTraceAlerts -conn $conn



This example retrieves alert notifications.







Key Value

--- -----

CrmRecords {@{tracecode_Property=[tracecode, 66]; tracecode=66; text_Property=[text, One or mor...

Count 5

PagingCookie <cookie page="1"><modifiedon last="2015-05-10T01:43:22-03:00" first="2015-05-10T01:4...

NextPage False



-------------------------- Example 2 --------------------------



Get-CrmTraceAlerts



This example retrieves alert notifications by omitting parameter names.

When omitting parameter names, you do not provide $conn, cmdlets automatically finds it.







Key Value

--- -----

CrmRecords {@{tracecode_Property=[tracecode, 66]; tracecode=66; text_Property=[text, One or mor...

Count 5

PagingCookie <cookie page="1"><modifiedon last="2015-05-10T01:43:22-03:00" first="2015-05-10T01:4...

NextPage False



-------------------------- Example 3 --------------------------



Get-CrmTraceAlerts | % {$_.CrmRecords} | select text,level



This example retrieves alert notifications and display its text and level.







text level



---- -----



One or more mailboxes associated with the email server profile @[9605,7eedeb22-6a30-... Error



Appointments, contacts and tasks can't be synchronized for mailbox @[9606,d0deee3f-6... Information



Appointments, contacts, and tasks can't be synchronized for your mailbox @[9606,d0de... Information



Email cannnot be be received because the email address of the mailbox @[9606,28c1e1a... Error



The mailbox @[9606,e453c89b-6417-e511-80dc-c4346bc4fc6c,"Support Queue"] can't recei... Information



Your mailbox @[9606,e453c89b-6417-e511-80dc-c4346bc4fc6c,"Support Queue"] can't rece... Information



The mailbox @[9606,d0deee3f-6a17-e511-80dc-c4346bc4fc6c,"<sample team>"] can't recei... Information



Your mailbox @[9606,d0deee3f-6a17-e511-80dc-c4346bc4fc6c,"<sample team>"] can't rece... Information



Appointments, contacts and tasks can't be synchronized for mailbox @[9606,28c1e1af-6... Information

...





RELATED LINKS