Check .GetType rather than object directly
This commit is contained in:
parent
1fee46270c
commit
eba5e34641
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ $user_obj = Get-User $username
|
|||
if ($state -eq 'present') {
|
||||
# Add or update user
|
||||
try {
|
||||
if ($user_obj) {
|
||||
if ($user_obj.GetType) {
|
||||
Update-Password $user_obj $password
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue