GetTimeStamp
Function GetTimeStamp() { if((Get-Date).Month -le 10) { $curMonth = "0" + $((Get-Date).Month) }else {$curMonth = $((Get-Date).Month)} if((Get-Date).Day -le 10) { $curDay = "0" + $((Get-Date).Day) }else {$curDay = $((Get-Date).Day)} $CurrentTime…