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 comes in the IIS
resource kit.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




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 does anyone know the command line
> in a DOS prompt to stop and restart IIS?
>
> Thanks.
>
> Robert Orlini
> HW Wilson
> 718-588-8400 x2656
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




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 stopped successfully.


C:\>net start "World Wide Web Publishing Service"
The World Wide Web Publishing Service service is starting.
The World Wide Web Publishing Service service was started successfully.

AJ

Aaron Johnson
http://cephas.net/blog/
[EMAIL PROTECTED]
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




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.
/REBOOTONERROR  Reboot the computer if an error occurs when starting,
stopping, or restarting Internet services.
/NOFORCEDo not forcefully terminate Internet services if
attempting to stop them gracefully fails.
/TIMEOUT:valSpecify the timeout value ( in seconds ) to wait for
a successful stop of Internet services. On expiration
of this timeout the computer can be rebooted if
the /REBOOTONERROR parameter is specified.
The default value is 20s for restart, 60s for stop,
and 0s for reboot.
/STATUS Display the status of all Internet services.
/ENABLE Enable restarting of Internet Services
on the local system.
/DISABLEDisable restarting of Internet Services
on the local system.

-Original Message-
From: Robert Orlini [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 11: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 
stop and restart IIS? 

Thanks.

Robert Orlini
HW Wilson
718-588-8400 x2656


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




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 know the command line in a DOS
prompt to stop and restart IIS? 

Thanks.

Robert Orlini
HW Wilson
718-588-8400 x2656


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




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 [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 11: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 stop and restart IIS?

Thanks.

Robert Orlini
HW Wilson
718-588-8400 x2656


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




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-Talk
Subject: stop/restart


I know this may be a bit OT but does anyone know the command line in a DOS
prompt to stop and restart IIS? 

Thanks.

Robert Orlini
HW Wilson
718-588-8400 x2656


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




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 stop and restart IIS? 

Thanks.

Robert Orlini
HW Wilson
718-588-8400 x2656


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4