‘========================================================================= ‘ PingHost.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/17/2013 ‘ COMMENTS: Pass a hostname or IP to the function and the number of times ‘ you wish to ping the host/IP, and it will return whether it is succesful ‘ or not. ‘ EXAMPLE: Ping …
Tag: IPv4
Jan 01 2011
GetIPInfo.vbs
‘========================================================================= ‘ GetIPInfo.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Input a Computer DNS/IP, which then Clears the Current Arp Cache, ‘ Gets the IP of the DNS/IP, and then gets the MAC address of the DNS/IP. ‘ EXAMPLE: Wscript.Echo GetIPInfo(“Computer”) ‘========================================================================= Option Explicit …
Jan 01 2011
GenerateIPv4Addresses.vbs
‘========================================================================= ‘ GenerateIPv4Addresses.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Input the Start IPv4 IP Address and the End IPv4 IP Address to ‘ Generate All IP Addresses In a Log File for the Given Range. ‘ EXAMPLE: Input the Starting IPv4 Address: 192.168.1.1 …