zoukankan      html  css  js  c++  java
  • C#中模拟帐号登陆

    class Program
    {
        static void Main(string[] args)
        {
            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");
                        //想做什么操作就可以做了
                    }

                }

            }

        }
    }

  • 相关阅读:
    HHUOJ 1321
    数据结构应用
    数据结构应用
    数据结构与算法分析
    数据结构与算法分析
    CSS -- 字体样式
    CSS -- 选择器
    CSS
    HTML -- 表单元素2
    HTML -- 表单元素1
  • 原文地址:https://www.cnblogs.com/jackping/p/2943398.html
Copyright © 2011-2022 走看看