Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I am trying to generate timestamp with the following format 2017-11-11T19:33:27.
2017-11-11T19:33:27
With Get-Date -Format o I am able generate 2017-11-13T07:39:32.7958466-05:00
Get-Date -Format o
2017-11-13T07:39:32.7958466-05:00
How can I remove milliseconds .7958466-05:00 in the generated output?
.7958466-05:00
Get-Content
Get-Date
Use Get-Date -Format s instead of Get-Date -Format o
Get-Date -Format s
Formatting Dates and Times
Add a comment
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
Get-Contentinstead ofGet-Date