ModuleForgeCaseTest.psm1
|
<# Module created by ModuleForge ModuleForge Version: 1.2.2 BuildDate: 2026-05-19T13:38:17 #> function Get-MFCaseTestValue { <# .SYNOPSIS Return a string .DESCRIPTION Actually, return this specific string: 4ce21793-6112-4269-9a7a-f972edbd5327 ------------ .EXAMPLE Get-MFCaseTestValue #### OUTPUT 4ce21793-6112-4269-9a7a-f972edbd532 .NOTES Author: Adrian Andersson .OUTPUTS [STRING] - Returns a specific string of '4ce21793-6112-4269-9a7a-f972edbd532' #> [CmdletBinding()] PARAM( ) begin{ #Return the script name when running verbose, makes it tidier write-verbose "===========Executing $($MyInvocation.InvocationName)===========" #Return the sent variables when running debug Write-Debug "BoundParams: $($MyInvocation.BoundParameters|Out-String)" } process{ return '4ce21793-6112-4269-9a7a-f972edbd5327' } } |