Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
apvr-test
0.1.48
Set-Test.ps1
function
Set-Test
{
[
CmdletBinding
(
)
]
Param
(
[int]
$Value
)
if
(
$value
-le
10
)
{
return
$Value
}
else
{
$message
=
"Didn't execute this line"
return
$message
}
}