I want to open the port number 1433 in Windows Server 2003 Enterprise Edition (5.2, Build 3790) without any Service Pack with out having Firewall, exists a way for achieve this via prompt?

EDIT: I dont have Service Pack 1, so I cant use the firewall option in netsh..

thanks!

link|improve this question

Please install the service pack, it makes me nervous. – nray Sep 27 '09 at 15:34
feedback

4 Answers

up vote 2 down vote accepted

If you are running the RTM build you're probably using the Internet Connection Firewall (ICF). KB317530 describes how to open a port if you are using ICF (see step 6).

Edit: I just saw you want to do this via the command line. AFAIK there is no built-in command line interface for ICF. However you could use the Internet Connection Firewall Utility for this. (It's for Windows XP Embedded but it should work on Windows Server 2003.) This MSDN article describes how to use the tool.

link|improve this answer
the utility attemps to restart server?, I mean is necesary to restart the SO, cause that servers is running on production enviroment. Thanks – Angel Escobedo Jul 20 '09 at 18:50
feedback

I'm a little confused as to what your asking, but if your trying to open a port in Windows firewall using the command prompt rather than GUI you can do so with netsh

netsh firewall add portopening TCP 1433 NameOfService enable
link|improve this answer
feedback

To open a port 1433 on the Windows Firewall

netsh firewall add portopening TCP 1433 ExceptionName enable subnet
link|improve this answer
feedback

hey brother, you can see this manual for newbies on how to open ports..it covers the windows section and the router section as well

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.