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

时间:2014-05-08 21:05:26   收藏:0   阅读:274
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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!