Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel7

...

Silverthread will create an account for http://codemri.com. Your login will be your email address. Set your password.

If you are on a LINUX command line prompt:

Code Block
cmri account login --email dan@silverthreadinc.com --password MYPASSWORD

# HOWEVER
# If you have special characters in your email or password, use the backslash
# character to escape them

# THIS IS WRONG:
cmri account login --email dan@silverthreadinc.com --password MYPASSWORD$%&^

THIS IS RIGHT:
cmri account login --email dan@silverthreadinc.com --password MYPASSWORD\$\%\&\^

If you are on a WINDOWS command line prompt:

Code Block
cmri account login --email dan@silverthreadinc.com --password MYPASSWORD

# HOWEVER
# If you have special characters in your email or password, use the caret
# character to escape them

# THIS IS WRONG:
cmri account login --email dan@silverthreadinc.com --password MYPASSWORD$%&

THIS IS RIGHT:
cmri account login --email dan@silverthreadinc.com --password MYPASSWORD^$^%^&

If you are in the CMRI INTERACTIVE SHELL

Code Block
account login --email dan@silverthreadinc.com --password MYPASSWORD

# HOWEVER
# If you have special characters in your password, use single quotes
# around them

# THIS IS WRONG:
cmri account login --email dan@silverthreadinc.com --password MYPASSWORD$%&^

THIS IS RIGHT:
cmri account login --email 'dan@silverthreadinc.com' --password 'MYPASSWORD$%&^'

...