我在django中使用从子进程导入的函数调用来运行powershell脚本。此脚本接收用户名作为参数并将其添加到活动目录组。有些奇怪,没有错误,而且它不起作用。但如果我手动运行它有时工作,有时不工作。我真的很困惑,需要你的帮助。 运行PS脚本的python行:
call(["powershell", "{0} {1}".format(powershell_script_path, username)])
不会返回错误。 和powershell脚本:
$username=$args[0]
Add-ADGroupMember -Identity "some_group" -Members $username
感谢您的帮助!