yyyymmddhhmmss formato fecha convert powershell

formato - powershell: ¿cómo formatear get-date en string y eliminar 0''s?



powershell get utc date (3)

$ fileDate = $ fileDate.ToString ("Md-aaaa")

Estoy intentando eliminar ninguno de los ceros a la izquierda en mi fecha cuando ejecuto el cmdlet get-date intentando:

$filedate = get-date -uformat "%m-%d-%Y" $filedate = $filedate.ToString().Replace("0", "")

esto devuelve "01-04-2008"

Quiero que la salida sea "1-4-2008"

alguna idea sobre otra forma de hacer esto?

gracias por adelantado


$filedate = get-date -format "M-d-yyyy"


use cadena de formato como:

get-date -format yyyy/M/d

o

get-date.tostring (aaaa / M / d)