How can I connect to a Windows server using a Command Line Interface? (CLI)

There are several fairly easy options available for remotely managing a remote Windows Server using a command line, including a few native options. Native Options: WinRS/WinRM Windows Remote Shell/Management tool is the easiest way to remotely manage a remote Windows server in a command line utility, and as with most Windows command line utilities, ss64 … Read more

Windows Server restart / shutdown history

The clearest most succinct answer I could find is: How To See PC Startup And Shutdown History In Windows which lists these event ids to monitor (quoted but edited and reformatted from article): Event ID 6005 (alternate): “The event log service was started.” This is synonymous to system startup. Event ID 6006 (alternate): “The event … Read more

100% uptime for a web application

Here is Wikipedia‘s handy chart of the pursuit of nines: Interestingly, only 3 of the top 20 websites were able to achieve the mythical 5 nines or 99.999% uptime in 2007. They were Yahoo, AOL, and Comcast. In the first 4 months of 2008, some of the most popular social networks, didn’t even come close … Read more

Access is denied on mklink

I jumped through all the hoops: Create a non-admin account (in my case, activated the guest account). As Admin, run secpol.msc and grant this account Create Symbolic Link permissions. runas /user:guest cmd to open a command window as the guest.only to get caught on the simplest problem: because I was running as guest, I didn’t have write permissions within the directory. So, As admin, … Read more