PreConfigured IIS
Guest
Posts: n/a
Posts: n/a
> HI Embedded Badies
>
> I am Amit , working on one diffrent requirement for the prodcut ,
> please help me to get me out of this problem..........the Problem
> is...........
>
> I have made a headless system with web advantage .I want the IIS to be
> preconfigured.I have already made the snap in appear but this won't
> solve my issue.Sometime I might have to preconfigure even the
> Administrative configirations of the IIS and that you are working on
> it ..
>
>
> Any update on this will be highly appeciated
>
> Thanks & Regards
> AMIT
> HI Embedded Badies
>
> I am Amit , working on one diffrent requirement for the prodcut ,
> please help me to get me out of this problem..........the Problem
> is...........
>
> I have made a headless system with web advantage .I want the IIS to be
> preconfigured.I have already made the snap in appear but this won't
> solve my issue.Sometime I might have to preconfigure even the
> Administrative configirations of the IIS and that you are working on
> it ..
>
>
> Any update on this will be highly appeciated
>
> Thanks & Regards
> AMIT
> I have made a headless system with web advantage .I want the IIS to beYou can use adsutil.vbs file from the XP prof installation and run at
> preconfigured.I have already made the snap in appear but this won't
> solve my issue.Sometime I might have to preconfigure even the
> Administrative configirations of the IIS and that you are working on
> it ..
>
> Hi, AMIT PURI!
>> > I have made a headless system with web advantage .I want the IIS to be> You can use adsutil.vbs file from the XP prof installation and run at
> > preconfigured.I have already made the snap in appear but this won't
> > solve my issue.Sometime I might have to preconfigure even the
> > Administrative configirations of the IIS and that you are working on
> > it ..
> >
> the FBA stage something like this (be care - email client added some
> CR/LFs, but you have to catch the idea):
>
> @echo off
> rem WebCCTV IIS setup file. Copyright (C) Quadrox NV, 2002-2003
> rem This batch file is performing setup of virtual directories for the
> WebCCTV device
>
> rem Setup basic settings
> cscript //Nologo adsutil.vbs SET W3SVC/LogFileDirectory "D:\Logs"
>
> rem cscript //Nologo adsutil.vbs SET W3SVC/1/ServerAutoStart True
> cscript //Nologo adsutil.vbs SET W3SVC/1/ServerComment "WebCCTV
> control site"
> cscript //Nologo adsutil.vbs SET W3SVC/1/ConnectionTimeout 300
> cscript //Nologo adsutil.vbs SET W3SVC/1/DefaultDoc
> "Default.htm,Default.asp"
> cscript //Nologo adsutil.vbs SET W3SVC/1/AspScriptErrorSentToBrowser False
> cscript //Nologo adsutil.vbs SET W3SVC/1/AspScriptTimeout 120
> cscript //Nologo adsutil.vbs SET W3SVC/1/AspSessionTimeout 5
> rem cscript //Nologo adsutil.vbs ENUM W3SVC/1
>
> rem Delete unnessesary directories
> cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/localstart.asp
> cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/IISHelp
> cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/iisadmin
> rem cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/Scripts
> cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/Printers
> rem cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/tsweb
> rem cscript //Nologo adsutil.vbs ENUM W3SVC/1/ROOT
>
> rem Create /Backup virtual directory
> cscript //Nologo adsutil.vbs CREATE W3SVC/1/ROOT/Backup
> "IIsWebVirtualDir"
> cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessRead
> True
> cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessWrite
> False
> cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessExecute
> False
> cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessScript
> False
> cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessNoRemoteRead
> False
> cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessNoRemoteWrite
> False
> cscript //Nologo adsutil.vbs SET
> W3SVC/1/ROOT/Backup/AccessNoRemoteExecute False
> cscript //Nologo adsutil.vbs SET
> W3SVC/1/ROOT/Backup/AccessNoRemoteScript False
> cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/Path
> "D:\Backup"
> cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/HttpExpires
> "D, 0"
> rem cscript //Nologo adsutil.vbs ENUM W3SVC/1/ROOT/Backup
> Nikolai,Well, actually, I did this for XPe only, but I think that should work
> I find it really curious to knw whether you used for IIS 6.0 or
> 5.5.I guess these should go with only 6.0.As .It was a script thru
> modification to the metabase.bin in the FBA but the versions brought a
> lot of limitations.
>
> Amit,
>
> Nikolai is right with script. Getting on to just preconfigure the IIS
> is not hard.Just follow the steps I mailed u.However if u r getting on
> to administrative tasks then you need to script seperately but might
> be you need to address it in the right place n the FBA.I shall mail
> the details.
>
> Nikolai,
> I find it really curious to knw whether you used for IIS 6.0 or
> 5.5.I guess these should go with only 6.0.As .It was a script thru
> modification to the metabase.bin in the FBA but the versions brought a
> lot of limitations.
>
> Regards
> Kesavan
>
>
> Nikolai Vorontsov <ur.liam@zivkcin> wrote in message news:<OWMXr0vkDHA.744@tk2msftngp13.phx.gbl>...> > Hi, AMIT PURI!
> >> > > I have made a headless system with web advantage .I want the IIS to be> > You can use adsutil.vbs file from the XP prof installation and run at
> > > preconfigured.I have already made the snap in appear but this won't
> > > solve my issue.Sometime I might have to preconfigure even the
> > > Administrative configirations of the IIS and that you are working on
> > > it ..
> > >
> > the FBA stage something like this (be care - email client added some
> > CR/LFs, but you have to catch the idea):
> >
> > @echo off
> > rem WebCCTV IIS setup file. Copyright (C) Quadrox NV, 2002-2003
> > rem This batch file is performing setup of virtual directories for the
> > WebCCTV device
> >
> > rem Setup basic settings
> > cscript //Nologo adsutil.vbs SET W3SVC/LogFileDirectory "D:\Logs"
> >
> > rem cscript //Nologo adsutil.vbs SET W3SVC/1/ServerAutoStart True
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ServerComment "WebCCTV
> > control site"
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ConnectionTimeout 300
> > cscript //Nologo adsutil.vbs SET W3SVC/1/DefaultDoc
> > "Default.htm,Default.asp"
> > cscript //Nologo adsutil.vbs SET W3SVC/1/AspScriptErrorSentToBrowser False
> > cscript //Nologo adsutil.vbs SET W3SVC/1/AspScriptTimeout 120
> > cscript //Nologo adsutil.vbs SET W3SVC/1/AspSessionTimeout 5
> > rem cscript //Nologo adsutil.vbs ENUM W3SVC/1
> >
> > rem Delete unnessesary directories
> > cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/localstart.asp
> > cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/IISHelp
> > cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/iisadmin
> > rem cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/Scripts
> > cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/Printers
> > rem cscript //Nologo adsutil.vbs DELETE W3SVC/1/ROOT/tsweb
> > rem cscript //Nologo adsutil.vbs ENUM W3SVC/1/ROOT
> >
> > rem Create /Backup virtual directory
> > cscript //Nologo adsutil.vbs CREATE W3SVC/1/ROOT/Backup
> > "IIsWebVirtualDir"
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessRead
> > True
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessWrite
> > False
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessExecute
> > False
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessScript
> > False
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessNoRemoteRead
> > False
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/AccessNoRemoteWrite
> > False
> > cscript //Nologo adsutil.vbs SET
> > W3SVC/1/ROOT/Backup/AccessNoRemoteExecute False
> > cscript //Nologo adsutil.vbs SET
> > W3SVC/1/ROOT/Backup/AccessNoRemoteScript False
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/Path
> > "D:\Backup"
> > cscript //Nologo adsutil.vbs SET W3SVC/1/ROOT/Backup/HttpExpires
> > "D, 0"
> > rem cscript //Nologo adsutil.vbs ENUM W3SVC/1/ROOT/Backup
> Now the second problem on which i am working is can we controll PWS inWell, I suppose we can use the same technic for all IIS/PWS since IIS4.0
> the similar manner?
> Hi, AMIT PURI!
>> > Now the second problem on which i am working is can we controll PWS in> Well, I suppose we can use the same technic for all IIS/PWS since IIS4.0
> > the similar manner?
> i.e. WinNT4.0. BTW, What do you mean by control? setup? The script AFAIK
> should work with PWS too.
| | LinkBack | Thread Tools | Display Modes |
![]() |
| Thread Tools | |
| Display Modes | |
| |
| LinkBack |
LinkBack URL |
About LinkBacks |


Linear Mode

Posts: n/a