Skip to content

Commit

Permalink
Merge pull request #3 from tmknight/develop
Browse files Browse the repository at this point in the history
v1.5.6
  • Loading branch information
tmknight authored Jan 10, 2023
2 parents a869531 + 3e6ee16 commit 6b6e8df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Start-FastPing.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

}
Expand Down
5 changes: 3 additions & 2 deletions TMK-CoreModules.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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'
}
}
}

0 comments on commit 6b6e8df

Please sign in to comment.