我有一个任务,“计算机A”通过msg.exe通过非本地用户身份向同一个域内的其他计算机提示消息。这是我使用的Power Shell命令:
Invoke-Command -ComputerName <computerName> {msg * "message"}
然后它向我显示此错误消息
Connecting to remote server UMTLHKRCSE-23 failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic.
+ CategoryInfo : OpenError: (UMTLHKRCSE-23:String) [], PSRemotingTransportException
+ FullyQualifiedErrorId : AccessDenied,PSSessionStateBroken
但是,我使用本地用户身份成功执行了
如何解决?