hi all At line:3 char:1 + throw "hi all" + ~~~~~~~~~~~~~~ + CategoryInfo : OperationStopped: (hi all:String) [], RuntimeException + FullyQualifiedErrorId : hi all
Time CPU Core #1 CPU Core #2 CPU Core #3 CPU Core #4 CPU Package HDD Temperature Average --------------------------------------------------------------------------------- 12:17:3165696665695364 12:17:3663626359625360 12:17:4162595959625359 12:17:4661626258625360 12:17:5170686363705364 12:17:5659605556615357 12:18:0260605761615359 12:18:0765686162685363 WARNING: HardwareMonitor closed.
Neujahrstag : @{datum=2023-01-01; hinweis=} Karfreitag : @{datum=2023-04-07; hinweis=} Ostermontag : @{datum=2023-04-10; hinweis=} Tag der Arbeit : @{datum=2023-05-01; hinweis=} Christi Himmelfahrt : @{datum=2023-05-18; hinweis=} Pfingstmontag : @{datum=2023-05-29; hinweis=} Tag der Deutschen Einheit : @{datum=2023-10-03; hinweis=} 1. Weihnachtstag : @{datum=2023-12-25; hinweis=} 2. Weihnachtstag : @{datum=2023-12-26; hinweis=}
或者,提交额外的参数以获取给定州的特定假日:
1
PS> Get-GermanHoliday-Stateni-Year2023
假设您想知道德国节日 “Christi Himmelfahrt” 的日期。以下是获取该信息的方法:
1 2 3 4 5 6 7 8 9
# specify the name of the holiday to look up $holidayName = 'Christi Himmelfahrt'
# get all holiday information $holidays = Get-GermanHoliday # get the particular holiday we are after, read the property "datum" # and convert the string ISO format to a real DateTime: $date = $holidays.$holidayName.datum -as [DateTime] $date