Portal
Language
 
Home>Knowledge Base>Root Folder>Behavior>How do I disable (and re-enable) the ability for users to create new patients in the Guru UI.
User Login
Username
Password
 
 Login
Information
Article ID20
Created On11/16/2009
Modified11/16/2009
Share With Others

How do I disable (and re-enable) the ability for users to create new patients in the Guru UI.

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:

  1. Exit the Guru Client
  2. 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
  3. Open the Guru.exe.config file in notepad
  4. Find the CanCreatePatients entry and set the value (Case Sensitive)
    • True = Can Create/Edit/Delete Patients
    • False = Can not Create/Edit/Delete Patients
  5. Save the Files
  6. 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>