Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

User name

The user name added in Manager has to match the Windows user name. The user name in Manager will be matched with Windows user name independent of large/small caps. 

The user’s connection to groups are managed saved in a settings file, “UserPermissionGroup.config”. This file may also be used to turn user permissions in Manager off by setting the tag ConfigEnabled.

Code Block
languagexml
<?xml version="1.0" encoding="utf-8"?>
<MultiplePermissionsList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <!-- Turn user permissions in Manager on or off -->
  <ConfigEnabled>true</ConfigEnabled>
  <WindowsGroupEnabled>false</WindowsGroupEnabled>
  <UserPermissions>
    <UserPermission>
      <PermissionGroup>Sample</PermissionGroup>
      <Users>
        <string>user1</string>
      </Users>
    </UserPermission>
  </UserPermissions>
</MultiplePermissionsList>

Finding the user name

The Windows user name can be found in Windows, but it is also shown in the About dialogue under help menu.

...