Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Mac OS X Terminal – Parallels – Reset Windows User Password

Posted on January 20, 2017 By David Kittell

Forgot your password to your Parallels Windows Virtual Machine?

Power up your Windows VM then run this script to list all machines as you need the ID

prlctl list --all

You’ll see something like this

prlctl list --all
UUID                                    STATUS       IP_ADDR         NAME
{8ebbccf1-00e9-4c33-8952-c372bdff1f82}  running      -               Windows10P

Copy the UUID minus the { } brackets

prlctl exec 8ebbccf1-00e9-4c33-8952-c372bdff1f82 net user
prlctl exec 8ebbccf1-00e9-4c33-8952-c372bdff1f82 net user

User accounts for \\

-------------------------------------------------------------------------------
Administrator            DefaultAccount           dkittell                 
Guest                    ladmin

Run this next piece for each user you want to change the password for

prlctl set 8ebbccf1-00e9-4c33-8952-c372bdff1f82 --userpasswd dkittell:1T.bp79.4Q8L0VZ

In the above example dkittell:1T.bp79.4Q8L0VZ is {username}:{new password}

No I don’t actually use that password :)

If successful you should see something like this

prlctl set 8ebbccf1-00e9-4c33-8952-c372bdff1f82 --userpasswd dkittell:1T.bp79.4Q8L0VZ
Authentication tokens updated successfully.
Success. The operation was successfully completed.

The VM has been successfully configured.
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code Mac OS X Shell Mac OSX Parallels UNIX UNIX Shell Scripts Windows

Post navigation

Previous post
Next post

Related Posts

Count All Rows In All Tables

Posted on May 27, 2014October 26, 2015

There are a few ways to count all of the rows in all of your tables in a database. The “Fastest Option” actually pulls the information from the database where the numbers are stored rather than taking time to count rows. SELECT t.NAME AS table_name ,i.rows FROM sys.tables AS t…

Read More

Update Ektron License

Posted on July 19, 2013October 26, 2015

After applying this update you will need to restart the services and in some case restart the server completely. SELECT lic_key FROM Settings SELECT module_license FROM module_licenses UPDATE Settings SET lic_key = ‘<License>’ UPDATE module_licenses SET module_license = ‘<License>’ Originally Posted on July 19, 2013Last Updated on October 26, 2015…

Read More

Mac OSX – Terminal – Read JSON From cURL

Posted on September 15, 2016September 15, 2016

Prerequisite: OSX Homebrew brew update brew prune brew install node brew upgrade node sudo curl -L https://npmjs.com/install.sh | sh npm update -g npm install -g json brew install python pip install pygments curl -s https://www.kittell.net/tools/jsonexample.php | json | pygmentize -l json curl -s –header "PRIVATE-TOKEN: <private token>" "http://127.0.0.1/api/v3/projects" | json…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes