我正在尝试使用NetUseAdd添加应用程序所需的共享.我的代码看起来像这样.[DllImport(NetApi32.dll, SetLastError = true, CharSet = CharSet.Unicode)]internal static extern uint NetUseAdd(string UncServerNam...

我正在尝试使用NetUseAdd添加应用程序所需的共享.我的代码看起来像这样.
[DllImport("NetApi32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
internal static extern uint NetUseAdd(
string UncServerName,
uint Level,
IntPtr Buf,
out uint ParmError);
…
USE_INFO_2 info = new USE_INFO_2();
info.ui2_local = null;
info.ui2_asg_type = 0xFFFFFFFF;
info.ui2_remote = remoteUNC;
info.ui2_username = username;
info.ui2_password = Marshal.StringToHGlobalAuto(password);
info.ui2_domainname = domainName;
IntPtr buf = Marshal.AllocHGlobal(Marshal.SizeOf(info));
try
{
Marshal.StructureToPtr(info, buf, true);
uint paramErrorIndex;
uint returnCode = NetUseAdd(null, 2, buf, out paramErrorIndex);
if (returnCode != 0)
{
throw new Win32Exception((int)returnCode);
}
}
finally
{
Marshal.FreeHGlobal(buf);
}
这在我们的服务器2003盒子上工作正常.但是在尝试转移到Server 2008和IIS7时,这不再起作用了.通过自由日志我发现它挂在Marshal.StructureToPtr(info,buf,true)的行上;
我完全不知道为什么这可以让任何人了解它,告诉我在哪里可以寻找更多信息?
解决方法:
原因是:
你从pinvoke.net上取下了p / invoke签名而你没有验证它.最初编写此p / invoke示例代码的傻瓜不知道他在做什么,并创建了一个在32位系统上“工作”但在64位系统上不起作用的傻瓜.他以某种方式将一个非常简单的p / invoke签名变成了一些非常复杂的混乱,它在网上像野火一样蔓延开来.
正确的签名是:
[DllImport( "NetApi32.dll", SetLastError = true, CharSet = CharSet.Unicode )]
public static extern uint NetUseAdd(
string UncServerName,
UInt32 Level,
ref USE_INFO_2 Buf,
out UInt32 ParmError
);
[StructLayout( LayoutKind.Sequential, CharSet = CharSet.Unicode )]
public struct USE_INFO_2
{
public string ui2_local;
public string ui2_remote;
public string ui2_password;
public UInt32 ui2_status;
public UInt32 ui2_asg_type;
public UInt32 ui2_refcount;
public UInt32 ui2_usecount;
public string ui2_username;
public string ui2_domainname;
}
你的代码应该是:
USE_INFO_2 info = new USE_INFO_2();
info.ui2_local = null;
info.ui2_asg_type = 0xFFFFFFFF;
info.ui2_remote = remoteUNC;
info.ui2_username = username;
info.ui2_password = password;
info.ui2_domainname = domainName;
uint paramErrorIndex;
uint returnCode = NetUseAdd(null, 2, ref info, out paramErrorIndex);
if (returnCode != 0)
{
throw new Win32Exception((int)returnCode);
}
希望这有一些帮助.我只花了半天膝盖深度远程调试别人的垃圾代码试图弄清楚发生了什么,就是这个.
本文标题为:C# – NetUseAdd来自Windows Server 2008和IIS7上的NetApi32.dll


基础教程推荐
- c#读取XML多级子节点 2022-11-05
- C#中类与接口的区别讲解 2023-06-04
- 京东联盟C#接口测试示例分享 2022-12-02
- C#集合查询Linq在项目中使用详解 2023-06-09
- C# – NetUseAdd来自Windows Server 2008和IIS7上的NetApi32.dll 2023-09-20
- 使用c#从分隔文本文件中插入SQL Server表中的批量数据 2023-11-24
- C#通过GET/POST方式发送Http请求 2023-04-28
- C# Winform实现石头剪刀布游戏 2023-01-11
- c#中利用Tu Share获取股票交易信息 2023-03-03
- Unity shader实现多光源漫反射以及阴影 2023-03-04