therealjoshuad wrote:
Ws2000:I will give it a try but it looks like a much, much better solution. Many Thanks!
I used this to only close IE on Windows 7 and lower:There might be a cleaner way to write that logic, but it works for me.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 }