Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions PowerUpSQL.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15163,7 +15163,11 @@ Function Get-SQLServerLoginDefaultPw
}else{
Write-Verbose "$Instance : No instance match found."
return
}
}

if($TblResultsTemp.GetType().Name -eq "DataRow"){
$TblResultsTemp = ,$TblResultsTemp
}

# Test login
#Write-Verbose ($instance).ToString()
Expand All @@ -15173,8 +15177,8 @@ Function Get-SQLServerLoginDefaultPw
# Grab and iterate username and password
for($i=0; $i -lt $TblResultsTemp.count; $i++){
#Write-Verbose $TblResultsTemp
$CurrentUsername = $TblResultsTemp.username[$i]
$CurrentPassword = $TblResultsTemp.password[$i]
$CurrentUsername = $TblResultsTemp[$i].username
$CurrentPassword = $TblResultsTemp[$i].password
$LoginTest = Get-SQLServerInfo -Instance $instance -Username $CurrentUsername -Password $CurrentPassword -SuppressVerbose
if($LoginTest){

Expand Down Expand Up @@ -26989,4 +26993,4 @@ Function Invoke-SQLDumpInfo
}
}

#endregion
#endregion