如何以纯文本格式显示当前月份?

时间:2013-01-03 11:49:26

标签: windows powershell keyboard-shortcuts plaintext

有关如何以纯文本格式将日历的当前月份快速打印到剪贴板或Windows环境中的命令的任何建议?在这里要清楚,我希望看到完整的打印月份,类似于您在Windows任务栏中单击时钟时看到的内容。我正在思考一个轻量级的PowerShell脚本,或者可能还有一些其他预先打包的Windows应用程序功能,这些功能可以让我轻松完成。

3 个答案:

答案 0 :(得分:4)

尝试一下:

function Get-Calendar($year=(Get-Date).Year,$month=(Get-Date).Month){
    $dtfi = New-Object System.Globalization.DateTimeFormatInfo
    $AbbreviatedDayNames=$dtfi.AbbreviatedDayNames | ForEach-Object {" {0}" -f $_.Substring(0,2)}

    $header= "$($dtfi.MonthNames[$month-1]) $year"
    $header=(" "*([math]::abs(21-$header.length) / 2))+$header
    $header+=(" "*(21-$header.length))

    Write-Host $header -BackgroundColor yellow -ForegroundColor black
    Write-Host (-join $AbbreviatedDayNames) -BackgroundColor cyan -ForegroundColor black
    $daysInMonth=[DateTime]::DaysInMonth($year,$month)

    $dayOfWeek =(New-Object DateTime $year,$month,1).dayOfWeek.value__
    $today=(Get-Date).Day

    for ($i = 0; $i -lt $dayOfWeek; $i++){Write-Host (" "*3) -NoNewline}
    for ($i = 1; $i -le $daysInMonth; $i++)
    {
        if($today -eq $i){Write-Host ("{0,3}" -f $i) -NoNewline -BackgroundColor red -ForegroundColor white}
        else {Write-Host ("{0,3}" -f $i) -NoNewline -BackgroundColor white -ForegroundColor black}

        if ($dayOfWeek -eq 6) {Write-Host}
        $dayOfWeek = ($dayOfWeek + 1) % 7
    }
    if ($dayOfWeek -ne 0) {Write-Host}
}

PS> Get-Calendar

    January 2013
 Su Mo Tu We Th Fr Sa
        1  2  3  4  5
  6  7  8  9 10 11 12
 13 14 15 16 17 18 19
 20 21 22 23 24 25 26
 27 28 29 30 31

答案 1 :(得分:1)

new-alias  Out-Clipboard $env:SystemRoot\system32\clip.exe
(get-date -Format MMMM) |Out-Clipboard

答案 2 :(得分:0)

日历(将线性日期分为日/月/年的系统)当前没有任何内容。

但是,如果你的意思是在给定的日历中获得DateTime的月份,你需要查看指定一个CultureInfo,它在.NET中包含一个选定的日历:

$d = Get-Date
$d.ToString('MMMM', [System.Globalization.CultureInfo]::CurrentCulture)

有多种方法可以创建自定义CultureInfo或(更一般地)DateTimeFormatInfo的实例,并作为DateTime.ToString()的第二个参数传递。

最简单的方法是获取使用目标日历的CultureInfo实例,例如:

$ci = [System.Globalization.CultureInfo]::CreatedSpecifiedCulture('jp-jp')

MSDN有一整页使用日历:http://msdn.microsoft.com/en-us/library/82aak18x%28v=vs.100%29.aspx(这是PowerShell 3的.NET 4版本)。