[ansible-project] Re: Updating Windows 10

2020-08-04 Thread Alan Woods
gmail.com wrote: >>> >>> I still don't fully see the issue, the first call to win_updates found 4 >>> updates and no updates were filtered. The screenshot you shared show that 4 >>> updates were available which matches the 4 that are in log. Based on the >

[ansible-project] Re: Updating Windows 10

2020-07-29 Thread Alan Woods
are not at there PCs. On Wednesday, July 29, 2020 at 3:21:30 PM UTC-7, Alan Woods wrote: > > Hello. > > So this is the playbook now have: > > --- > > - hosts: win10-pro-4 > > gather_facts: no > > tasks: > > - name: Install Windows Updates > &g

[ansible-project] Re: Updating Windows 10

2020-07-25 Thread Alan Woods
When you say disable windows updates from the OS. Do you mean go in to the windows services and disable the Windows Update service? If you are not referring to this I am not sure what you mean by disable windows updates. I though it needed the windows update service to be started to install

[ansible-project] Updating windows 10

2020-07-24 Thread Alan Woods
Hello, I am trying to install windows updates with Ansible and for some reason it is not working. This is what I have so far. My playbook: --- - name: Windows Update hosts: win10-pro-1 gather_facts: false tasks: - name: Install updates win_updates:

Re: [ansible-project] Re: Trying to install Feature update to Windows 10, version 1909 with Ansible

2020-07-17 Thread Alan Woods
I have. I have used it for installing IIS and a few other features. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [ansible-project] Re: Trying to install Feature update to Windows 10, version 1909 with Ansible

2020-07-17 Thread Alan Woods
I have a little bit for installing IIS and a few other features? On Friday, July 17, 2020 at 2:26:28 AM UTC-7, CORLEONE## wrote: > > Have you used the win feature module before? > > Regards, > Manash > > On Thu, 9 Jul 2020, 01:54 Alan Woods, > > wrote: > >>

Re: [ansible-project] Re: Trying to install Feature update to Windows 10, version 1909 with Ansible

2020-07-08 Thread Alan Woods
Would you mind sharing you playbook for the upgrade install? On Wednesday, July 8, 2020 at 8:07:20 AM UTC-7, Alan Woods wrote: > > Hi Corleone, the account that I am using is in the Administrators group on > the windows 10 boxes. Right now, I am using a Dev environment using > Vagra

Re: [ansible-project] Re: Trying to install Feature update to Windows 10, version 1909 with Ansible

2020-07-08 Thread Alan Woods
ansible.cfg file is: [defaults] host_key_checking = false timeout = 30 the hosts file and the ansble.cfg file are both in the default location of /etc/ansible.Thanks for any help on this I really appreciate it. On Wednesday, July 8, 2020 at 8:07:20 AM UTC-7, Alan Woods wrote: > > Hi Co

[ansible-project] Re: Trying to install Feature update to Windows 10, version 1909 with Ansible

2020-07-07 Thread Alan Woods
P ******* win10-pro-1: ok=4changed=2unreachable=0failed=0 skipped=0rescued=0ignored=0 On Tuesday, July 7, 2020 at 10:53:42 AM UTC-7, Alan Woods w

[ansible-project] Re: Trying to install Feature update to Windows 10, version 1909 with Ansible

2020-07-07 Thread Alan Woods
and --- - hosts: win10-pro-1 gather_facts: yes tasks: - name: Upgrade Windows 10 win_updates: category_names: - Upgrades reboot: yes On Tuesday, July 7, 2020 at 8:27:09 AM UTC-7, Alan Woods wrote: > > Can anyone help with this? > > On Monday, July 6, 2020 at

[ansible-project] Re: Ansible playbook is not working on the target host but shows in play recap - OK

2020-07-07 Thread Alan Woods
Hello I am wandering if this ever got resolved. I am also running a play book to upgrade a windows 10 box to 1909. The play book seems to run fine it says there were changes the windows 10 box re-boots several times but at the end it is not upgraded. I tried the play from this post which was:

[ansible-project] Re: win_update to upgrade windows 10 version

2020-07-07 Thread Alan Woods
Hello. I am trying to upgrade some of my windows 10 boxes with ansible and it never seems to work. The play book runs for awhile then it is done but with no errors but does not actually upgrade the system. Could you share you working playbook to see what I am missing? I also have my play book

[ansible-project] Re: Trying to install Feature update to Windows 10, version 1909 with Ansible

2020-07-07 Thread Alan Woods
Can anyone help with this? On Monday, July 6, 2020 at 10:59:39 AM UTC-7, Alan Woods wrote: > > Hello I am trying to install windows 10 feature updates or upgrades. The > playbook I am using seems to download it but it will not install it. I > still need to go into windows updates a

[ansible-project] Trying to install Feature update to Windows 10, version 1909 with Ansible

2020-07-06 Thread Alan Woods
Hello I am trying to install windows 10 feature updates or upgrades. The playbook I am using seems to download it but it will not install it. I still need to go into windows updates and hit retry then it installs. This is the playbook I am currently using: --- - hosts: win10-pro-1