10 lines
152 B
PowerShell
10 lines
152 B
PowerShell
function Test {
|
|
[CmdletBinding()] #turns into adv function
|
|
param(
|
|
[int32] $PingCount
|
|
)
|
|
Test-Connection google.com -Count $PingCount
|
|
}
|
|
|
|
Test
|