mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
13 lines
340 B
PowerShell
13 lines
340 B
PowerShell
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
ForEach ($share_name in $args) {
|
|
$result = net share $share_name /DELETE /YES
|
|
if ($LastExitCode -ne 0) {
|
|
Write-Output "share name: ${share_name}"
|
|
Write-Error "error - ${result}"
|
|
exit 1
|
|
}
|
|
}
|
|
Write-Output "share removal completed"
|
|
exit 0
|