首页 > 其他 > 详细

C# 使用代码模拟域登陆来操作文件

时间:2014-05-08 21:03:14      阅读:423      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
[DllImport("advapi32.DLL", SetLastError = true)]
public static extern int LogonUser(string lpszUsername, string lpszDomain, string lpszPassword, int dwLogonType, int dwLogonProvider, ref IntPtr phToken);

IntPtr admin_token = default(IntPtr);
WindowsIdentity wid_admin = null;
WindowsImpersonationContext wic = null;

//在程序中模拟域帐户登录
if (WinLogonHelper.LogonUser("uid", "serverdomain", "pwd", 9, 0, ref admin_token) != 0)
{
using (wid_admin = new WindowsIdentity(admin_token))
{
using (wic = wid_admin.Impersonate())
{
//假定要操作的文件路径是10.0.250.11上的d:\txt.txt文件可以这样操作
FileInfo file = new FileInfo(@"\\10.0.250.11\d$\txt.txt");
//想做什么操作就可以做了
}
}
}
bubuko.com,布布扣

 

C# 使用代码模拟域登陆来操作文件,布布扣,bubuko.com

C# 使用代码模拟域登陆来操作文件

原文:http://www.cnblogs.com/xyz0835/p/3709288.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!