How to get full path of libaries/Pictures in windows 7
Hi,
Under windows 7, in the windows explorer view there is a new feature called "Libraries" which have virtual links to "Pictures", "documents" etc.. plus you can add your own virtual link.
These libraries are virtual paths.
In either vb.net of c#:
Can anyone please tell me how to get the full physical path of any of the libraries.
The folders name may be "Pictures" or "Downloads", and what I would like to access is the full physical path directory for each defined library.
e.g "Pictues" would be say "C:\Users\me\Pictures"
or "Downloads" would be say "C:\Users\me\Downloads"
I have looked a special folders but I cannot see anything that refers to these new "virtual libraries"
Thanks
Answers (1)
2
I found the Solution:
Finf the Report web config in the below path :
C:\Program Files\Microsoft SQL Server\MSRS12.MSSQLSERVER\Reporting Services\ReportManager\web .config
Replace or add below line: to set admin credential for all users to access the report.
<authentication mode="Windows" /> // Authentication mode to be set to windows<identity impersonate="true " userName="UserName" password="Password"/> // identity impersonate to be set to true and User name & Password of the SQL Server administrator should be added.