Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSNotify
0.0.8
Public/Get-NotificationChannels.ps1
# Create a function to read all notification channels
function
Get-NotificationChannels
{
[
CmdletBinding
(
)
]
param
(
)
begin
{
}
process
{
$script:store
.
channels
}
end
{
}
}