How to change the default Billing Option for Users created in the Nerve Center.

How to change the default Billing Option for Users created in the Nerve Center.


Locate the modifypatron.asp file, which should be located under Inetpub\wwwroot\SignUp. This can be edited with any text editor, such as Notepad.

In modifypatron.asp search for the text:

if (IsNewId)
{
ModifyUser();

Replace it with:

if (IsNewId)
{
User.BillingOption = "Arrears";
ModifyUser();

Save the file and restart IIS.