我正试图在一个python脚本中运行这个ps命令。
subprocess.call('powershell.exe $username = "admin@example.com";$password = Get-Content "C:/Scripts/user.txt" | ConvertTo-SecureString;$cred = new-object -typename System.Management.Automation.PSCredential ` -argumentlist $username, $password;Connect-MSOLService -Credential $cred;Get-MSOLUser -UserPrincipalName user@example, shell=TRUE)
所以,基本上你可以理解,我在脚本中调用这个命令,在azure中自动登录并获得用户。我的问题是,我得到了这个错误。
'ConvertTo-SecureString'未被识别为内部或外部命令。 可操作程序或批处理文件。
有什么想法吗?非常感谢大家。