RE: stop/restart

2003-01-30 Thread Dave Watts
> I know this may be a bit OT but does anyone know the > command line in a DOS prompt to stop and restart IIS? net stop iisadmin /y net start iisadmin net start w3svc If you just want to restart the web service, you can just stop and start w3svc. Also, there's an iisreset.exe tool; I think that

RE: stop/restart

2003-01-30 Thread webguy
net start "World Wide Web Publishing Service" net stop net start by it self will list all running services WG > -Original Message- > From: Robert Orlini [mailto:[EMAIL PROTECTED]] > Sent: 30 January 2003 16:51 > To: CF-Talk > Subject: stop/restart > > > I know this may be a bit OT but do

RE: stop/restart

2003-01-30 Thread Aaron Johnson
Hi Robert, > I know this may be a bit OT but does anyone know the command line > in a DOS prompt to stop and restart IIS? -- try this: C:\>net stop "World Wide Web Publishing Service" The World Wide Web Publishing Service service is stopping. The World Wide Web Publishing Service service was

RE: stop/restart

2003-01-30 Thread Andres
IISRESET.EXE (c) Microsoft Corp. 1998-1999 Usage: iisreset [computername] /RESTARTStop and then restart all Internet services. /START Start all Internet services. /STOP Stop all Internet services. /REBOOT Reboot the computer.

RE: stop/restart

2003-01-30 Thread Mike Townend
@Echo Off Echo. Echo Stopping IIS net stop IISAdmin /y Echo. Echo Starting IIS net start W3SVC HTH -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 16:51 To: CF-Talk Subject: stop/restart I know this may be a bit OT but does anyone

RE: stop/restart

2003-01-30 Thread Bryan F. Hogan
NET STOP "ServiceName" Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer Digital Bay Media, Inc. 1-877-72DIGITAL -Original Message- From: Robert Orlini [mai

RE: stop/restart

2003-01-30 Thread Sam Roach
net stop "IIS Admin Service" net start "IIS Admin Service" you also must restart: net start "World Wide Web Publishing Service" net start "FTP Publishing Service" -- Sam -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 8:51 AM To: CF-Ta

RE: stop/restart

2003-01-30 Thread Sam Roach
net stop "IIS Admin Service" net start "IIS Admin Service" -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 8:51 AM To: CF-Talk Subject: stop/restart I know this may be a bit OT but does anyone know the command line in a DOS prompt to st