- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
RvdNieuwendijk
$Baseline = Get-Baseline -TargetType host Get-VMhost | ForEach-Object { Set-VMhost -vmhost $_ -state maintenance Remediate-Inventory -Entity $_ -Baseline $Baseline -Confirm:$False Set-VMhost -vmhost $_ -state connected } QQ I have below requirement :
1. On each cluster the all the hosts should be patched, one after the other.
2. Will the above run simultaneously for all host ,( in that case it will result in outage)?
3. I want to apply only "critical & non-critical" patches only ?
4. I would like to skip host which is already patched to latest , will it do that ?
Thanks