I have NoMADLoginAD working great, user logs in for the first time using the NoMAD login window, it creates the local account with the same credentials as their AD Account. That works great.
I then remove NoMadLoginAD from the security login, to return it to normal login screen - just the user icons - this works great too!
I install and configure NoMAD on the workstation via policy, and I set the following via policy;
#!/bin/bash
AD_domain="mydomain.com"
# Write default AD domain
defaults write com.trusourcelabs.NoMAD ADDomain "$AD_domain"
defaults write com.trusourcelabs.NoMAD UseKeychain -bool "true"
defaults write com.trusourcelabs.NoMAD LocalPasswordSync -bool "true"
defaults write com.trusourcelabs.NoMAD SignInWindowOnLaunch -bool "true"
defaults write com.trusourcelabs.NoMAD UPCAlert -bool "true"
#Add to login items
osascript -e 'tell application "System Events" to make login item at end with properties {path:"/Applications/NoMAD.app", hidden:false}'
exit 0
As you can see, I am setting the LocalPasswordSync option to true, but when I change the password using the NoMAD application, it isn't updating the local account password.
Anybody run into this before?