map network drive from asp process

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Serge

    map network drive from asp process

    Hi,

    i would map a network drive from a share on another server.

    it works fine with the net use command under user login but it do not work
    from an asp script or dll.

    is this that i have to add the iuser_<computer _name> profile into network
    computer that share it resources?

    Thanks a lot

    Serge

  • Ray at

    #2
    Re: map network drive from asp process

    MACHINE1\IUSR_M ACHINE1 will not be recognized as an authorized user on
    MACHINE2. If you use DOMAIN\DomainAc count for your IIS processes, that will
    not be the case. You will be able to grant share and NTFS permissions to
    the domain user and be able to access shares. Either that, or you can
    synchronize your IUSR accounts.

    Also, instead of NET USE'ing a drive, I suggest you just use a UNC path to
    the share\share.

    Here's where you can find info on synchronizing IUSR accounts.


    (Synchronizing the IUSR_machine accounts section)

    Ray at work

    "Serge" <sys4096@hotmai l.com> wrote in message
    news:Xns948A5B1 D91CC5sbouchard governsoftw@207 .46.248.16...[color=blue]
    > Hi,
    >
    > i would map a network drive from a share on another server.
    >
    > it works fine with the net use command under user login but it do not work
    > from an asp script or dll.
    >
    > is this that i have to add the iuser_<computer _name> profile into network
    > computer that share it resources?
    >
    > Thanks a lot
    >
    > Serge
    >[/color]


    Comment

    Working...