Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Stop FTP server in command line ??

Status
Not open for further replies.

guber

Programmer
Jan 4, 2002
27
0
0
US
Someone knows how I stop a Ftp server in command line ??
 
I don't know off hand what the service name is for ftp, but you can find that in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services

then you can use the net command:
net stop (service name)

net is a great command...lots of stuff you can do with it.
type 'net ?' to see more

you can also get help on alot of the sub things you get from 'net ?'.... try:
net (thing from net ?) ?


 
If you simply type "net start" it will give you a list of all currently running services.
 
To stop the ftp publishing service from the command prompt type:

net stop msftpsvc <enter>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top