🇬🇧 | 🇩🇪 | 🇫🇷 | 🇪🇸 | 🇨🇳 | 🇸🇦
我们没有DLL,但我们有:
Windows文件分析器和在线快速反病毒

一个简约的界面,具有快速搜索,方便的上传和干净的部分结构.

🛡️🔍 快速验证你的档案,只需要放上这个页面.
病毒检查,哈希,签名验证,架构,人工智能信息.

没有.

错误消息 "The WS-Management service cannot process the request because the specified URI is not supported on the service side. Retry the request with local session" typically occurs when you try to execute WinRM (Windows Remote Management) commands or establish a remote PowerShell session, but the local configuration restricts remote connections.

这是因为本地 WinRM 客户端试图访问在 WS-Management (WSMan) 值得信赖的主机列表中未配置或未允许的远程资源或地址,或者因为本地机器上 WinRM 服务本身配置错误或已禁用.通过强制执行"本地会话",Windows 阻止网络协议执行命令,直到建立明确的权限和配置.


一步一步的修复

通过启用WinRM并配置可靠主机列表来解决问题,请遵循以下简单步骤.

步骤1: 打开PowerShell作为管理员

  1. 按下 Start Menu 或是按下 Windows Key.
  2. 它们的类型 PowerShell 在搜索中.
  3. 按右键按一下 Windows PowerShell 在搜索结果中.
  4. 选择 Run as administrator.
  5. 点击 Yes 如果显示用户帐户控制 (UAC) 提示.

步骤2:启用和配置 WinRM 服务

您需要确保 Windows 远程管理服务在您的系统上运行并正确配置.

  1. 在PowerShell窗口中,键入以下命令并按下 Enter:
    winrm quickconfig
  2. If the system prompts you to make changes (such as starting the service or enabling the firewall exception), type y (为是) 并按下. Enter 每一个提示.

步骤3:配置可靠主机

如果您试图连接到特定的远程机器,或者如果本地脚本需要回路远程权限,则必须将目标添加到您的可靠主机列表中.

  1. To trust all hosts for testing or environment setup, type the following command and press Enter:
    Set-Item WSMan:\localhost\Client\TrustedHosts -Value "*" -Force

    (注:如果您只希望信任一个特定的计算机,请替换 with the specific IP address or hostname of that computer, for example: 设置项目WSMan:\localhost\Client\TrustedHosts - 值为 "192.168.1.50" - 强力) *

步骤4:重新启动WinRM服务

通过重新启动服务应用配置更改.

  1. 输入下面的命令并按下 Enter:
    Restart-Service WinRM

步骤5:验证配置

确保更改已成功保存.

  1. 键入下面的命令来检查您的可靠主机列表,然后按下 Enter:
    Get-Item WSMan:\localhost\Client\TrustedHosts
  2. 检查输出显示的值 ( * 或您在步骤3中设置的特定IP/主机名).

一旦这些步骤完成,请重新运行原始命令或脚本,

ERROR_WINRS_CLIENT_GET_NULL_PARAM | ERROR_WSMAN_POLYMORPHISM_MODE_UNSUPPORTED | ERROR_WSMAN_URI_NON_DMTF_CLASS | ERROR_WSMAN_URI_WRONG_DMTF_VERSION | ERROR_WSMAN_PUSHSUBSCRIPTION_INVALIDUSERACCOUNT

可能有一些错误.. Learn Microsoft