11 lines
266 B
PowerShell
11 lines
266 B
PowerShell
|
ForEach ($share_name in $args) {
|
||
|
$result = net share $share_name /DELETE
|
||
|
if ($LastExitCode -ne 0) {
|
||
|
Write-Output "share name: ${share_name}"
|
||
|
Write-Error "error - ${result}"
|
||
|
exit 1
|
||
|
}
|
||
|
}
|
||
|
Write-Output "share removal completed"
|
||
|
exit 0
|