Skip to content
This repository was archived by the owner on Jan 21, 2021. It is now read-only.

Commit 0bbc9db

Browse files
authored
Merge pull request #227 from joncave/dfs_domain
The DFS subfunctions only accept a single $Domain
2 parents cb14cf1 + f2a9cb2 commit 0bbc9db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Recon/PowerView.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9917,7 +9917,7 @@ function Get-DomainDFSShare {
99179917
.SYNOPSIS
99189918

99199919
Returns a list of all fault-tolerant distributed file systems
9920-
for the current (or specified) domain.
9920+
for the current (or specified) domains.
99219921

99229922
Author: Ben Campbell (@meatballs__)
99239923
License: BSD 3-Clause
@@ -9932,7 +9932,7 @@ The server data is parsed appropriately and returned.
99329932

99339933
.PARAMETER Domain
99349934

9935-
Specifies the domain to use for the query, defaults to the current domain.
9935+
Specifies the domains to use for the query, defaults to the current domain.
99369936

99379937
.PARAMETER SearchBase
99389938

@@ -10215,7 +10215,7 @@ A custom PSObject describing the distributed file systems.
1021510215
function Get-DomainDFSShareV1 {
1021610216
[CmdletBinding()]
1021710217
Param(
10218-
[String[]]
10218+
[String]
1021910219
$Domain,
1022010220

1022110221
[String]
@@ -10294,7 +10294,7 @@ A custom PSObject describing the distributed file systems.
1029410294
function Get-DomainDFSShareV2 {
1029510295
[CmdletBinding()]
1029610296
Param(
10297-
[String[]]
10297+
[String]
1029810298
$Domain,
1029910299

1030010300
[String]

0 commit comments

Comments
 (0)