Skip to content

Instantly share code, notes, and snippets.

View mvarrone's full-sized avatar

Matías Varrone mvarrone

View GitHub Profile
@mvarrone
mvarrone / Internet Explorer.vbs
Last active July 12, 2024 23:23
Problem: Modern web browsers don´t display content correctly when using HIKVISION NVRs and IP cameras. Solution: Use Internet Explorer on Windows 11 (not available by default)
Dim ie
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.Navigate "https://www.google.com"