PowerTip: Find Day of the Week by Using PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to find the day of the week.

Hey, Scripting Guy! Question How can I use Windows PowerShell to easily find the day of the week—for example, Monday,
          Tuesday, or Wednesday?

Hey, Scripting Guy! Answer Use the Get-Date cmdlet to return a DateTime object, and ten select the DayOfTheWeek property:

(get-date).DayOfWeek

0 comments

Discussion is closed.

Feedback usabilla icon