Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Find Day of Week

$
0
0

Summary: Learn how to use Windows PowerShell to find the day of the week.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find which day of the week a specific date will occur?

Hey, Scripting Guy! Answer Use the Get-Date cmdlet, and specify day, month, and year parameters, for example:

Get-Date -Month 2 -Day 14 -Year 2015


Viewing all articles
Browse latest Browse all 3333

Trending Articles