应用平台 APPSTAGE-将华为云Windows主机纳管至运维中心VMS:步骤二:初始化主机

时间:2024-09-27 11:22:58

步骤二:初始化主机

  1. 使用Administrator管理员账号密码登录Windows主机。
  2. 使用管理员身份打开powershell,执行如下脚本:

    Set-ExecutionPolicy RemoteSigned -Force;
    winrm quickconfig -q -force;
    winrm set winrm/config/service/auth '@{Basic="true"}';
    winrm set winrm/config/service '@{AllowUnencrypted="true"}';
    New-NetFirewallRule -Name Ansible -DisplayName Ansible -Enabled True -Action Allow -Protocol TCP -LocalPort 5985 -Direction InBound

support.huaweicloud.com/usermanual-wiseeye/appstage_04_1327.html