SharePoint2024 以其他用户登录和修改AD域用户密码

2016-04-01 00:41 76 1 收藏

下面图老师小编要向大家介绍下SharePoint2024 以其他用户登录和修改AD域用户密码,看起来复杂实则是简单的,掌握好技巧就OK,喜欢就赶紧收藏起来吧!

【 tulaoshi.com - 软件应用 】

SharePoint2013 以其他用户登录和修改AD域用户密码

   sharepoint默认是没有修改AD密码 和切换 用户的功能,这里我用future的方式来实现。

  部署wsp前:

  部署后:

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)

  点击以其他用户身份登录

  点击修改用户密码:

  这里的扩展才菜单我们用CustomAction来实现,我们需要添加空项目来部署它

  以其他用户身份登录得xml如下:

  修改用户密码的xml如下:

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)

  这里我们需要新建一个应用程序页面,首先需要添加路径映射:

  添加应用程序页面的代码如下:

%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %%@ Import Namespace="Microsoft.SharePoint" %%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ChangePassword.aspx.cs" Inherits="SharePointProjectDemo.Layouts.ChangePassword.ChangePassword" DynamicMasterPageFile="~masterurl/default.master" %asp:Content ID="PageHead" ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server"/asp:Contentasp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server"     asp:Literal ID="ltMsg" EnableViewState="false" runat="server"/asp:Literaldiv    h3        span修改密码/span    /h3    table width="400px"         tr            td               域            /td            td                :            /td            td                asp:TextBox ID="txtdomain" runat="server" /asp:TextBox            /td        /tr         tr            td                旧密码            /td            td                :            /td            td                asp:TextBox ID="txtOld" runat="server" TextMode="Password"/asp:TextBox            /td        /tr        tr            td                新密码            /td            td                :            /td            td                asp:TextBox ID="txtPass1" runat="server" TextMode="Password"/asp:TextBox            /td        /tr        tr            td                确认新密码            /td            td                :            /td            td                asp:TextBox ID="txtPass2" runat="server" TextMode="Password"/asp:TextBox            /td        /tr        tr            td colspan="3" align="center"                br /                asp:Button ID="btnChangePwd" runat="server" Text="修改密码" OnClick="btnChangePwd_Click" /            /td        /tr    /table    br /    br //div/asp:Contentasp:Content ID="PageTitle" ContentPlaceHolderID="PlaceHolderPageTitle" runat="server"修改密码/asp:Contentasp:Content ID="PageTitleInTitleArea" ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server" 修改密码/asp:Content

 

 

