Difference between revisions of "Smart Spec - Tips & Tricks"
From eVision
(Added guide for storing the password used for logging in.) |
m (added category) |
||
Line 38: | Line 38: | ||
<li>Save the file and open SmartSpec.</li> | <li>Save the file and open SmartSpec.</li> | ||
+ | |||
+ | [[Category:SmartSpec]] |
Revision as of 17:55, 21 July 2014
Remember Password
By default, Smart Spec doesn't allow users to save their password. However, this functionality does exist in the released version.
To access it:
- Open Smart Spec
- On the bottom of the login screen, click the link for "'Show Advanced Options'"
- Click the link that says "'Open Data Folder'"
- Close SmartSpec at this time to prevent it from overwriting our changes.
- Open the file named "'LoginPreferences.xml'" in notepad. (the "'.xml'" portion may not be visible on all computers)
- Edit the file as follows: (sample file shown below)
Locate the line highlighted below:
<?xml version="1.0" encoding="utf-16"?> <LoginPreferences xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ManufacturerID>00000000-0000-0000-0000-000000000000</ManufacturerID> <RememberUsername>true</RememberUsername> <Username>joe.user@evisionservices.com</Username> <Password /></LoginPreferences>
And change it to this:
<?xml version="1.0" encoding="utf-16"?> <LoginPreferences xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ManufacturerID>00000000-0000-0000-0000-000000000000</ManufacturerID> <RememberUsername>true</RememberUsername> <Username>joe.user@evisionservices.com</Username> <Password>MySuperSecretPassword</Password></LoginPreferences>
- Save the file and open SmartSpec.