How To Run Telnet Towel.blinkenlights.nl On Windows 10 Fix (360p)
Running the classic ASCII-art version of via Telnet on Windows 10 is a nostalgic "Easter egg" that requires a few setup steps, as the Telnet client is disabled by default for security reasons. phoenixNAP The Setup: Enabling Telnet
This is the quickest way to get up and running. how to run telnet towel.blinkenlights.nl on windows 10
$tcp = New-Object System.Net.Sockets.TcpClient('towel.blinkenlights.nl', 23); $stream = $tcp.GetStream(); $reader = New-Object System.IO.StreamReader($stream); while ($true) while ($stream.DataAvailable) $line = $reader.ReadLine(); Write-Host $line ; Start-Sleep -Milliseconds 100 Running the classic ASCII-art version of via Telnet
