Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
cChocoEx
24.11.16
Private/Test-IsWinSE.ps1
function
Test-IsWinSE
{
param
(
)
if
(
(
Test-IsWinPE
)
-and
(
Test-Path
'X:\Setup.exe'
)
)
{
return
$true
}
else
{
return
$false
}
}