Sick of waiting for Microsoft to release a fix to RWW to enable Console access to SBS 2003 and any other Windows Server 2003 systems connected to your SBS network? So am I. So I’ve fixed it. Process is as follows:
Navigate to C:\Inetpub\Remote
Make a copy of tsweb.aspx
Open tsweb.aspx in your favorite editor (mine’s Notepad++)
Line 304 looks like this:
MsRdpClient.AdvancedSettings2.ConnectToServerConsole = console
Replace it with this:
version = MsRdpClient.Version
if strcomp(version,"6.0.6001") < 0 then
MsRdpClient.AdvancedSettings2.ConnectToServerConsole = console
else
MsRdpClient.AdvancedSettings2.ConnectToServerConsole = false
MsRdpClient.AdvancedSettings6.ConnectToAdministerServer = console
end if
Save the changes. You can now establish console sessions to your SBS 2003 box and any other Windows Server 2003 boxes on your SBS network.
If anyone’s got a better way for displaying code in a Blogger page I’d be interested in knowing about it.

