PowerShell: Rinominare un file con la data corrente
Lo script PowerShell rinomina (Rename-Item ) il file "fileDiLog.txt" nel formato "Log_yyyyMMdd_HHmmss.log" usando la data corrente (Get-Date).
PowerShell
("Log_" + (Get-Date -Format "yyyyMMdd_HHmmss") + ".log") | Rename-Item -Path fileDiLog.txt -NewName {$_}