Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
253 views

Problem with Win32 WNet APIs and NFS paths

I am running on a Win2K8R2 system that has Microsoft's NFS client installed in addition to the Windows CIFS client. Given a UNC path (which the NFS client does support with caveats) I need to be able ...
1
vote
1answer
129 views

Is it possible to get a valid token from a remote computer?

Is it possible to impersonate a u/p on a remote computer? Ideally I would like to call the ImpersonateLoggedOnUser with a token I would obtain from logging into a remote computer. I know I can make ...
0
votes
1answer
333 views

WNetAddConnection2 returns 1219

I am using WNetAddConnection2 and WNetCancelConnection2 to map or unmap drives. What i am trying to do is as follows: I mapped a folder(eg:Folder1) on server(eg:myserver). so the path is ...
0
votes
1answer
334 views

Calling WNetAddConnection2 with empty local name

I have a small program that simply checks if a specified file is located on a specified network drive that is not mapped on the computer. To check this I temporarily map to the network location, check ...
0
votes
1answer
1k views

Calling WNetAddConnection2 from PowerShell

I am trying to directly call some Win32 API's from a PowerShell script. I managed to make WNetAddConnection work with the code below: $cp = New-Object Microsoft.CSharp.CSharpCodeProvider $cpar = ...