Jump to content

Recommended Posts

Posted

Good Evening All,

 

I would like to create a custom portal that, for starters, will allow us (Techies) to reset users passwords and unlock accounts etc. I have seen some tools online, but preferably I would like to be able to customise the interface etc. to suit our needs.

 

Have any of you done a similar thing? If so how have you done this? Could you please point me in the right direction in terms of scripting etc.

 

Regards,

 

Net-Eng99

Posted
Have you looked into spicworks ? We use it for an it portal and does loads !

 

I've had a look in the past but I'm looking for something with a simple UI. Something I can embed in to a custom web page, where we can search for a user by name or username and then reset the password or unlock their account.

 

Of course we will have to log in to this "portal" to authenticate.

Posted

We use a simple asp page on our intranet to allow us to reset users passwords

 

strDomain = "Blah.internal"

Function SetPassword(strUser,strPassword)
Dim User
Set User = GetObject("WinNT://" & strDomain & "/" & strUser & ",user")
User.SetPassword(strPassword)
User.setinfo

End Function

Call SetPassword(request("id"),request("pwd"))

 

You can use the same style to unlock accounts as well.

Posted
We use a simple asp page on our intranet to allow us to reset users passwords

 

strDomain = "Blah.internal"

Function SetPassword(strUser,strPassword)
Dim User
Set User = GetObject("WinNT://" & strDomain & "/" & strUser & ",user")
User.SetPassword(strPassword)
User.setinfo

End Function

Call SetPassword(request("id"),request("pwd"))

 

You can use the same style to unlock accounts as well.

 

Hmmm...that's not very secure. Simple, but wouldn't be hard to hack.

Posted

You could install System Centre Orchestrator and remotely call runbooks that carry out preset functions.

 

Resetting Passwords, Unlocking Accounts are definitely achievable, depends what else you'd need to be able to do.

Posted
Hmmm...that's not very secure. Simple, but wouldn't be hard to hack.

 

The script is widely available on the net, since that's where we got it from originally. Obviously it also requires rights for the running user to be able to change the targets password, which only domain admins have by default so not really any more hackable than getting a admins username and password in the first place.

 

But it's one method to reset passwords.

Posted
The script is widely available on the net, since that's where we got it from originally. Obviously it also requires rights for the running user to be able to change the targets password, which only domain admins have by default so not really any more hackable than getting a admins username and password in the first place.

 

But it's one method to reset passwords.

 

True, except it looks like it would pass the password in the clear unless there is some encryption on the entire site and the connection from the Intranet to the AD server.

Posted
We use a simple asp page on our intranet to allow us to reset users passwords

 

strDomain = "Blah.internal"

Function SetPassword(strUser,strPassword)
   Dim User
   Set User = GetObject("WinNT://" & strDomain & "/" & strUser & ",user")
   User.SetPassword(strPassword)
   User.setinfo

End Function

Call SetPassword(request("id"),request("pwd"))

 

You can use the same style to unlock accounts as well.

 

How do I go about setting this up from scratch in an ASP site? What else have you added in to your site?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...