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:
HomeLab
1.0.0
modules/HomeLab.Logging/Public/Write-MenuSpacer.ps1
function
Write-MenuSpacer
{
[
CmdletBinding
(
)
]
param
(
[
Parameter
(
Mandatory
=
$false
)
]
[int]
$Count
=
1
)
for
(
$i
=
0
;
$i
-lt
$Count
;
$i
++
)
{
Write-Host
""
}
}