Files
netch/CLEAN.ps1
Connection Refused 53e847ce1d CLEAN.BAT → CLEAN.ps1
2020-05-07 21:26:33 +08:00

22 lines
307 B
PowerShell

if (Test-Path Netch\bin)
{
Remove-Item -Recurse -Force Netch\bin
}
if (Test-Path Netch\obj)
{
Remove-Item -Recurse -Force Netch\obj
}
if (Test-Path NetchLib\bin)
{
Remove-Item -Recurse -Force NetchLib\bin
}
if (Test-Path NetchLib\obj)
{
Remove-Item -Recurse -Force NetchLib\obj
}
exit 0