Skip to content

Instantly share code, notes, and snippets.

@watamario15
Last active August 2, 2022 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save watamario15/c937fac7450dc15d9522946ee59f122f to your computer and use it in GitHub Desktop.
Save watamario15/c937fac7450dc15d9522946ee59f122f to your computer and use it in GitHub Desktop.
Internet Explorer 11 launcher
$ie = New-Object -ComObject InternetExplorer.Application
$ie.navigate('https://www.yahoo.co.jp/')
$ie.visible = $true
Set ie = CreateObject("InternetExplorer.Application")
ie.navigate "https://www.yahoo.co.jp/"
ie.visible = True
@watamario15
Copy link
Author

watamario15 commented Aug 2, 2022

What's this? / これは何?

These scripts launch Internet Explorer even after the update to redirect an execution of it to Microsoft Edge. You can select whichever you want. You can change the start page by customizing the 2nd line.

Internet Explorer は起動時に Microsoft Edge の起動にリダイレクトする Windows Update により起動できなくなりましたが、このスクリプトを使うことで起動可能です。どちらか好きな方を選んで実行してください。起動時に開く URL は、2 行目を編集すれば変更できます。

You can also use this app as its links are somehow opened in Internet Explorer.

アプリ内に含まれるリンクが何故か必ず Internet Explorer で開くこちらを使うことも可能です。

Reference / 参考

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment