Add scripts
This commit is contained in:
parent
45b95998ae
commit
8609b6ff17
10 changed files with 213 additions and 0 deletions
7
Scripts/ConvertSecondsTo-TimeSpan.psm1
Normal file
7
Scripts/ConvertSecondsTo-TimeSpan.psm1
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
function ConvertSecondsTo-TimeSpan {
|
||||
param (
|
||||
$insec
|
||||
)
|
||||
$TimeSpan = [TimeSpan]::fromseconds($insec)
|
||||
"{0:dd' day 'hh\:mm\:ss}" -f $TimeSpan
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue