Minimal permissions with an Access Database and 2000 server ?

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Minimal permissions with an Access Database and 2000 server ?

    Hi,

    Does any one knows what account must have the Write Access to allow
    edition on a Access database with an ASP .NET application with Windows
    2000 ?

    Under Windows 2003, it is the Network Service and not the ASPNET
    account.

    Thaks and best regards
    Gilles



    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Gilles LAMBERT Guest

  2. Similar Questions and Discussions

    1. web server permissions for access db
      I have an mdb stored in the "db" folder on an intranet webserver. The mdb is queried via ASP and Jet ole db connection. My permissions are all...
    2. Access 2000 or SQL Server 2000
      Hi I am planning to design a database (destined for the web) that will have between 20000 and 45000 records in it and will receive a lot of reads...
    3. User Permissions in SQL Server 2000
      Hey List! I have a question regarding user permissions. When setting up a user to have access to a database on SQL Server 2000 I am able to deny...
    4. sp_OACreate permissions in SQL Server 2000.
      Mat, Any reasons for not using SQL mail ( master..xp_sendmail ) ? -- Dinesh. SQL Server FAQ at http://www.tkdinesh.com "Mat"...
    5. SQL Server 2000, Exchange, COM-Add in for Outlook XP; Dynamically link ACCESS xp & SQL SERVER???
      Can SQL Server 2000 manage the contacts in Exchange? Is there any connectivity between SQL Server and Outlook XP? Furthermore, can SQL Server...
  3. #2

    Default Re: Minimal permissions with an Access Database and 2000 server ?

    It depends on what you have in the username attribute of the
    processModel your machine.config file for the wp_aspnet process model
    account. Your choices are System or Machine (preferred since it's a
    least-privileged account). You can edit the machine.config file and
    then reset IIS.

    <processModel enable="true"
    userName="MACHINE" password="AutoGenerate" />

    Once you are running as machine, grant ASPNET read, write, delete
    perms on the file share that contains the mdb and the mdw.

    -- Mary
    MCW Technologies
    [url]http://www.mcwtech.com[/url]

    On Wed, 22 Oct 2003 10:44:21 -0700, Gilles LAMBERT
    <webmaster@tutorials-online.com> wrote:
    >Hi,
    >
    >Does any one knows what account must have the Write Access to allow
    >edition on a Access database with an ASP .NET application with Windows
    >2000 ?
    >
    >Under Windows 2003, it is the Network Service and not the ASPNET
    >account.
    >
    >Thaks and best regards
    >Gilles
    >
    >
    >
    >*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    >Don't just participate in USENET...get rewarded for it!
    Mary Chipman Guest

  4. #3

    Default RE: Minimal permissions with an Access Database and 2000 server ?

    Hi Gilles,

    Firstly, I want to thank Mary for her great help in this issue.

    In addition, I think that the following Knowledge Base article is useful to
    you.

    INFO: Implementing Impersonation in an ASP.NET Application
    [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;306158[/url]

    Best regards,

    Jacob Yang
    Microsoft Online Partner Support
    Get Secure! ¨C [url]www.microsoft.com/security[/url]
    This posting is provided "as is" with no warranties and confers no rights.

    Jacob Yang [MSFT] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139