The access-rights tag has no wiki summary.
2
votes
3answers
51 views
How to determine that the shell script is safe
I downloaded this shell script from this site.
It's suspiciously large for a bash script. So I opened it with text editor and noticed
that behind the code there is a lot of non-sense characters.
I'm ...
2
votes
1answer
947 views
Problem setting file system access rule
In my app on local network, any user should create a directory on shared folder using this code. test1 is the name of one of the user's folder for example.
DirectoryInfo di = new ...
2
votes
2answers
307 views
How to check a particular user has log on as service right programmatically
For an application I what to check whether a particular user has log on as a service right? How to do this programmatically? I checked in the Internet and could not find out some good resource
...
1
vote
1answer
40 views
Difference between HasEditorAccess and HasEditAccess?
What is the difference between EPiServer.Security.PrincipalInfo.HasEditorAccess and EPiServer.Security.PrincipalInfo.HasEditAccess?
//Alexander
1
vote
1answer
60 views
C#: access right due to inheritance
Below is a simple testing code:
public class A
{
protected int m = 0;
}
internal class B: A
{
public void test(A objA, B objB)
{
base.m++; //OK!
objA.m++; //cannot ...
0
votes
2answers
69 views
How can I check access rights on a given directory?
Currently I have a program that searches a user set directory and sub-directories for music files and adds them to a collection. However if one of the directories it comes accross is protected then ...
0
votes
1answer
461 views
IIS ApplicationPoolIdentity 503 error
I've recently ported to a different hosting company (VDS), and on the new server, installed IIS 7.5 Express, latest versions of PHP and MySQL.
I then copied the files from the old server to new ...
0
votes
1answer
289 views
give access rule permission to the specific user on local network
My app is working on local network,and the admin create the folder for every user on shared folder with this code:
for example "me1" is a user on local network.
DirectoryInfo d=new ...