Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
74 views

Get permissions of a file or folder

Iam trying to get permissions on file/folder for current user. I found nice article about it here. I have tried to run this program but I got few erros and I dont know where I can find solutions to ...
1
vote
1answer
149 views

NetValidatePasswordPolicy issue on XP

My project has a requirement that it needs to check the password complexity before create the new account. My code looks like: NET_API_STATUS status; NET_VALIDATE_PASSWORD_CHANGE_INPUT_ARG inputArg ...
1
vote
2answers
231 views

code to identify the number

I got one problem while doing one TAPI application based project in C#. I'm using ITAPI3.dll My problem is.. i'm not getting incoming call information. To get the incoming call information, i'm using ...
1
vote
1answer
793 views

Need a way to change a remote user password - NetUserChangePassword fails with 2245

I am trying to call NetUserChangePassword to change the passwords on a remote computer. I am able to change the password when I log-in to the machine, but I can't do it via code. The return value is ...
1
vote
1answer
910 views

Where does NetServerEnum get its list of machines from?

Where does NetServerEnum() get its list of machines from? Does it use the computer browser service or will it use AD as a preference if AD is available? Links: NetServerEnum on MSDN ...
0
votes
0answers
55 views

c# netapi32 netuseadd console app OK winform NG

I use the declaration below in a console app & a winforms app. Both are 3.5 framework. [DllImport("NetApi32.dll", SetLastError = true, CharSet = CharSet.Unicode)] internal static extern ...
0
votes
1answer
165 views

JNA - DsGetDcNameA

I am new to JNA, I want to convert DsGetDcName method to JNA. DWORD DsGetDcName( __in LPCTSTR ComputerName, __in LPCTSTR DomainName, __in GUID *DomainGuid, __in LPCTSTR SiteName, ...
0
votes
2answers
234 views

Can anyone help me with the Windows API NetApi32?

I am trying to get a list of shares on a specific machine. So I decided to use the Windows API NetApi32.dll. Here is my code snippet: Dim svr As String = Environment.MachineName Dim level As Integer ...
0
votes
2answers
63 views

Trouble accessing functions of NetAPI32 wrapped in WCF that create users

I have created a project which is basically described as a consumable service to create or edit users on a remote computer. The idea is to connect to a server and add a user. The structure of the ...
-2
votes
1answer
132 views

Get Username of an Accesed File

I would like to get the username of an accessed file (add, delete, rename,...). actually I use filesystemwatcher to monitor the file access and I have activated object access on an directory to get ...