Unfortunately for those that use Terminal Services of some description, aka Remote Desktop IE still forms the default browser in Windows server product which is bonkers but that what it is.
Laptops/Desktop Edge is fine.
Is there a way to set that to something else for all the TS users? Maybe it’s something we can script into a worklet?
It gets worse. As a user of a large Travel Distribution solution and its software, use of IE is hard baked into the application so for us needs to be present on any device we plan to use the software which is most 😦
Am i missing something? where is the remediation part to the worklet? I only see the evaluation part
Check if IE11 present:
$App = Get-WindowsOptionalFeature -Online -FeatureName Internet-Explorer-Optional-amd64 | Select-Object State
if ( $App -eq ‘Disabled’ ) {
Exit 0
} else { Exit 1 }
Remove IE11
Disable-WindowsOptionalFeature –Online -FeatureName Internet-Explorer-Optional-amd64
can someone post what the official evaluation and remediation codes are for this? would love to see this working. I’m assuming the “Check if IE11 Present” is the evaluatoin portion, looks like 5 lines of code between both parts? Then the “Remove IE11” looks like it’s the remediation code? someone please confirm.
Ok, scrolled up to get evaluation code, then the “Remove IE11” above looks like remediation code?
Sorry, still learning scripting and code here
thanks