How to Create Aliases for Commands in Windows

The easiest way to create command aliases in Windows is by using doskey command. C:>doskey p=ping $* C:>p 4.2.2.2 Pinging 4.2.2.2 with 32 bytes of data: Reply from 4.2.2.2: bytes=32 time=14ms TTL=55 Reply from 4.2.2.2: bytes=32 time=14ms TTL=55 Reply from 4.2.2.2: bytes=32 time=14ms TTL=55 Reply from 4.2.2.2: bytes=32 time=14ms TTL=55 Ping statistics for 4.2.2.2: Packets:…

Free SSH Daemon for Windows

There are a couple options for a Windows-based OpenSSH daemon that are free. The top two that I prefer are freeSSHd and widely popular OpenSSH with Cygwin. freeSSHd My top pick probably goes to freeSSHd because of it’s simplicity and quickness to get setup and going. http://www.freesshd.com/ Cygwin + OpenSSH There are TONS of tutorials…