Skip to content

Instantly share code, notes, and snippets.

@zhujo01
Last active August 29, 2015 14:06
Show Gist options
  • Save zhujo01/a5fc0e71f3c22f8a442a to your computer and use it in GitHub Desktop.
Save zhujo01/a5fc0e71f3c22f8a442a to your computer and use it in GitHub Desktop.
$newPasswd = [guid]::NewGuid().ToString()
echo $newPasswd
([adsi]“WinNT://localhost/cliqr”).SetPassword($newPasswd)
$service = gwmi win32_service -filter "name='CliQrAgentService'"
$service.change($null,$null,$null,$null,$null,$null,$null,$newPasswd)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment