Services you will be looking for are:
IISADMIN
W3SVC
MSFTPSVC
SMTPSVC

If memory serves, the last three require IISADMIN to be running..

Take for example a batch script I use to maintain a web server (yes, I know it is not KiXtart).

Code:

::net stop openwebscope
net stop msftpsvc
net stop w3svc
::net stop smtpsvc
net stop iisadmin /y
cd %temp%
del *.* /s/q
for /f "Tokens=*" %%i in ('Dir /B %temp%') do rd /s /q "%%i"
cd %windir%
del *.tmp /s/q
net start iisadmin
net start w3svc
net start msftpsvc
::net start smtpsvc
::net start openwebscope
pause



HTH,

Kent
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's