i could not find anything to check under Application Pools regarding users?
i found that while i was searching online
"""""""""""""""""""""""""""""""""
I had a similar problem, where an account was recreated in AD with a
different SID, causing the "File exists" error when the user tried to
access his sharepoint site.
I was able to solve it by updating the SID in Sharepoint's UserInfo
table.
CAUTION: Use this procedure at your own risk - I am a Sharepoint
novice.
i.e.
1. Find the problem site by querying the Sites and Webs tables:
select s.Id, w.FullUrl from Sites s inner join Webs w on
s.RootWebId = w.Id
2. Find UserInfo() rows for the problem site & user:
select * from UserInfo where tp_Login='<DOMAIN>\<user>' and
tp_SiteID='<s.Id value from step 1>'
3. Compare the value in the tp_SystemID column with the AD SIDs (old
and new) for the user.
(You will have to somehow determine these SID values, and convert
them from S-n-n-n format to hex format for the comparison).
4. Update the sp_SystemID column to the new SID value for the row
containing the old SID value.
Graeme
""""""""""""""""""""""""""""""""""""
However i could not understand how to query this stuff. I think that he is
talking about querying SQL server but i have no idea how to do it. Is anyone
explain the solution above?
"Bryan Phillips" wrote:
> Basically, check the windows services and the app pools in IIS for that
> old account.
> --
> Bryan Phillips
> MCT, MCSD, MCDBA, MCSE
> Microsoft MVP - Client Application Development
> Blog: http://bphillips76.spaces.live.com
> Web Site: http://www.composablesystems.net
> "Eray" <E...@discussions.microsoft.com> wrote in message
> news:4A8C2418-77C8-419C-BCFE-E389D73F8902@microsoft.com:
> > What do you mean by visiting? i can not explore any web page of sharepoint
> > except central administration. All the other stuff work correctly. i mean
> > shared permissions, stuff like that but sharepoint.
> > "Bryan Phillips" wrote:
> > > You will need to revisit every place you used the test account and
> > > replace it with the new one. Then, it will store the SID for the newly
> > > created account. For this reason, I rarely delete accounts even in
> > > production rather I disable them instead.
> > > --
> > > Bryan Phillips
> > > MCT, MCSD, MCDBA, MCSE
> > > Microsoft MVP - Client Application Development
> > > Blog: http://bphillips76.spaces.live.com
> > > Web Site: http://www.composablesystems.net
> > > "Eray" <E...@discussions.microsoft.com> wrote in message
> > > news:DA13361A-C9FF-4E90-BD9B-6979D4D914C7@microsoft.com:
> > > > I am using Sharepoint v3. i used to have a user on domain named test. This
> > > > account used sharepoint for a while. After that i deleted the user, however
> > > > two days ago i created another account named test. Now when i go to
> > > > sharepoint web site using that account i am getting the error "The file
> > > > exists. (Exception from HRESULT: 0x80070050) ". That user is able to connect
> > > > CenteralAdministration Web Page. I think that is a SID problem. After i
> > > > created that account as same name, the SID was changed. Now sharepoint
> > > > compares SIDs and when it finds that they dont match, it gives that error.
> > > > How can i solve that problem?
> > > > Thank You.