You should share your code so we can see exactly what you are doing. Also - providing context helps paint us a picture of why you are doing and what problem you are solving, so you should share that too in future posts.
Date Time objects have methods to add/remove time. Given you are working with time, whatever you are dealing with probably shoudl be a date/time object. The reason you search and it says Get-Date as that’s how powershell can easily generate date time objects.
interesting. I hadn’t ever thought about the fact that there isn’t a time-specific object type. But I think maybe you can use the regular DateTime object and just ignore the date part of it?
Using your example.
now we’ve got a DateTime object that represents 1:00am today and we’ve got a method for returning just the “1:00 am” part in a string format we want.
If I want to increment it I can redefine it and use the AddMinutes method