Summary: Learn how to use Windows PowerShell to find the day of the week.
How can I use Windows PowerShell to find which day of the week a specific date will occur?
Use the Get-Date cmdlet, and specify day, month, and year parameters, for example:
Get-Date -Month 2 -Day 14 -Year 2015