如何使用YAML使用Ansible配置Windows Server

时间:2019-02-20 04:59:45

标签: ansible yaml

  • 如何使用Ansible关闭IE增强的安全性

  • 有什么方法可以通过使用Ansible YAML在Windows服务器中配置用户帐户

1 个答案:

答案 0 :(得分:0)

您可以使用powershell做到这一点:

myscript.ps1:

Auth::user()->user_id

Ansible剧本:

$AdminKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}"
$UserKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}"
Set-ItemProperty -Path $AdminKey -Name "IsInstalled" -Value 0
Set-ItemProperty -Path $UserKey -Name "IsInstalled" -Value 0
Stop-Process -Name Explorer