Question:
How do I disable (and re-enable) the ability for users to create new patients in the Guru UI.
Answer:
If you want to disable or re-enable the ability for users of Guru to create patients, then follow these steps on each Guru client machine in the office:
- Exit the Guru Client
- Open the folder containing Guru.exe using these steps:
- Right-click the Guru Icon on the Desktop
- Select the 'Properties' menu item
- Click the [Open File Location] button
- Open the Guru.exe.config file in notepad
- Find the CanCreatePatients entry and set the value (Case Sensitive)
- True = Can Create/Edit/Delete Patients
- False = Can not Create/Edit/Delete Patients
- Save the Files
- Restart the Guru Client
Config Example: (CanCreatePatients in Bold)
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="RealityEngineering.MedVisor.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"></section>
</sectionGroup>
</configSections>
<applicationSettings>
<RealityEngineering.MedVisor.Properties.Settings>
<setting name="CanCreatePatients" serializeAs="String">
<value>False</value>
</setting>
<setting name="LocalLanguage" serializeAs="String">
<value></value>
</setting>
<setting name="Version" serializeAs="String">
<value>4.0.7</value>
</setting>
</RealityEngineering.MedVisor.Properties.Settings>
</applicationSettings>
</configuration>