19 lines
216 B
PowerShell
19 lines
216 B
PowerShell
function Get-ZMPrivate {
|
|
[CmdletBinding()]
|
|
param (
|
|
|
|
)
|
|
|
|
begin {
|
|
|
|
}
|
|
|
|
process {
|
|
Write-Warning -Message ("Hello Private!!1!")
|
|
}
|
|
|
|
end {
|
|
|
|
}
|
|
}
|