Get-MSTCsInternalModuleVersion
Teams: Get the internal module version
#Requires -Version 5.1
[CmdletBinding()]
Param()
Process {
try {
$result = Get-CsInternalModuleVersion -ErrorAction Stop
[PSCustomObject]@{
Timestamp = Get-Date -Format 'yyyy-MM-dd HH:mm:ss'
Version = $result
}
}
catch { throw }
}This script has no configurable parameters.