From 6d0b6a0c79e4c957499fac234bb1eb7e8c2efb44 Mon Sep 17 00:00:00 2001 From: Gregory Lirent Date: Sun, 28 Jul 2024 01:14:38 +0300 Subject: [PATCH] Add Readme --- README.md | 7 +++++++ vbs-utils/remote-ip.vbs | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 README.md create mode 100644 vbs-utils/remote-ip.vbs 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)