This script is designed to change the password of the default LocalAccount.
If you want to change the password of a user, you could try something like this.
(FYI: I'm assuming you know the username)
strComputer = "."
sUser = "YourUser"
sPwd = "!NewCompl3xP@ssword!"
Set objUser = GetObject("WinNT://" & strComputer & "/" & sUser & ", user" )
objUser.SetPassword sPwd
objUser.SetInfo
FYI: This is semi-tested code