On this page are utilities for Windows that I've developed as tools to assist myself in performing various tasks. I've posted them here in the hopes that others might find them useful as well!
|
|
vdf ("Virtual Directory Find")This command-line utility returns the physical path that corresponds to a specified IIS virtual directory. It's essentially a shortcut for opening up the inetmgr utility and looking up the physical path for the virtual directory there. The utility supports an optional -c switch that will copy the physical path found to the clipboard for easy navigation to the physical directory with a subsequent "cd" command. Requires the .NET Framework 1.1 or higher to be installed. Download vdf 1.0.3 (4k) (Last updated February 11, 2006)
|
|
PathFindPathfind is a command-line utility which returns the locations in which a specified file is present on the current path (based on the value of the PATH environment variable). It's useful to find out the location from which a particular command-line application or file is run. If the filename to find is specified with no extension (for example, "iisreset"), then the file extensions from the PATHEXT environment variable (typically including .com, .exe., .bat, .cmd) are automatically searched (in addition to searching for the file with no extension). New in version 2.0 is support for * and ? wildcard characters, which function the same way that they do in other cmd.exe utilities. (* matches 0 or more of any character, and ? matches exactly 1 of any character.) Notes: The functionality of this utility is similar to that of the which command for Unix/Linux. Also, a similar utility for Windows, where.exe, is included with Windows 2003 Server; where.exe supports some advanced options, but does not support automatic PATHEXT extension searching. Requires the .NET Framework 2.0 or higher to be installed. Download pathfind 2.0.0 (5k) (Last updated May 15, 2007)
|
|
ccc ("Clipboard Character Count")ccc is a simple command-line utility that returns the number of text characters currently stored on the Windows clipboard. (The returned value includes control characters such as newlines.) An optional -all switch is supported to have the utility return the length of all forms of text from the System.Windows.Forms.TextDataFormat enum instead of just returning the count of plain text characters. Requires the .NET Framework 2.0 or higher to be installed. Download ccc 1.01 (3k) (Last updated July 14, 2006)
|
|
Need the .NET Framework? You can get it from Windows Update (Internet Explorer browser required)
Questions/Comments? Email me at: jon dot schneider at gmail dot com
JonSchneider.com > Utilities