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 May 25, 2023 16:01
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"