Uninstalling cumulative update using dism command and sccm
Hi, because this months w11 25h2 cumulative update KB5094126 contains this known issue: " certain third-party applications might be unable to launch Microsoft Office applications ", I need to uninstall that cumulative update from several hundred computers.
I think one should uninstall updates these days using dism command, no more using wusa command.
So, my problem is that I can find out package name using this command:
dism /online /get-packages
and I know that uninstall command is for this months cumulative update is:
dism /Online /Remove-Package /PackageName:Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.8655.1.20
but my problem is that computer needs to restart after running that dism command.
So, how do I tell sccm to wait until running that dism command is finished before restarting computer? Thanks in advance if anybody can help.