using System;using Microsoft.SharePoint;using Microsoft.SharePoint.WebControls;using System.Security.Principal;using System.DirectoryServices.AccountManagement;namespace SharePointProjectDemo.Layouts.ChangePassword{    public class Impersonator    {        // Fields        private WindowsImpersonationContext ctx = null;        // Methods        public void BeginImpersonation()        {            try            {                if (!WindowsIdentity.GetCurrent().IsSystem)                {       this.ctx = WindowsIdentity.Impersonate(WindowsIdentity.GetCurrent().Token);                    this.IsImpersonated = true;                }            }            catch            {                this.IsImpersonated = false;            }        }        public void StopImpersonation()        {            if (this.ctx != null)            {                this.ctx.Undo();            }        }        // Properties        public bool IsImpersonated        {            set;            get;        }    }    public partial class ChangePassword : LayoutsPageBase    {        protected void btnChangePwd_Click(object sender, EventArgs e)        {            string str = this.txtPass1.Text.Trim();            string str2 = this.txtPass2.Text.Trim();            string str3 = this.txtOld.Text.Trim();            string str4 = this.txtdomain.Text.Trim();            if (string.IsNullOrWhiteSpace(str4))            {                this.ltMsg.Text = "域不能为空!";            }            else if (string.IsNullOrWhiteSpace(str3))            {                this.ltMsg.Text = "旧密码不能为空!";            }            else if (string.IsNullOrWhiteSpace(str))            {                this.ltMsg.Text = "新密码不能为空!";            }            else if (str == str2)            {                this.ChangeUserPassword(this.txtPass2.Text.Trim(), str3, str4);            }            else            {                this.ltMsg.Text = "两次新密码不一致,请检查!";            }        }        private void ChangeUserPassword(string NewPwd, string OldPwd, string domain)        {            try            {                Impersonator impersonator = new Impersonator();                impersonator.BeginImpersonation();                using (PrincipalContext context = this.GetPContext(OldPwd, domain))                {                    using (UserPrincipal principal = UserPrincipal.FindByIdentity(context, IdentityType.SamAccountName, GetLoginName()))                    {                        principal.ChangePassword(OldPwd, NewPwd);                    }                }                if (impersonator.IsImpersonated)                {                    impersonator.StopImpersonation();                    this.ltMsg.Text = "已成功修改密码!";                }                else                {                    this.ltMsg.Text = "无法修改您的密码,请联系您的系统管理员!";                }            }            catch (Exception exception)            {                this.ltMsg.Text = exception.Message;            }        }        private string GetDomainContainter(string domain)        {            string str = string.Empty;            string[] strArray = domain.Split(new char[] { '.' }, StringSplitOptions.RemoveEmptyEntries);            foreach (string str2 in strArray)            {                str = str + "DC=" + str2 + ",";            }            if (str.Length  0)            {                str = str.Substring(0, str.Length - 1);            }            return str;        }        private string GetLoginName()        {            string username= SPContext.Current.Web.CurrentUser.LoginName.Replace("i:0#.w|", "");            if(username.EndsWith(@"system"))            {                username = username.Replace("system", "sherry");            }            return username;        }        private string GetLoginNameDomain()        {            string[] strArray = GetLoginName().Split(new char[] { '' }, StringSplitOptions.RemoveEmptyEntries);            if (strArray.Length == 2)            {                return strArray[0];            }            return null;        }        private PrincipalContext GetPContext(string OldPwd, string domain)        {            return new PrincipalContext(ContextType.Domain, domain, this.GetDomainContainter(domain), ContextOptions.Negotiate, this.GetLoginName(), OldPwd);        }        protected void Page_Load(object sender, EventArgs e)        {            this.ltMsg.Text = GetLoginName().Replace("i:0#.w|", "");        }    }}

来源:http://www.tulaoshi.com/n/20160401/2073561.html

延伸阅读
标签: 电脑入门
对于新手用户来说,如何将自己的MAC系统用户名和用户密码设置成自己的,是一个很大的问题。但是老用户们都知道,其实修改MAC系统用户名和用户密码都是不难的,只要通过几个步骤,就可以快速的修改了。现在图老师小编就教大家如何修改MAC系统的用户密码。 Mac 修改User用户密码方法: 第一步:打开网络偏好设置。 第二步:打开用户与群...
标签: 电脑入门
知道怎么去掉iis的登录用户名和密码吗? 方法: 安装了iis之后,打开默认网站 http://localhost/ 时弹出一个登陆窗口要求输入用户名和密码解决办法。 开始-运行-gpedit.msc-回车。 计算机配置--管理模板-windows 组件-Internet Exporer-Internet控制面板-安全页-Internet区域:双击登陆选项;选择已启用;登陆选项-自动使用当前用户名和密...
1.新建用户。 //登录MYSQL @mysql -u root -p @密码 //创建用户 mysql mysql insert into mysql.user(Host,User,Password,ssl_cipher,x509_issuer,x509_sub ject) values("localhost","pppadmin",password("passwd"),'','',''); 这样就创建了一个名为:phplamp 密码为:1234 的用户。 然后登录一下。 mysqlexit; @mysql -u phplamp ...
一、连接MYSQL。 格式: mysql -h主机地址 -u用户名 -p用户密码 1、例1:连接到本机上的MYSQL。 首先在打开DOS窗口,然后进入目录 mysqlbin,再键入命令mysql -uroot -p,回车后提示你输密码,如果刚安装好MYSQL,超级用户root是没有密码的,故直接回车即可进入到MYSQL中了,MYSQL的提示符是:mysql 2、例2:连接到远程主机上的MYSQL。...
标签: MySQL mysql数据库
如果忘记了 MySQL 的 root 密码,可以用以下方法重新设置: 1. KILL掉系统里的MySQL进程; 2. 用以下命令启动MySQL,以不检查权限的方式启动; mysqld_safe -skip-grant-tables & 3. 然后用空密码方式使用root用户登录 MySQL; mysql -u root 4. 修改root用户的密码; mysql update mysql.user set password=PASSW...

经验教程

59

收藏

82
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部