Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
fixed problems related to userpricincipalname (user@domain) and undef…
Browse files Browse the repository at this point in the history
…ined variables

fixed variable capitalization
  • Loading branch information
h0nIg committed Jan 12, 2016
1 parent 10ce1f9 commit c0b2080
Showing 1 changed file with 18 additions and 21 deletions.
39 changes: 18 additions & 21 deletions windows/win_owner.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,52 +22,49 @@
#Functions
Function UserSearch
{
Param ([string]$AccountName)
Param ([string]$accountName)
#Check if there's a realm specified
if ($AccountName.Split("\").count -gt 1)

$searchDomain = $false
$searchDomainUPN = $false
if ($accountName.Split("\").count -gt 1)
{
if ($AccountName.Split("\")[0] -eq $env:COMPUTERNAME)
{
$IsLocalAccount = $true
}
Else
if ($accountName.Split("\")[0] -ne $env:COMPUTERNAME)
{
$IsDomainAccount = $true
$IsUpn = $false
$searchDomain = $true
$accountName = $accountName.split("\")[1]
}

}
Elseif ($AccountName.contains("@"))
Elseif ($accountName.contains("@"))
{
$IsDomainAccount = $true
$IsUpn = $true
$searchDomain = $true
$searchDomainUPN = $true
}
Else
{
#Default to local user account
$accountname = $env:COMPUTERNAME + "\" + $AccountName
$IsLocalAccount = $true
$accountName = $env:COMPUTERNAME + "\" + $accountName
}

if ($IsLocalAccount -eq $true)
if ($searchDomain -eq $false)
{
# do not use Win32_UserAccount, because e.g. SYSTEM (BUILTIN\SYSTEM or COMPUUTERNAME\SYSTEM) will not be listed. on Win32_Account groups will be listed too
$localaccount = get-wmiobject -class "Win32_Account" -namespace "root\CIMV2" -filter "(LocalAccount = True)" | where {$_.Caption -eq $AccountName}
$localaccount = get-wmiobject -class "Win32_Account" -namespace "root\CIMV2" -filter "(LocalAccount = True)" | where {$_.Caption -eq $accountName}
if ($localaccount)
{
return $localaccount.SID
}
}
ElseIf ($IsDomainAccount -eq $true)
Else
{
#Search by samaccountname
$Searcher = [adsisearcher]""

If ($IsUpn -eq $false) {
$Searcher.Filter = "sAMAccountName=$($accountname.split("\")[1])"
If ($searchDomainUPN -eq $false) {
$Searcher.Filter = "sAMAccountName=$($accountName)"
}
Else {
$Searcher.Filter = "userPrincipalName=$($accountname)"
$Searcher.Filter = "userPrincipalName=$($accountName)"
}

$result = $Searcher.FindOne()
Expand Down

0 comments on commit c0b2080

Please sign in to comment.