Category: VBScript

CreateFileOrDir.vbs

‘========================================================================= ‘ CreateFileOrDir.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Pass a File or Folder Path to the Sub and It Will Create the ‘ Full Path of the Directory Structure. ‘ EXAMPLE: Call CreateFileOrDir(“C:\Level 1\Level 2\test.txt”) ‘ Call CreateFileOrDir(“C:\Test\Folder\Structure”) ‘========================================================================= Option Explicit Call …

Continue reading

Logger.vbs

‘========================================================================= ‘ Logger.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Pass the Log Name, Message, and Whether It’s a New Log File ‘ to the Sub and It will Create or Append the Specified Log File in the Current ‘ Directory. The Log Name …

Continue reading