我正在从 c# 运行一个 powershell 命令,我通过 web 服务调用它
这是命令Set-MailboxAutoReplyConfiguration -identity
这是我的代码。
string command = "Set-MailboxAutoReplyConfiguration -identity " + user;
我通过网络服务传递的用户。
但是,当我运行它时,我得到了这个错误。
System.Management.Automation.RemoteException: The term 'Set-MailboxAutoReplyConfiguration -identity babbey' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
我不确定 ' 在我的命令之前和之后来自哪里。但是,如果我取出 +user 部分,它工作正常。所以我的问题是命令变量中的变量。