Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Ping Trace

Posted on July 18, 2013October 26, 2015 By David Kittell
Set objShell = CreateObject("WScript.Shell")
objShell.Run "%COMSPEC% /k ping 8.8.8.8",,True
objShell.Run "%COMSPEC% /k tracert 8.8.8.8"
Originally Posted on July 18, 2013
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code Windows VBS

Post navigation

Previous post
Next post

Related Posts

VS Script – Drive Info

Posted on July 18, 2013September 2, 2019

‘DriveInfo.vbs – Show information for local & network drives. ‘Note: A bug in WScript results in sizes over 2 GB being misreported. ‘© Bill James – billjames.geo@yahoo.com – rev 16 Feb 2000 Option Explicit Dim WshShell,FSO,Drv,Dtype,Dfree,Dtot Dim Dname,Dpct,Dused,Dserial,Dinfo Set WshShell=WScript.CreateObject("WScript.Shell") Set FSO=CreateObject("Scripting.FileSystemObject") For each Drv in FSO.Drives If Drv.DriveType=0 Then…

Read More

Computer Details

Posted on September 17, 2013October 26, 2015

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ComputerDetails.aspx.cs" Inherits="ComputerName" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Computer Details</title> </head> <body> <form id="form1" runat="server"> <table cellpadding="2" cellspacing="0" border="0"> <tr> <td> Windows User: </td> <td> <asp:TextBox ID="WindowsUser" runat="server" /> </td> </tr> <tr> <td> Machine Name: </td> <td> <asp:TextBox ID="MachineName"…

Read More

UNIX Bash – Create Date/Time File Name

Posted on August 25, 2016October 4, 2019

When you need to create a log file or some dated archive echo "This is a dated file $(date +%Y_%m_%d_%H.%M.%S)" > testfile_`date +%Y_%m_%d_%H.%M.%S`.txt The format can be modified slightly based on date formatting. Originally Posted on August 25, 2016Last Updated on October 4, 2019 All information on this site is…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes