A causa della risposta di William Jackson , ho trovato una domanda simile su Stack Overflow .
La risposta accettata afferma di usare Powershell e questi comandi:
$(Get-Item ).creationtime=$(Get-Date "mm/dd/yyyy hh:mm am/pm")
$(Get-Item ).lastaccesstime=$(Get-Date "mm/dd/yyyy hh:mm am/pm")
$(Get-Item ).lastwritetime=$(Get-Date "mm/dd/yyyy hh:mm am/pm")
Edit
Due esempi:
(Questo è tratto dai commenti: ) Impostare l'ora di ultimo accesso di un file aaa.csv
all'ora corrente:
$(Get-Item aaa.csv).lastwritetime=$(Get-Date)
``` ```
$(Get-Item foo.txt).creationtime=$(Get-Date "11/24/2015 06:00 am")
Impostare l'ora di creazione di un file foo.txt
al 24 novembre 2015, alle 6:00 del mattino:
&001