mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-07-26 11:49:17 +00:00
internal function to find dates
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
function Get-ChoosenDates {
|
||||
[CmdletBinding()]
|
||||
param(
|
||||
[ValidateSet('Everything', 'PastHour', 'CurrentHour', 'PastDay', 'CurrentDay', 'PastMonth', 'CurrentMonth', 'PastQuarter', 'CurrentQuarter', 'Last14Days', 'Last7Days', 'Last3Days', 'Last1Days')][string] $DateRange
|
||||
)
|
||||
#$Dates = @(
|
||||
# Report Per Hour
|
||||
if ($DateRange -eq 'PastHour') {
|
||||
$DatesPastHour = Find-DatesPastHour
|
||||
if ($DatesPastHour) {
|
||||
$DatesPastHour
|
||||
}
|
||||
}
|
||||
if ($DateRange -eq 'CurrentHour') {
|
||||
$DatesCurrentHour = Find-DatesCurrentHour
|
||||
if ($DatesCurrentHour) {
|
||||
$DatesCurrentHour
|
||||
}
|
||||
}
|
||||
# Report Per Day
|
||||
if ($DateRange -eq 'PastDay') {
|
||||
$DatesDayPrevious = Find-DatesDayPrevious
|
||||
if ($DatesDayPrevious) {
|
||||
$DatesDayPrevious
|
||||
}
|
||||
}
|
||||
if ($DateRange -eq 'CurrentDay') {
|
||||
$DatesDayToday = Find-DatesDayToday
|
||||
if ($DatesDayToday) {
|
||||
$DatesDayToday
|
||||
}
|
||||
}
|
||||
# Report Per Month
|
||||
if ($DateRange -eq 'PastMonth') {
|
||||
# Find-DatesMonthPast runs only on 1st of the month unless -Force is used
|
||||
$DatesMonthPrevious = Find-DatesMonthPast -Force $true
|
||||
if ($DatesMonthPrevious) {
|
||||
$DatesMonthPrevious
|
||||
}
|
||||
}
|
||||
if ($DateRange -eq 'CurrentMonth') {
|
||||
$DatesMonthCurrent = Find-DatesMonthCurrent
|
||||
if ($DatesMonthCurrent) {
|
||||
$DatesMonthCurrent
|
||||
}
|
||||
}
|
||||
# Report Per Quarter
|
||||
if ($DateRange -eq 'PastQuarter') {
|
||||
# Find-DatesMonthPast runs only on 1st of the quarter unless -Force is used
|
||||
$DatesQuarterLast = Find-DatesQuarterLast -Force $true
|
||||
if ($DatesQuarterLast) {
|
||||
$DatesQuarterLast
|
||||
}
|
||||
}
|
||||
if ($DateRange -eq 'CurrentQuarter') {
|
||||
$DatesQuarterCurrent = Find-DatesQuarterCurrent
|
||||
if ($DatesQuarterCurrent) {
|
||||
$DatesQuarterCurrent
|
||||
}
|
||||
}
|
||||
if ($DateRange -eq 'Everything') {
|
||||
$DatesEverything = @{
|
||||
DateFrom = Get-Date -Year 1900 -Month 1 -Day 1
|
||||
DateTo = Get-Date -Year 2300 -Month 1 -Day 1
|
||||
}
|
||||
$DatesEverything
|
||||
}
|
||||
if ($DateRange -eq 'Last1days') {
|
||||
$DatesCurrentDayMinusDaysX = Find-DatesCurrentDayMinuxDaysX -days 1
|
||||
if ($DatesCurrentDayMinusDaysX) {
|
||||
$DatesCurrentDayMinusDaysX
|
||||
}
|
||||
}
|
||||
if ($DateRange -eq 'Last3days') {
|
||||
$DatesCurrentDayMinusDaysX = Find-DatesCurrentDayMinuxDaysX -days 3
|
||||
if ($DatesCurrentDayMinusDaysX) {
|
||||
$DatesCurrentDayMinusDaysX
|
||||
}
|
||||
}
|
||||
if ($DateRange -eq 'Last7days') {
|
||||
$DatesCurrentDayMinusDaysX = Find-DatesCurrentDayMinuxDaysX -days 7
|
||||
if ($DatesCurrentDayMinusDaysX) {
|
||||
$DatesCurrentDayMinusDaysX
|
||||
}
|
||||
}
|
||||
if ($DateRange -eq 'Last14days') {
|
||||
$DatesCurrentDayMinusDaysX = Find-DatesCurrentDayMinuxDaysX -days 14
|
||||
if ($DatesCurrentDayMinusDaysX) {
|
||||
$DatesCurrentDayMinusDaysX
|
||||
}
|
||||
}
|
||||
#)
|
||||
#$Dates
|
||||
}
|
||||
Reference in New Issue
Block a user