Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PingMe
1.0
Clear-Ping.ps1
function
Clear-Ping
{
<#
.Synopsis
Clears the ping cache
.Description
Clears the ping cache
.Example
Clear-Ping
#>
param
(
)
$script:PingList
=
@{
}
}