Hi,
we want make an asp page that create a forder in the server.
I can copy a template folder structure (with subfolder).
This template have several permission settigs for every folder.
This is a structure for archive our new job (document, fax, etc.)
The user go in the intranet page and with a form create a new job the script
create the folder structure and open it.
Any idea ?
Thank in advance
Tino

Re: how to copy folder with permission by Dave

Dave
Mon Jan 12 11:15:48 CST 2004

You can use XCOPY for this. At a command prompt, type "xcopy /?" to get a
list of the command line switches. One of the options will copy the
permissions.


"Tino" <a@dontwriteme.it> wrote in message
news:bttj3e$rh$1@lacerta.tiscalinet.it...
> Hi,
> we want make an asp page that create a forder in the server.
> I can copy a template folder structure (with subfolder).
> This template have several permission settigs for every folder.
> This is a structure for archive our new job (document, fax, etc.)
> The user go in the intranet page and with a form create a new job the
script
> create the folder structure and open it.
> Any idea ?
> Thank in advance
> Tino
>
>



Re: how to copy folder with permission by Tino

Tino
Wed Jan 14 06:50:47 CST 2004

ok but how i put xcopy in a intranet web page ?
Thanks

"Dave Nickason" <gwdibble@NOSPAM.frontiernet.net> ha scritto nel messaggio
news:OW3d6%23S2DHA.2184@TK2MSFTNGP12.phx.gbl...
> You can use XCOPY for this. At a command prompt, type "xcopy /?" to get a
> list of the command line switches. One of the options will copy the
> permissions.
>
>
> "Tino" <a@dontwriteme.it> wrote in message
> news:bttj3e$rh$1@lacerta.tiscalinet.it...
> > Hi,
> > we want make an asp page that create a forder in the server.
> > I can copy a template folder structure (with subfolder).
> > This template have several permission settigs for every folder.
> > This is a structure for archive our new job (document, fax, etc.)
> > The user go in the intranet page and with a form create a new job the
> script
> > create the folder structure and open it.
> > Any idea ?
> > Thank in advance
> > Tino
> >
> >
>
>



Re: how to copy folder with permission by Dave

Dave
Wed Jan 14 11:53:36 CST 2004

I think you will get better results if you try this question in one of the
asp groups.


"Tino" <a@dontwriteme.it> wrote in message
news:bu3e67$os0$1@lacerta.tiscalinet.it...
> ok but how i put xcopy in a intranet web page ?
> Thanks
>
> "Dave Nickason" <gwdibble@NOSPAM.frontiernet.net> ha scritto nel messaggio
> news:OW3d6%23S2DHA.2184@TK2MSFTNGP12.phx.gbl...
> > You can use XCOPY for this. At a command prompt, type "xcopy /?" to get
a
> > list of the command line switches. One of the options will copy the
> > permissions.
> >
> >
> > "Tino" <a@dontwriteme.it> wrote in message
> > news:bttj3e$rh$1@lacerta.tiscalinet.it...
> > > Hi,
> > > we want make an asp page that create a forder in the server.
> > > I can copy a template folder structure (with subfolder).
> > > This template have several permission settigs for every folder.
> > > This is a structure for archive our new job (document, fax, etc.)
> > > The user go in the intranet page and with a form create a new job the
> > script
> > > create the folder structure and open it.
> > > Any idea ?
> > > Thank in advance
> > > Tino
> > >
> > >
> >
> >
>
>



Re: how to copy folder with permission by Henry

Henry
Wed Jan 14 14:57:49 CST 2004

Use VB Script:

set objWSH = CreateObject("WScript.Shell")
objWSH.Run(".......")

But you should either look this up on one of the myriad ASP Websites or
post to Web Page Developer ASP/VBS Forums. It's -way- Off Topic here.

--
Henry Craven.

========= Post It Appropriately: ============
SBS 4/4.5 : microsoft.public.backoffice.smallbiz
SBS 2000 : microsoft.public.backoffice.smallbiz2000
SBS 2003 : microsoft.public.windows.server.sbs
=====================================


"Tino" <a@dontwriteme.it> wrote in message
news:bu3e67$os0$1@lacerta.tiscalinet.it...
> ok but how i put xcopy in a intranet web page ?
> Thanks