Skip to content

Commit 9154771

Browse files
committed
fix the windows hyperv smb synced folder creation/destruction
closes #12639
1 parent c1fa7e4 commit 9154771

File tree

2 files changed

+20
-21
lines changed

2 files changed

+20
-21
lines changed
+14-15
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,36 @@
1+
Set-StrictMode -Version Latest
2+
$ErrorActionPreference = 'Stop'
3+
14
# The names of the user are language dependent!
25
$objSID = New-Object System.Security.Principal.SecurityIdentifier("S-1-1-0")
36
$objUser = $objSID.Translate([System.Security.Principal.NTAccount])
47

5-
$grant = "$objUser,Full"
6-
7-
for ($i=0; $i -le $args.length; $i = $i + 3) {
8+
for ($i = 0; ($i+2) -lt $args.length; $i = $i + 3) {
89
$path = $args[$i]
910
$share_name = $args[$i+1]
1011
$share_id = $args[$i+2]
1112

12-
13-
if ($path -eq $null) {
14-
Write-Warning "empty path argument encountered - complete"
15-
exit 0
13+
if (!$path) {
14+
Write-Error "error - no share path provided"
15+
exit 1
1616
}
1717

18-
if ($share_name -eq $null) {
18+
if (!$share_name) {
1919
Write-Output "share path: ${path}"
2020
Write-Error "error - no share name provided"
2121
exit 1
2222
}
2323

24-
if ($share_id -eq $null) {
24+
if (!$share_id) {
2525
Write-Output "share path: ${path}"
2626
Write-Error "error - no share ID provided"
2727
exit 1
2828
}
2929

30-
$result = net share $share_id=$path /unlimited /GRANT:$grant /REMARK:"${share_name}"
31-
if ($LastExitCode -ne 0) {
32-
$host.ui.WriteLine("share path: ${path}")
33-
$host.ui.WriteErrorLine("error ${result}")
34-
exit 1
35-
}
30+
New-SmbShare `
31+
-Name $share_id `
32+
-Path $path `
33+
-FullAccess $objUser `
34+
-Description $share_name
3635
}
3736
exit 0
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
Set-StrictMode -Version Latest
2+
$ErrorActionPreference = 'Stop'
3+
14
ForEach ($share_name in $args) {
2-
$result = net share $share_name /DELETE /YES
3-
if ($LastExitCode -ne 0) {
4-
Write-Output "share name: ${share_name}"
5-
Write-Error "error - ${result}"
6-
exit 1
7-
}
5+
Remove-SmbShare `
6+
-Name $share_name `
7+
-Force
88
}
99
Write-Output "share removal completed"
1010
exit 0

0 commit comments

Comments
 (0)