Logins may be showing incorrect profile information. Please email psgadmin at microsoft.com for support.
Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Eventful
0.1.5
EventSources/@Event.ps1
<#
.Synopsis
Watches for new events.
.Description
#>
[
Diagnostics.Tracing.EventSource
(
Name
=
'PSEventReceived'
)
]
param
(
)
process
{
,
$(
[Runspace]
::
DefaultRunspace
.
Events
.
ReceivedEvents
)
}