Hello to everyone!
I try executing ad-hoc command such as:
ansible windows -m win_user_right -a 'name=SeDenyRemoteInteractiveLogonRight users=MY_USER action=set'
but I get this error:
The module win_user_right was not found in configured module paths. Additionally, core modules are missing. If this is a checkout, run 'git pull --rebase' to correct this problem.
I have to mention that I execute successfully the "win_user" module prior to this ( which is an ansible team maintained module )
ansible windows -m win_user -a 'name=MY_USER password=MY_PASS state=present groups=Administrators'
What is the issue exactly here? To me it looks like the win_user_right module is missing, any clues ?