Assigning an ip address for one person

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
KongKing
Posts: 76
Joined: 22 May 2022, 09:41

Assigning an ip address for one person

Post by KongKing » 19 Jun 2022, 16:46

Hello! how to use this method to assign an IP address to one person? So that the IP address is assigned to the first person who runs the script



Code: Select all

oWHR := ComObjCreate("WinHttp.WinHttpRequest.5.1")
oWHR.Open("GET", "http://www.netikus.net/show_ip.html")
oWHR.Send()
IP := oWHR.ResponseText
oWHR := ""
MsgBox,% "IP: " IP
Return

User avatar
mikeyww
Posts: 27366
Joined: 09 Sep 2014, 18:38

Re: Assigning an ip address for one person

Post by mikeyww » 20 Jun 2022, 15:01

As far as I know-- and I could be wrong-- individual computer users do not typically control their external (public) IP addresses. If you have a way to accomplish that manually, you can post your technique below.

Post Reply

Return to “Ask for Help (v1)”