The password for the ASPNET account

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

  1. #1

    Default Re: The password for the ASPNET account

    this set the account aspnet_wp.exe will run under, and thus the default
    account for all asp.net pages. you have three options

    1) use the local system account "userName=system"
    2) use the default local account generated by asp.net filter
    "userName=machine". you supply a password, or have one that will be
    generated. the password is only generated once and is stored.
    3) use a user supplied account and password.



    "Abhishek Srivastava" <abhishek@nospam.net> wrote in message
    news:OxbDrunWDHA.1536@TK2MSFTNGP11.phx.gbl...
    > Hello All,
    >
    > I want to understand what does the following line mean in the
    > machine.config file
    >
    > <processModel enable="true" userName="machine" password="AutoGenerate"
    > />
    >
    > What does the AutoGenerate mean in the password attribute? Is the
    > password generated everytime ?
    >
    > Otherwise how does IIS know which password is to be supplied when
    > running an aspx page?
    >
    > thanks for your help.
    >
    > regards,
    > Abhishek.
    >

    bruce barker Guest

  2. Similar Questions and Discussions

    1. ASPNET account locking out
      We have in the last few months been having an issue with the ASPNET account on our production web server locking out. It's been sporadic, on...
    2. Using LogonUser API in ASP.net with an account other than ASPNet account
      I am trying to use the LogonUser API function from ASP.Net. This works fine on my machine which is Windows XP but fails with error code 1314 on...
    3. ASPNET Account
      I needed to go to my user accounts when I discovered this aspnet machine account.I didn't know where it came from so I deleted the account. Now I...
    4. ASPNET Account not created
      I am running Windows XP Pro, I have IIS installed and I am developing an asp.net application (VS2002). I didn't have an ASPNET account (system came...
    5. ASPNET account on Win2k3
      Hello, I have the following problem: I installed a web app on IIS 6 in Win2k3 EE. Now, whenever I try to log on to my SQL Service, I get Login...
  3. #2

    Default Re: The password for the ASPNET account

    Hi Abhishek:
    >
    >What does the AutoGenerate mean in the password attribute? Is the
    >password generated everytime ?
    >
    The password is not generated everytime. This attribute is just a
    signal to get the password from the local system authority (lsa).

    More detail here:
    [url]http://msdn.microsoft.com/vstudio/using/building/web/default.aspx?pull=/library/en-us/dnnetsec/html/SecNetHT01.asp[/url]

    --
    Scott
    --
    Scott
    Scott Allen 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