This page is grossly outdated. Like, circa 2001 or so, if that late. Please don't contact me for support on the stuff here. I haven't touched Windows NT for almost ten years.
The following are some of the things that I do on my NT machines to make them work a little better.
perl -MWin32::AdminMisc -e "Win32::AdminMisc::ExitWindows(EWX_REBOOT|EWX_FORCE);"Or, with the AINTX tools,
shutdown -rfI prefer the Perl way, just because I'm a Perl nut. Also, it does it immediately, while the AINTX version starts a 1 minute timer, just in case someone is at the console, it gives them a chance to finish what they're doing.
[boot loader] timeout=20 default=multi(0)disk(0)rdisk(0)partition(1)\WINNT [operating systems] multi(0)disk(0)rdisk(0)partition(1)\WINNT="Windows NT Server Version 4.00" multi(0)disk(0)rdisk(0)partition(1)\WINNT="Windows NT Server Version 4.00 [VGA mode]" /basevideo /sosIf you have a multi-boot system, there may be more options listed there. You can change the timeout value to anything. It's a good idea to have it a few seconds or more, just in case you need to boot to VGA mode - like if your video driver flakes out. I find that 5 seconds is long enough.
For example, MS SQL server is the best database server for NT (again, in my opinion). SQL Server 6.5 was great, and SQL Server 7.0 was an enormous improvement. I was truly impressed.
On the flip side, IIS is perhaps the worst web server available for NT. It is slow, cumbersome, and contains all sorts of "value added" features that seem to add overhead, but no real value.
So, I put Apache on my NT machines, and I use SQL Server 7.0 for my data. I use "tera term" instead of the native NT telnet client, because it works the way that I think a telnet client should work. I use the FTP server that is part of IIS, because it is simple and lightweight, and just does FTP. I use Perl for administrative tasks, even when there is a MS tool to do said tasks, because it is simpler, and more configurable.
This is the "best of breed" approach. Find the tool that does the job best and use it until you find another tool that does the job better. Yes, it takes more work to find these tools, but the work saved by having a better tool more than makes up for this.