This blog post is actually t share one of my utility script. We all write scripts to automate our tasks. We often(or always) write scripts which will be consumed by an end user as well. In this case logging is an inevitable part for a script.
We all(at least me) start developing a script initially without any logs and once the skeleton is ready we will start putting enough logs to it and one of the most important part of logging in a script is the user inputs log, We should be logging the values provided by the end user(except secrets), which will help anyone to troubleshoot if the script fails.
I always had situations to put or enhance logs for existing scripts. As a person who loves automation, I thought of automating the maximum possible for this, which actually ended up in this small utility script.
The below script will allow us to get the expression that we can put in our Script and covers the user inputs, basically the parameters and its values.
More details in Get-Help .\Build-ParamLog.ps1 -Full
The script is available in TechNet script center as well. Link
Hopes this saves copy pastes and mouse clicks...
Enjoy exploring PowerShell !!!
We all(at least me) start developing a script initially without any logs and once the skeleton is ready we will start putting enough logs to it and one of the most important part of logging in a script is the user inputs log, We should be logging the values provided by the end user(except secrets), which will help anyone to troubleshoot if the script fails.
I always had situations to put or enhance logs for existing scripts. As a person who loves automation, I thought of automating the maximum possible for this, which actually ended up in this small utility script.
The below script will allow us to get the expression that we can put in our Script and covers the user inputs, basically the parameters and its values.
More details in Get-Help .\Build-ParamLog.ps1 -Full
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
This script will help to create expressions for logging the input values of a PowerShell script. | |
.DESCRIPTION | |
This script will help to create expressions for logging the input values of a PowerShell script. | |
.EXAMPLE | |
PS C:\> .\Build-ParamLog.ps1 -Script C:\Test.PS1 -Prefix Log | |
Above execution will create expressions with prefix Log, see below. | |
Log "[string]:UserName : $UserName" | |
Log "[string]:DomainName : $DomainName" | |
Log "[int]:OtherParameter : $OtherParameter" | |
.EXAMPLE | |
PS C:\> .\Build-ParamLog.ps1 -Script C:\Test.PS1 -Prefix Log -icm | |
Above execution will create expressions with prefix Log including CommonParameters, see below. | |
Log "[string]:UserName : $UserName" | |
Log "[string]:DomainName : $DomainName" | |
Log "[int]:OtherParameter : $OtherParameter" | |
Log "[System.Management.Automation.ActionPreference]:ErrorAction : $ErrorAction" | |
Log "[System.Management.Automation.ActionPreference]:WarningAction : $WarningAction" | |
Log "[System.Management.Automation.ActionPreference]:InformationAction : $InformationAction" | |
Log "[switch]:Verbose : $Verbose" | |
Log "[switch]:Debug : $Debug" | |
Log "[string]:ErrorVariable : $ErrorVariable" | |
Log "[string]:WarningVariable : $WarningVariable" | |
Log "[string]:InformationVariable : $InformationVariable" | |
Log "[string]:OutVariable : $OutVariable" | |
Log "[int]:OutBuffer : $OutBuffer" | |
Log "[string]:PipelineVariable : $PipelineVariable" | |
.EXAMPLE | |
PS C:\> .\Build-ParamLog.ps1 -Script C:\Test.PS1 | |
Above execution will create expressions with default prefix Write-Output, see below. | |
Write-Output "[string]:UserName : $UserName" | |
Write-Output "[string]:DomainName : $DomainName" | |
Write-Output "[int]:OtherParameter : $OtherParameter" | |
.NOTES | |
Supports PowerShell 3.0,4.0,5.0,5.1 and 6.x versions | |
#> | |
#requires -version 3.0 | |
[alias('gpl')] | |
param( | |
#Script path to build parameter log expression | |
[Parameter(Mandatory = $true)] | |
[String]$Script, | |
#Prefix for each parameter expression output | |
[String]$Prefix = 'Write-Output', | |
#If mentioned, CommonParameters will be included in the output | |
[Alias('icm')] | |
[Switch]$IncludeCommonParameters | |
) | |
If([IO.Path]::GetExtension($Script) -ne '.ps1' ){ | |
Throw "$Script is not a PowerShell script, please provide a PowerShel script." | |
} | |
If( -not (Test-Path -Path $Script)){ | |
Throw "Unable to locate ,make sure $Script is available" | |
} | |
$Command = Get-Command -Name $Script | |
if( $IncludeCommonParameters.IsPresent ){ | |
$FilteredList = $Command.Parameters.Values | |
} | |
else{ | |
$FilteredList = $Command.Parameters.Values | Where-Object -FilterScript {$_.Name -notin [System.Management.Automation.Cmdlet]::CommonParameters} | |
} | |
$FilteredList | ForEach-Object -Process { "$Prefix `"[$($_.ParameterType)]:$($_.Name) : $('$' + $($_.Name))`"" } | |
Hopes this saves copy pastes and mouse clicks...
Enjoy exploring PowerShell !!!