![]() |
|
|
|||||||
| Petri.co.il is happy to award auglan the title of Most Valuable Member !!! |
| Register | Calendar |
Search |
Today's Posts |
Mark Forums Read |
| Notices |
|
|
Change Password for User in Active Directory using Web Browserthis thread has 8 replies and has been viewed 45213 times
|
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||||||
|
||||||||
|
Hi All,
I want to change the password for a user in Active Directory using a web browser , is there any way that I can do it? It is a bit urgent, please let me know ASAP... Regards, Mitul |
|
#2
|
|||||||||||
|
|||||||||||
|
Not that I am aware of.
There is 3rd party software out there that will allow you to do this but I bet is costs serious $$$$$ Just out of curiosity, why cant you use Active Directory Users and Computers? Michael
__________________
Michael Armstrong www.m80arm.co.uk MCITP: EA, MCTS, MCSE 2003, MCSA 2003: Messaging, CCA, VCP 3.5, 4, 5, VCAP5-DCD, VCAP5-DCA, ITIL, MCP, PGP Certified Technician ** Remember to give credit where credit is due and leave reputation points |
|
#3
|
||||||||||
|
||||||||||
|
Do you have Exchange 2000/2003?
__________________
Cheers, Daniel Petri Microsoft Senior Premier Field Engineer MCSA/E, MCTS, MCITP, MCT |
|
#4
|
||||||||
|
||||||||
|
i'm not sure why you would want to do this but you could write an asp page to do this for you and host it on a server on your network. i dont have a page written off hand but it would be pretty easy to do.
__________________
MCSE 2000\2003, A+ 00000001-00000011-00000011-00000111 |
|
#5
|
||||||||||
|
||||||||||
|
hello this task impossible
Özgür ŞENERDOĞAN |
|
#6
|
||||||||||
|
||||||||||
|
And you say that it's impossible based on what knowledge? Why impossible, when I have one that does exactly that, right in front of my eyes?
Also a simple Google search will yield this, along with others: http://www.codeproject.com/aspnet/ac...rectoryuse.asp
__________________
Cheers, Daniel Petri Microsoft Senior Premier Field Engineer MCSA/E, MCTS, MCITP, MCT Last edited by danielp; 1st September 2006 at 01:01.. |
|
#7
|
||||||||
|
||||||||
|
I dont understand why you would want to do this through the web though, you could remote or vpn in...instead of opening up your whole active directory through the web.
|
|
#8
|
|||||||||
|
|||||||||
|
It IS possible. with plain HTML and some vbscripting.
Add a form in a web page, with a textbox type'ed as password (to show only asterixes) and add a function to change the password. It should look something like this: Code:
Sub ChangePassword(sNewPassword)
Set objSysInfo = CreateObject("ADSystemInfo")
Set objUser = GetObject("LDAP://" & objSysInfo.UserName)
objUser.Password = sNewPassword
objUser.SetInfo
Set objUser = Nothing
Set objSysInfo = Nothing
End Sub
1. The IIS server hosting the web page should be a memeber in the Domain (same Domain where the user who wants to change his password resides) 2. The virtual directory should be set to Windows Authentication (this way the credentials running the script are the user's itself). 3. You should validate the password (as in input the password twice) on the Client-side (maybe use javascript). 4. Keep in mind that the user browsing the page will be able to change ONLY his own password. Post here if you need the whole enchilada (I'll create the whole HTML page for you). |
|
#9
|
||||||||||
|
||||||||||
|
The IISADMPWD virtual directory allows users to change their account passwords remotely through IIS by means of ASP scripts.
<"How to use the IISADMPWD password change pages"> \Rem |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Active directory - w2k SBS with SP2 | pack | Windows Server 2000 / 2003 | 1 | 1st November 2005 22:42 |
| Active Directory User Logon Name Change | tech25 | Active Directory | 4 | 4th July 2005 09:14 |
| Web Administration of Active Directory | bcapuano | Active Directory | 1 | 8th June 2005 13:17 |