Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSTeams
0.2.0
Public/New-TeamsFact.ps1
function
New-TeamsFact
{
[
CmdletBinding
(
)
]
param
(
[string]
$Name
,
[string]
$Value
)
$Fact
=
[ordered]
@{
name
=
"$Name"
value
=
"$Value"
}
return
$Fact
}