Networking • Automation • Occasional Podcasting

Category: Windows

  • Windows Port Knock Application
    , , , , ,

    Windows Port Knock Application

    ****The application now accepts DNS names and will correctly resolve them when knocking…rejoice!**** I’ve been getting a lot of false positives from virus scanners: IE Virustotal This is a known issue with all autoit compiled scripts. They are NOT infected, it’s just that Autoit code has been picked up by virus scanners at one point,…

  • , ,

    List Stored Procedures From Query Analyzer in SQL 2000

    I know not too many of you will need this, but I’ll have to look this back up at some point 😉 USE databasename SET NOCOUNT ON SELECT ROUTINE_NAME FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE = 'PROCEDURE' AND OBJECTPROPERTY ( OBJECT_ID(ROUTINE_NAME), 'IsMsShipped' ) = 0 ORDER BY ROUTINE_NAME

  • , ,

    My New Favorite NTP Server Resource

    Check the right side of the page for a regional server -> pool.ntp.org

  • ,

    Solarwinds IP Address Tracker

    My friend Brian was looking for something to keep track of his IP in is smaller enterprise. IPPlan is what we use at the DC/ISP and isn’t precisely tailored for smaller shops. He found this. They have a cute little video that gives you the quick and dirty. This guy doesn’t run as a service…

  • , ,

    Windows IIS SMTP Test Scripts

    I wrote a couple of Autoit scripts to test if a Windows IIS SMTP server is responding properly. The first is [download#4]. This guy connects to the local mail relay and sends an email. Simple. You supply it with three command line parameters: from address, to address and subject. The second, called [download#3], checks the…