Blocking Internet Explorer temporarily
Adrian Brown
Simple task I am failing. How would I rename iexplore.exe to iexplore.bak without getting an access denied.
I would want to steer students just to Chrome for now but I know the teachers will want IE for some reason so I would rather just deploy a rename command so reverting would be a snap. I can do this with firefox.exe and chrome.exe but not iexplore.exe.
1
Comments
Assuming that your objective is to get people to use Google Chrome instead of IE, I don't think renaming the IE executable is a good way to go about it. Windows has functions that rely on IE and many applications are hard coded to use IE for some tasks. This is liable to cause you many issues. It's also likely to be reverted every time you do Windows updates.
Personally I would just delete the IE shortcuts entirely and instruct the users to use Chrome instead, but I understand that IT does not always get the leverage to dictate policy like that.
If you want to be sneaky about it, you could create a fake IE shortcut that actually opens Chrome instead. That would be easy to revert as well.
Do the following:
You may want to also replace the Start Menu IE shortcut. That's going to be a bit more complicated since it's stored in "%AppData%\Microsoft\Windows\Start Menu\Programs\Windows Accessories" which is unique to each user profile.
Great idea! I know they're alternative methods to go about this such as the windows feature removal of IE or creating a GPO to prevent the program from opening, I could even make a script to send down the pipeline to block it inbound/outbound through the firewall but since we use a stand alone firewall it would be a little more complicated.
Your method is great and if the students find a loophole or go exploring for the executable then a GPO policy will be created, I am trying to utilize the Admin Google console for the safesearch feature amongst other security features and don't want them to utilize IE or Firefox to go around the security settings.
Thanks for the quick response!