'How to install application Updates on multiple windows machine using any tool or script [closed]

I have around 100 windows machine(VMs), All the machines have few updates for chrome , notepad/notepad++ , Firefox ,Jenkins which have not been installed from long time, Is there a way to install updates in all the machines without going to each application specifically and updating.

can we log into each machine and execute any command so that all the update for applications is installed?

Basically want to trigger auto-update in all the windows machines.



Solution 1:[1]

You will need to put a lot of effort, but it's doable.

You need to know how to update each application via command line. And when you have all the commands. And you can do updates on single Windows instance. You can use Enter-PSsession or Invoke-Command (for HyperV guest) / Invoke-VMScript (for ESX guest)

https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/user-guide/powershell-direct

https://developer.vmware.com/docs/powercli/latest/vmware.vimautomation.core/commands/invoke-vmscript/#Default

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Miroslav Vasilev