Commit e6cd216a by Paul Durivage

Check .GetType rather than object directly

parent 319f32e4
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment