我在 PowerShell 中运行以下命令:
PS C:\Users\adminaccount> winrm s winrm/config/service @{AllowUnencrypted="true";
MaxConcurrentOperationsPerUser="4294967295"}
Error: Invalid use of command line. Type "winrm -?" for help.
如您所见,这给了我一个错误。但是 cmd.exe 中的相同命令可以正常工作:
C:\Users\adminaccount>winrm s winrm/config/service @{AllowUnencrypted="true";
MaxConcurrentOperationsPerUser="4294967295"}
Service
...
那么,我应该了解哪些关于 PowerShell 语法的知识才能让它在那里工作呢?