Files and Shares

Find Shares on Hosts in Current Domain

Invoke-ShareFinder -Verbose

Find Shares from other Domain

Invoke-ShareFinder -Domain lab.local

Exclude Default Shares

Invoke-ShareFinder -ExcludeStandard

Show only Shares the Current User Has Access to

Invoke-ShareFinder -CheckShareAccess

Find Sensitive Files on Computers

Invoke-FileFinder -Verbose

Get All Fileservers

Get-NetFileServer

Use Alternate Credentials when Searching for Files

# Find-InterestingDomainShareFile == old Invoke-FileFinder
$Password = "PASSWORD" | ConvertTo-SecureString -AsPlainText -Force
$Credential = New-Object System.Management.Automation.PSCredential("DOMAIN\user",$Password)
Find-InterestingDomainShareFile -Domain Domain -Credential $Credential

Last updated