[ansible-project] Re: Use Ansible to Install SharePoint Server Updates

2020-06-07 Thread Raikhan Mussin
Thanks for the answer. We tried your recommendations, but the result is the same. Updates are not installed :-( пятница, 5 июня 2020 г., 16:37:45 UTC+6 пользователь Jordan Borean написал: > > What’s the output when you run the win_whoami module with the same become > setup you have for

[ansible-project] Re: Use Ansible to Install SharePoint Server Updates

2020-06-05 Thread Jordan Borean
What’s the output when you run the win_whoami module with the same become setup you have for win_shell. Please use -vvv so we can see the output. I would also try ansible_become_pass as I believe ansible_become_password is only valid in later Ansible versions. -- You received this message

[ansible-project] Re: Use Ansible to Install SharePoint Server Updates

2020-06-05 Thread Raikhan Mussin
Hello, Jordan! Thanks for the answer. We use this playbook and it does not work: - name: Run ps1 script in privileged mode hosts: all gather_facts: no become_method: runas vars: ansible_become_password: elon*musk#1 tasks: - win_shell: C:\Script\Install-Update.ps1

[ansible-project] Re: Use Ansible to Install SharePoint Server Updates

2020-06-04 Thread Jordan Borean
If the task is trying to install updates then you are typically restricted by Windows over a network logon like WinRM. The way around this that Ansible provides is the become [1]. This turns the logon type to an interactive logon which is allowed to install Windows updates just like you can