Pages

Monday 29 May 2017

Ping Admin tool - Ping Check to multiple servers,computers & IP range. PowerShell

Hello Admins,
Ping Admin tool is powerful tool based on PowerShell scripting.
Using Power Admin tool you can Ping to Single, multiple Server/computers or IP range.
Moreover, Ping Admin tool gives you OS type as well in the output, along with FQDN and IP address.
If, IP range selected then it will show TTL value as well.
Download tool from link

Functions -
Export
You can export Data output in following formats.
Export to CSV
Export to HTML
Copy
You can copy (clipboard ) the data output value to paste anywhere.
Clear-
You can clear the Data Output.
Execution Time-
It will show you the execution time as well. How fast it has pulled the value.
Single computer textbox will show auto-complete text which you entered earlier in same textbox.
Regards,
Amol Patil 

PowerShell
Edit|Remove

#region Get Ping Status Code 
            Function GetStatusCode 
            { 
                Param ([int]$StatusCode) 
                switch ($StatusCode) 
                { 
                    #0     { "Online" } 
                    11001   { "Buffer Too Small" } 
                    11002   { "Destination Net Unreachable" } 
                    11003   { "Destination Host Unreachable" } 
                    11004   { "Destination Protocol Unreachable" } 
                    11005   { "Destination Port Unreachable" } 
                    11006   { "No Resources" } 
                    11007   { "Bad Option" } 
                    11008   { "Hardware Error" } 
                    11009   { "Packet Too Big" } 
                    11010   { "Request Timed Out" } 
                    11011   { "Bad Request" } 
                    11012   { "Bad Route" } 
                    11013   { "TimeToLive Expired Transit" } 
                    11014   { "TimeToLive Expired Reassembly" } 
                    11015   { "Parameter Problem" } 
                    11016   { "Source Quench" } 
                    11017   { "Option Too Big" } 
                    11018   { "Bad Destination" } 
                    11032   { "Negotiating IPSEC" } 
                    11050   { "General Failure" } 
                    default { "Failed" } 
                } 
            } 
            #endregion 
        
 

No comments:

Post a Comment

Installed Software Inventory from Remote Machine - Output in CSV (Excel) format

Hello, This is build to collect Installed Software Inventory from Remote Machine. You need to Enter Server names in server.txt file to co...