Files and Shares
Find Shares on Hosts in Current Domain
Invoke-ShareFinder -VerboseFind Shares from other Domain
Invoke-ShareFinder -Domain lab.localExclude Default Shares
Invoke-ShareFinder -ExcludeStandardShow only Shares the Current User Has Access to
Invoke-ShareFinder -CheckShareAccessFind Sensitive Files on Computers
Invoke-FileFinder -VerboseGet All Fileservers
Get-NetFileServerUse 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 $CredentialLast updated