Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
QuickFix
0.3.1
Network_Test_MappedDrives.ps1
function
Network-TestMappedDrives
{
Get-PSDrive
-PSProvider
'FileSystem'
|
Where-Object
{
$_
.
DisplayRoot
-like
'\\*\\*'
}
|
ForEach-Object
{
Test-Path
$_
.
Root
}
}