[Int]'A'[0]
[Char]65
"gps" | Out-File ejecutar.txt
Invoke-Expression (gc .\ejecutar.txt)
1 | Out-File ejemplo1.txt
(gc ejemplo1.txt)+"modificado" | Out-File ejemplo2.txt
gc .\ejemplo2.txt
Modificar el contenido de un fichero (leer un número de un fichero y sumar un número, después almacenar el varlor)
1 | Out-File ejemplo1.txt
[Int](gc ejemplo1.txt)+1 | Out-File ejemplo2.txt
gc .\ejemplo2.txt
Modificar el contenido de un fichero (leer un número de un fichero y restar un número, después almacenar el varlor)
1 | Out-File ejemplo1.txt
[Int](gc ejemplo1.txt)-1 | Out-File ejemplo2.txt
gc .\ejemplo2.txt
(Get-Random (1..5)) | Out-File aleatorio.txt
"<html><title>"+(Read-Host "Introduzca título")+"</title></html>" | Out-File web.html
start chrome .\web.html
https://www.jesusninoc.com/2017/07/09/9-gestion-de-la-red-en-powershell/
New-NetIPAddress -InterfaceAlias WiFi -IPAddress 192.168.1.10 -PrefixLength 24 -DefaultGateway 192.168.1.1
https://www.tecmint.com/ifconfig-command-examples/
sudo ifconfig eth0 172.16.25.125 netmask 255.255.255.224