Skip to content

Instantly share code, notes, and snippets.

@FarofaCodez
FarofaCodez / launch-ie.hta
Last active January 10, 2026 03:28
Launch Internet Explorer in Windows 11
<!-- This must be saved as an HTA file -->
<script>
location.href = "https://www.google.com";
window.close();
</script>