Ws2000:
I used this to only close IE on Windows 7 and lower:
I used this to only close IE on Windows 7 and lower:
if ($osVersion -ge 6.2) { Show-InstallationWelcome -CloseApps "Firefox,Chrome" -CloseAppsCountdown 30 }
if ($osVersion -lt 6.2) { Show-InstallationWelcome -CloseApps "iexplore,Firefox,Chrome" -CloseAppsCountdown 30 }
There might be a cleaner way to write that logic, but it works for me.