All,
What have you found to be the best way to update Windows using Salt? I basically just want to get all criticals.
I had found this state file somewhere:
update_critical:
wua.uptodate:
- categories:
- Critical Updates
- Security Updates
- Updates
- severities:
- Critical
- skip_reboot: False
but it seems to be missing things like cumulative updates for Windows 2016.
For example after running this I run a:
salt "<minion>" win_wua.available categories=["Updates"]
and it still shows KB4507459, KB4512495, KB890830 as needing to be installed.
I thought having the "-Updates" would have caught this in the state file.
Am I doing something wrong?