<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: BGInfo &#8211; Script for Local IP, Public IP and ISP Name	</title>
	<atom:link href="https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/</link>
	<description>Uroš Vovk home page</description>
	<lastBuildDate>Sat, 21 Dec 2024 18:52:53 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: JimSprings		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-7469</link>

		<dc:creator><![CDATA[JimSprings]]></dc:creator>
		<pubDate>Sat, 21 Dec 2024 18:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-7469</guid>

					<description><![CDATA[Let me try again... comment board keeps removing the HTML tags even if you put spaces in them. For the script below to work, replace the uppercase letters LT with the less-than symbol and uppercase GT with the greater-than symbol typically used in HTML tags.

Set o = CreateObject(&quot;MSXML2.XMLHTTP&quot;)
o.open &quot;GET&quot;, &quot;https://www.whatismyisp.com&quot;, False
o.send
strid = o.responseText
Set myRegExp = New RegExp
With myRegExp
	.Pattern = &quot;LTspan class=&quot;&quot;block text-4xl&quot;&quot;GT(.*)LT/spanGT&quot;
	.IgnoreCase = False
	.Global = False
End With
Set myMatches = myRegExp.Execute(strid)
Echo myMatches.Item(0).SubMatches(0)]]></description>
			<content:encoded><![CDATA[<p>Let me try again&#8230; comment board keeps removing the HTML tags even if you put spaces in them. For the script below to work, replace the uppercase letters LT with the less-than symbol and uppercase GT with the greater-than symbol typically used in HTML tags.</p>
<p>Set o = CreateObject(&#8220;MSXML2.XMLHTTP&#8221;)<br />
o.open &#8220;GET&#8221;, &#8220;https://www.whatismyisp.com&#8221;, False<br />
o.send<br />
strid = o.responseText<br />
Set myRegExp = New RegExp<br />
With myRegExp<br />
	.Pattern = &#8220;LTspan class=&#8221;&#8221;block text-4xl&#8221;&#8221;GT(.*)LT/spanGT&#8221;<br />
	.IgnoreCase = False<br />
	.Global = False<br />
End With<br />
Set myMatches = myRegExp.Execute(strid)<br />
Echo myMatches.Item(0).SubMatches(0)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JimSprings		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-7468</link>

		<dc:creator><![CDATA[JimSprings]]></dc:creator>
		<pubDate>Sat, 21 Dec 2024 18:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-7468</guid>

					<description><![CDATA[Revised script for ISP name, this works as of December, 2024:

Set o = CreateObject(&quot;MSXML2.XMLHTTP&quot;)
o.open &quot;GET&quot;, &quot;https://www.whatismyisp.com&quot;, False
o.send
strid = o.responseText
Set myRegExp = New RegExp
With myRegExp
	.Pattern = &quot;(.*)&quot; ‘remove spaces before use :)
	.IgnoreCase = False
	.Global = False
End With
Set myMatches = myRegExp.Execute(strid)
 Echo myMatches.Item(0).SubMatches(0)]]></description>
			<content:encoded><![CDATA[<p>Revised script for ISP name, this works as of December, 2024:</p>
<p>Set o = CreateObject(&#8220;MSXML2.XMLHTTP&#8221;)<br />
o.open &#8220;GET&#8221;, &#8220;https://www.whatismyisp.com&#8221;, False<br />
o.send<br />
strid = o.responseText<br />
Set myRegExp = New RegExp<br />
With myRegExp<br />
	.Pattern = &#8220;(.*)&#8221; ‘remove spaces before use :)<br />
	.IgnoreCase = False<br />
	.Global = False<br />
End With<br />
Set myMatches = myRegExp.Execute(strid)<br />
 Echo myMatches.Item(0).SubMatches(0)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Castiel		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-7432</link>

		<dc:creator><![CDATA[Castiel]]></dc:creator>
		<pubDate>Mon, 05 Aug 2024 06:11:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-7432</guid>

					<description><![CDATA[Updated version for ISP Name:

Set o = CreateObject(&quot;WinHttp.WinHttpRequest.5.1&quot;)
o.Open &quot;GET&quot;, &quot;http://ip-api.com/json&quot;, False
o.Send
strid = o.ResponseText

Set myRegExp = New RegExp
With myRegExp
    .Pattern = &quot;&quot;&quot;isp&quot;&quot;:&quot;&quot;([^&quot;&quot;]*)&quot;&quot;&quot;
    .IgnoreCase = False
    .Global = False
End With

Set myMatches = myRegExp.Execute(strid)
If myMatches.Count &#062; 0 Then
    Echo myMatches.Item(0).SubMatches(0)
Else
    Echo &quot;ISP not found&quot;
End If]]></description>
			<content:encoded><![CDATA[<p>Updated version for ISP Name:</p>
<p>Set o = CreateObject(&#8220;WinHttp.WinHttpRequest.5.1&#8221;)<br />
o.Open &#8220;GET&#8221;, &#8220;http://ip-api.com/json&#8221;, False<br />
o.Send<br />
strid = o.ResponseText</p>
<p>Set myRegExp = New RegExp<br />
With myRegExp<br />
    .Pattern = &#8220;&#8221;&#8221;isp&#8221;&#8221;:&#8221;&#8221;([^&#8221;&#8221;]*)&#8221;&#8221;&#8221;<br />
    .IgnoreCase = False<br />
    .Global = False<br />
End With</p>
<p>Set myMatches = myRegExp.Execute(strid)<br />
If myMatches.Count &gt; 0 Then<br />
    Echo myMatches.Item(0).SubMatches(0)<br />
Else<br />
    Echo &#8220;ISP not found&#8221;<br />
End If</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dan		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-7226</link>

		<dc:creator><![CDATA[Dan]]></dc:creator>
		<pubDate>Sat, 04 Nov 2023 14:17:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-7226</guid>

					<description><![CDATA[The site changed.  This script works for me.:
&#039; bgISPName.vbs
Dim o
Set o = CreateObject(&quot;MSXML2.XMLHTTP&quot;)
&#039; o.open &quot;GET&quot;, &quot;https://api.ipify.org&quot;, False
&#039; o.send
&#039; Set o = CreateObject(&quot;MSXML2.XMLHTTP&quot;)
&#039; o.open &quot;GET&quot;, &quot;https://www.whoismyisp.org&quot;, False
o.open &quot;GET&quot;, &quot;https://www.whatismyisp.com&quot;, False
o.send
strid = o.responseText
Set myRegExp = New RegExp
With myRegExp
	.Pattern = &quot;(.*)&quot; &#039;remove spaces before use :)
	.IgnoreCase = False
	.Global = False
End With
Set myMatches = myRegExp.Execute(strid)

ispname=myMatches.Item(0).SubMatches(0)

wscript.echo myMatches.Item(0).SubMatches(0)
wscript.echo ispname]]></description>
			<content:encoded><![CDATA[<p>The site changed.  This script works for me.:<br />
&#8216; bgISPName.vbs<br />
Dim o<br />
Set o = CreateObject(&#8220;MSXML2.XMLHTTP&#8221;)<br />
&#8216; o.open &#8220;GET&#8221;, &#8220;https://api.ipify.org&#8221;, False<br />
&#8216; o.send<br />
&#8216; Set o = CreateObject(&#8220;MSXML2.XMLHTTP&#8221;)<br />
&#8216; o.open &#8220;GET&#8221;, &#8220;https://www.whoismyisp.org&#8221;, False<br />
o.open &#8220;GET&#8221;, &#8220;https://www.whatismyisp.com&#8221;, False<br />
o.send<br />
strid = o.responseText<br />
Set myRegExp = New RegExp<br />
With myRegExp<br />
	.Pattern = &#8220;(.*)&#8221; &#8216;remove spaces before use :)<br />
	.IgnoreCase = False<br />
	.Global = False<br />
End With<br />
Set myMatches = myRegExp.Execute(strid)</p>
<p>ispname=myMatches.Item(0).SubMatches(0)</p>
<p>wscript.echo myMatches.Item(0).SubMatches(0)<br />
wscript.echo ispname</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Christian		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-6881</link>

		<dc:creator><![CDATA[Christian]]></dc:creator>
		<pubDate>Wed, 21 Sep 2022 15:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-6881</guid>

					<description><![CDATA[Hi
Many thanks for the script &quot;ISP Name.vbs&quot;. I used them for several months.
It seems html page on target server changed, the script returns now empty name.]]></description>
			<content:encoded><![CDATA[<p>Hi<br />
Many thanks for the script &#8220;ISP Name.vbs&#8221;. I used them for several months.<br />
It seems html page on target server changed, the script returns now empty name.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jan		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-6585</link>

		<dc:creator><![CDATA[Jan]]></dc:creator>
		<pubDate>Mon, 23 May 2022 15:28:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-6585</guid>

					<description><![CDATA[Hi Uroš,

Your script ISP Name.vbs worked like a charm, but now it looks like the html on &quot;https://www.whoismyisp.org&quot; has changed again.

I get the same error as Giovanni.

Can you please look at it?

Kind regards,

Jan]]></description>
			<content:encoded><![CDATA[<p>Hi Uroš,</p>
<p>Your script ISP Name.vbs worked like a charm, but now it looks like the html on &#8220;https://www.whoismyisp.org&#8221; has changed again.</p>
<p>I get the same error as Giovanni.</p>
<p>Can you please look at it?</p>
<p>Kind regards,</p>
<p>Jan</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: noobmiysis		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-6559</link>

		<dc:creator><![CDATA[noobmiysis]]></dc:creator>
		<pubDate>Sun, 15 May 2022 22:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-6559</guid>

					<description><![CDATA[same here for ISP vbs : 

Error evaluating scripted field ‘ISP Name’
Microsoft VBScript run-time error
Line 13, position 0
Invalid procedure call or argument]]></description>
			<content:encoded><![CDATA[<p>same here for ISP vbs : </p>
<p>Error evaluating scripted field ‘ISP Name’<br />
Microsoft VBScript run-time error<br />
Line 13, position 0<br />
Invalid procedure call or argument</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Giovanni		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-6167</link>

		<dc:creator><![CDATA[Giovanni]]></dc:creator>
		<pubDate>Tue, 02 Nov 2021 10:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-6167</guid>

					<description><![CDATA[Hi, thank you for your work! Is it possible that ISP Name.vbs script doesn&#039;t work anymore? Now I get the error code:

BGInfo
---------------------------
Error evaluating scripted field &#039;ISP Name&#039;
Microsoft VBScript run-time error
Line 13, position 0
Invalid procedure call or argument
---------------------------
OK
---------------------------]]></description>
			<content:encoded><![CDATA[<p>Hi, thank you for your work! Is it possible that ISP Name.vbs script doesn&#8217;t work anymore? Now I get the error code:</p>
<p>BGInfo<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Error evaluating scripted field &#8216;ISP Name&#8217;<br />
Microsoft VBScript run-time error<br />
Line 13, position 0<br />
Invalid procedure call or argument<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
OK<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ashwin Pai		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-5842</link>

		<dc:creator><![CDATA[Ashwin Pai]]></dc:creator>
		<pubDate>Sun, 02 May 2021 17:23:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-5842</guid>

					<description><![CDATA[Thank you for the scripts. I have been using them for more than a year and have it in a batch file and nothing has changed. However recently for ISPName.vbs
I am getting &quot; Invalid procedure call or argument for &quot;Echo myMatches.Item(0).SubMatches(0)&quot;
Must be some Windows update]]></description>
			<content:encoded><![CDATA[<p>Thank you for the scripts. I have been using them for more than a year and have it in a batch file and nothing has changed. However recently for ISPName.vbs<br />
I am getting &#8221; Invalid procedure call or argument for &#8220;Echo myMatches.Item(0).SubMatches(0)&#8221;<br />
Must be some Windows update</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: The DOC		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-5754</link>

		<dc:creator><![CDATA[The DOC]]></dc:creator>
		<pubDate>Sat, 20 Feb 2021 13:54:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-5754</guid>

					<description><![CDATA[Unfortunately, the display of the IP address is poor with several adapters, as they are displayed one after the other without any space between them. So you have a long chain of numbers without the necessary distinction. Should definitely be improved.]]></description>
			<content:encoded><![CDATA[<p>Unfortunately, the display of the IP address is poor with several adapters, as they are displayed one after the other without any space between them. So you have a long chain of numbers without the necessary distinction. Should definitely be improved.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
