1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#Añadir operaciones al fichero "fecha" | Out-File operaciones.txt -Append "hilos" | Out-File operaciones.txt -Append "crear" | Out-File operaciones.txt -Append "imprimir" | Out-File operaciones.txt -Append "comprimir" | Out-File operaciones.txt -Append gc .\operaciones.txt foreach($operaciones in gc .\operaciones.txt) { switch($operaciones) { "fecha"{get-date} "hilos"{Get-Process | select Threads} "crear"{New-Item -Name elque -ItemType File} "imprimir"{echo "hola" | Out-Printer "Microsoft Print to PDF"} "comprimir"{Compress-Archive -LiteralPath .\123-11.txt -CompressionLevel Optimal -DestinationPath 123.zip} } } |