Ejercicios de PowerShell: haz copias de seguridad para diferentes momentos del día y al final del día haz copia de todo el periódico completo
(Get-Date).ToString("yyyyMMddhh")
$fecha = (Get-Date).ToString("yyyyMMddhh")
mkdir ($fecha) -force
cd $fecha
ls *.html -recurse | %{
copy $_ $fecha
}