I am interested in changing the local administrator password on a windows machine. The VBScript version that I have is below, but am interested in the VB.NET version of the below code. Thanks.

Set objUser = GetObject("WinNT://" & strComputer & "/Administrator, user")
objUser.SetPassword newPassword
objUser.SetInfo

- GM