Servidor
1 |
echo '<html><title>hola</title></html>' | nc -l -p 99 -q 1 |
Cliente (PowerShell)
1 2 3 4 5 6 7 8 |
$IE= new-object -com InternetExplorer.Application $IE.navigate2("http://192.168.1.162") while ($IE.busy) { sleep -milliseconds 100 } $IE.visible=$true |