File tree 2 files changed +20
-21
lines changed
plugins/hosts/windows/scripts
2 files changed +20
-21
lines changed Original file line number Diff line number Diff line change
1
+ Set-StrictMode - Version Latest
2
+ $ErrorActionPreference = ' Stop'
3
+
1
4
# The names of the user are language dependent!
2
5
$objSID = New-Object System.Security.Principal.SecurityIdentifier(" S-1-1-0" )
3
6
$objUser = $objSID.Translate ([System.Security.Principal.NTAccount ])
4
7
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 ) {
8
9
$path = $args [$i ]
9
10
$share_name = $args [$i + 1 ]
10
11
$share_id = $args [$i + 2 ]
11
12
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
16
16
}
17
17
18
- if ($share_name -eq $null ) {
18
+ if (! $share_name ) {
19
19
Write-Output " share path: ${path} "
20
20
Write-Error " error - no share name provided"
21
21
exit 1
22
22
}
23
23
24
- if ($share_id -eq $null ) {
24
+ if (! $share_id ) {
25
25
Write-Output " share path: ${path} "
26
26
Write-Error " error - no share ID provided"
27
27
exit 1
28
28
}
29
29
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
36
35
}
37
36
exit 0
Original file line number Diff line number Diff line change
1
+ Set-StrictMode - Version Latest
2
+ $ErrorActionPreference = ' Stop'
3
+
1
4
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
8
8
}
9
9
Write-Output " share removal completed"
10
10
exit 0
You can’t perform that action at this time.
0 commit comments