Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Posh
0.2
Types/Posh.NET/Refresh.ps1
foreach
(
$property
in
$this
.
psobject
.
properties
)
{
if
(
$property
-is
[psnoteproperty]
-and
$property
.
Name
-match
'^\.'
)
{
$property
.
Value
=
@(
)
}
}