diff --git a/README.md b/README.md new file mode 100644 index 0000000..60f2f21 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Install +> 1) Open PowerShell as admin and set the unlimited execution policy\ +> `Set-ExecutionPolicy Bypass` + + +> 2) Create shortcut watchdog-wow.bat in folder\ +> `%userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup` diff --git a/vbs-utils/remote-ip.vbs b/vbs-utils/remote-ip.vbs new file mode 100644 index 0000000..bf41640 --- /dev/null +++ b/vbs-utils/remote-ip.vbs @@ -0,0 +1,6 @@ +Dim o +Set o = CreateObject("MSXML2.XMLHTTP") +o.open "GET", "https://2ip.io", False +o.SetRequestHeader "User-Agent", "curl" +o.send +echo Trim(o.responseText)