diff --git a/Start-FastPing.psm1 b/Start-FastPing.psm1 index aaf30bf..ac62168 100644 --- a/Start-FastPing.psm1 +++ b/Start-FastPing.psm1 @@ -189,7 +189,8 @@ Function Start-FastPing { } if ($Port) { - $rslt | Add-Member -MemberType NoteProperty -Name "Port $Port Open" -Value (portKnock -cn $ComputerName -prt $Port) + $rslt | Add-Member -MemberType NoteProperty -Name "RemotePort" -Value $Port + $rslt | Add-Member -MemberType NoteProperty -Name "TcpTestSucceeded" -Value (portKnock -cn $ComputerName -prt $Port) } } diff --git a/TMK-CoreModules.psd1 b/TMK-CoreModules.psd1 index af16645..7f4db0c 100644 --- a/TMK-CoreModules.psd1 +++ b/TMK-CoreModules.psd1 @@ -2,7 +2,7 @@ # Module manifest for shared modules' ### @{ - ModuleVersion = '1.5.5' + ModuleVersion = '1.5.6' GUID = '0c83f152-41a4-4997-92da-c06923fb3e12' Author = 'Travis M Knight' CompanyName = 'TMK World Headquarters' @@ -79,7 +79,8 @@ * 2022-07-20: tmknight: v1.5.4.3: Update Find-File to allow UNC path and avoid double-search of source path * 2022-07-21: tmknight: v1.5.4.3: Update Write-InlineProgress to randomize temp filename and code cleanup * 2022-08-18: tmknight: v1.5.4.4: Update Find-File, Start-MultiThreading and code cleanup - * 2023-01-06: tmknight: v1.5.5: Remove support for PowerShell v4.0 and change to semantic versioning' + * 2023-01-06: tmknight: v1.5.5: Remove support for PowerShell v4.0 and change to semantic versioning + * 2023-01-10: tmknight: v1.5.6: Align Start-FastPing output with Test-NetConnection' } } }