PoshCode Archive  Artifact [e005db8d66]

Artifact e005db8d66afa5b7d6e50adebc918e0d4c8ba351f01de9d729d8e2861e7410a5:

  • File Get-Calendar.ps1 — part of check-in [6bf5e59eeb] at 2018-06-10 13:42:35 on branch trunk — Let me know about bugs. Oh! and follow me on twitter @gregzakharov=) (user: greg zakharov size: 1811)

# encoding: ascii
# api: powershell
# title: Get-Calendar
# description: Let me know about bugs. Oh! and follow me on twitter @gregzakharov=)
# version: 0.1
# type: function
# author: greg zakharov
# license: CC0
# function: Get-Calendar
# x-poshcode-id: 4530
# x-derived-from-id: 5548
# x-archived: 2015-05-08T16:44:49
# x-published: 2015-10-18T16:13:00
#
#
Set-Alias cal Get-Calendar

function Get-Calendar {
  <#
    .LINK
        Follow me on twitter @gregzakharov
        http://msdn.microsoft.com/en-us/library/System.Globalization.aspx
        Get-Date
  #>
  param(
    [Parameter(Mandatory=$false,
               Position=0,
               ValueFromPipeline=$true)]
    [ValidateRange(1,12)]
    [Int32]$Month = (Get-Date -u %m),
    
    [Parameter(Mandatory=$false,
               Position=1,
               ValueFromPipeline=$true)]
    [ValidateScript({$_ -ge 2000})]
    [Int32]$Year = (Get-Date -u %Y)
  )
  
  begin {
    [Globalization.DatetimeFormatInfo]::CurrentInfo.DayNames | % {$arr = @()}{$arr += $_.Substring(0, 2)}
    $cal = [Globalization.CultureInfo]::CurrentCulture.Calendar
    $dow = [Int32]$cal.GetDayOfWeek([DateTime]([String]$Month + ".1." + [String]$Year))
  }
  process {
    $loc = [Globalization.DatetimeFormatInfo]::CurrentInfo.MonthNames[$Month - 1] + ' ' + $Year
    $loc = [String]((' ' * [Math]::Round((20 - $loc.Length) / 2)) + $loc)
    
    if ($dow -ne 0) {for ($i = 0; $i -lt $dow; $i++) {$arr += '  '}}
    1..$cal.GetDaysInMonth($Year, $Month) | % {
      if ($_.ToString().Length -eq "1") {$arr += ' ' + [String]$_}
      else {$arr += [String]$_}
    }
  }
  end {
    Write-Host $loc
    for ($i = 0; $i -lt $arr.Length; $i+=6) {
      Write-Host $arr[$i..($i + 6)]
      $i++
    }
    ""
  }
}