Skip to content

Instantly share code, notes, and snippets.

View exengineer1's full-sized avatar
🇧🇩
Tech miner

Asibul Hasan exengineer1

🇧🇩
Tech miner
View GitHub Profile
@exengineer1
exengineer1 / changing windows password.vbs
Created August 30, 2018 02:22
Change Windows password without knowing local user password. VBS Script.
Option Explicit
RunAsAdmin()
Dim objDomain, User, List, strAccount
Dim strNewPass, status
On Error Resume next
'Find current Users on computer, and select one.
'------------------------------------------------