How to Configure EdgeManage Settings

Background

The EdgeManage application was written to make it easy for administrators to make configuration changes to the application.

There is a text-based XML file that typically lives at:

C:\Program Files (x86)\Emmet Gray\EdgeManage\EdgeManage.exe.config

This file contains the application's configuration. You can edit it with NotePad, but you’ll need Administrator rights to save the changes (due to the permissions at that folder).

Configuration Options

The following are the application-level settings

The following are the user-level settings. The path to the user.config file is a bit harder to find. So, start looking at the %USERPROFILE%\AppData\Local\Emmet_Gray hidden folder for something that looks similar to this:

%USERPROFILE%\AppData\Local\Emmet_Gray\EdgeManage.exe_Url_xxxxx\2.x.x.x\user.config

Example

So, use Notepad, and find this section of the file:

<setting name="MaxVerPages" serializeAs="String">
    <value>2048</value>
</setting>

...and change the parts between the <value> and </value> tags. An example might be to double the value for MaxVerPages:

<setting name="MaxVerPages" serializeAs="String">
    <value>4096</value>
</setting>