Public/Initialize-SqlCmd.ps1
function Initialize-SqlCmd { <# .SYNOPSIS Configures SqlCmd .DESCRIPTION Invoke-SqlCmd requires a path of the SQLCMD binary, that depend on your current installation. #> [CmdletBinding()] param( # Path to the SQLCMD binary. [Parameter( Mandatory )] [ValidateScript({ $_.Exists })] [System.IO.FileInfo] $Path ) $Global:SqlCmd = $Path } |