I am working with the PowerShell command. The following command gives parameter format error while executing to get timezone on specific UTC
.
C:\Windows\system32\tzutil /l | find /I "utc-06"
FIND: Parameter format not correct
I am working with the PowerShell command. The following command gives parameter format error while executing to get timezone on specific UTC
.
C:\Windows\system32\tzutil /l | find /I "utc-06"
FIND: Parameter format not correct
Find expects literal doublequotes. You can also use findstr or select-string instead.
tzutil /l | find /i '"utc-06"'
tzutil /l | findstr /i utc-06
tzutil /l | select-string utc-06