有没有办法在不使用 win_shell 模块的情况下获取域用户属于使用 ansible 模块的组列表
我想从本地组中删除域用户,但找不到目前正在使用的本地组的域用户
- name: Add a local and domain user to a local group
win_group_membership:
name: administrators
members:
- testldn2-1
#- DOMAIN\TestUser
state: absent
,但对于单个组起作用
I want to delete the domain user from local groups but unable to find the domain user is part of which local group currently I'm using
- name: Add a local and domain user to a local group
win_group_membership:
name: administrators
members:
- testldn2-1
#- DOMAIN\TestUser
state: absent
but this works for individual group
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下
在此处查找文档
try this
Find the Documentation Here