PoshCode Archive  Artifact [c2bc11411b]

Artifact c2bc11411bc45af84e3d48407e2ffc922583460b4e5b09608844323af6efe0e8:

  • File Start-MyTranscript.ps1 — part of check-in [86dbb023b8] at 2018-06-10 13:18:14 on branch trunk — This script, given a root path, will start a transcript with a unique and standardized file name. You can throw a call to this at the end of your profile, and you’ll always have a transcript of every session (if the host you’re using supports starting a transcript). (user: Scott Percy size: 2082)

# encoding: ascii
# api: powershell
# title: Start-MyTranscript
# description: This script, given a root path, will start a transcript with a unique and standardized file name.  You can throw a call to this at the end of your profile, and you’ll always have a transcript of every session (if the host you’re using supports starting a transcript).
# version: 0.1
# type: function
# author: Scott Percy
# license: CC0
# function: Start-MyTranscript
# x-poshcode-id: 2986
# x-archived: 2013-01-11T06:35:35
# x-published: 2013-10-06T06:04:00
#
#
function Start-MyTranscript
{
	Param
	(
		[Parameter(Mandatory=$true,Position=0)]
		[string] $Path
	)# of Param
	
	Process
	{
		$fileextension = "txt"
		$filenamePrefix = [System.DateTime]::Now.ToString("yyyy-MM-dd")
		$existingFiles = Get-ChildItem (Join-Path $Path "$filenamePrefix.*.Transcript.$fileextension") | Sort-Object Name
		if($existingFiles)
		{
			if($existingFiles.Count -gt 1)
			{
				$existingFilename = $existingFiles[-1].Name
			}# if we have more than one file
			else
			{
				$existingFilename = $existingFiles.Name
			}# if we only have one file
			
			$fileNumber = $existingFilename.Substring($filenamePrefix.Length + 1)
			$fileNumber = $fileNumber.Substring(0, $fileNumber.IndexOf("."))
			[int] $iFileNumber = 9999
			if([Int32]::TryParse($fileNumber, [ref] $iFileNumber))
			{
				$iFileNumber++
			}# if we parsed the number
		}# if we have files
		else
		{
			$iFileNumber = 1
		}# if we don't have files
		
		if($iFileNumber)
		{
			$fileNumber = $iFileNumber.ToString("0000")
			$filename = "$filenamePrefix.$fileNumber.Transcript.$fileextension"

			if(!(Test-Path $Path))
			{
				New-Item $Path -Type Directory -Force
			}# create dir if it doesn't exist
			try
			{
				Start-Transcript -Path (Join-Path $Path $fileName) -Append -Force -NoClobber
			}# try to start the transcript
			catch
			{
				Write-Host "Unable to start transcript"
			}# catch any error
		}# if we got a filename	
	}# of Process
}# of Start-MyTranscript