Add Readme

This commit is contained in:
Gregory Lirent 2024-07-28 01:14:38 +03:00
parent 14ba747abd
commit 6d0b6a0c79
Signed by: lirent
GPG Key ID: F616BE337EFFEE77
2 changed files with 13 additions and 0 deletions

7
README.md Normal file
View File

@ -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`

6
vbs-utils/remote-ip.vbs Normal file
View File

@ -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)