Showing posts with label IE. Show all posts
Showing posts with label IE. Show all posts

Nov 6, 2023

[UPDATED] Internet Explorer : Enabled via VBS Script File

Latest script to launch Internet Explorer with preferred webpage loaded.

1. Open --> Notepad

2. Type or Copy the following script:

Set objExplorer = CreateObject("InternetExplorer.Application")
with objExplorer
    .Navigate strPath
    .ToolBar = 1
    .StatusBar = 1
    .Width = 1000
    .Height = 593
    .Left = 1
    .Top = 1
    .Visible = 1
    .FullScreen = 0
    .Navigate("https://www.google.com.my")
End With

 Note: Replace the URL with your preferred URL address.


3. Save the file as --> IE_Link.vbs

4. Test run the script file, you can also create a Shortcut in the "Desktop" and replace the icon to Internet Explorer icon too.


!!! HAPPY COMPUTING !!!

Oct 17, 2023

Internet Explorer : Enabled via VBS Script File

 As of 17-Oct-2023, latest Windows 10 update have yet again forced Internet Explorer (IE) to redirect and open via Edge browser.

No idea why Microsoft kept on forcing users to use Edge, and their "IE Mode" is sluggish and not compatible with local web server (which only works best in IE11). Edge browser is totally rubbish to our intranet application.

"Microsoft you cannot force user to Edge nor expect us to re-write the entire application to Edge compatible, as this will incurred lots of money, time and resources."

I do hope Microsoft see my message...


Workaround for the time being :-

1. Open --> Notepad

2. Type --> CreateObject("InternetExplorer.Application").Visible=true

3. Save file as --> IE.vbs

4. Create a desktop shortcut.

5. Change the icon to "IE" icon.

6. End.

Disadvantage Note : You cannot save any "Favorites" link inside IE, doing so will only automatically open the link in Edge browser.


!!! HAPPY COMPUTING !!!

Jan 6, 2023

Favorites : Location of Favorites

 Location of "Favorites" for Internet Explorer, Microsoft Edge and Google Chrome browser in Windows 10 22H2.


1) Internet Explorer Favorites Path.

%USERPROFILE%\Favorites\*.*


2) Microsoft Edge Favorites Path.

"%USERPROFILE%\AppData\Local\Microsoft\Edge\User Data\Default\Bookmarks"

"%USERPROFILE%\AppData\Local\Microsoft\Edge\User Data\Default\Favicons"


3) Google Chrome Favorites Path.

"%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Bookmarks"

"%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Favicons"


!!! HAPPY COMPUTING !!!