Subject:
The steps here will describe how to disable the Mentor window from automatically opening when Users log into Microsoft Dynamics GP.
Resolution:
Option 1: The manual process for each User is as follows:
- In the Mentor window, click the button with two radio buttons on it to the right of the Search for field.
- In the Mentor Options window, unmark the following option:
- Open Mentor on Startup.
- Click OK.
- Click OK.
Option 2: The Microsoft SQL Server script process for all Users or for a specific User is as follows:
- Make a complete restorable backup and have all Users log out of the system.
- Log into the Microsoft Dynamics GP server in SQL Server Management Studio.
- Run the following statement in SQL Server Management Studio:
- Select * from DYNAMICS..RSTB001 where RSTB_System_Setting_Key = ‘MENTOR_Open_On_Startup’
- If you want it to NOT open for ALL Users, you can run the following statement:
- Update DYNAMICS..RSTB001 set RSTB_System_Setting_Valu = 0 where RSTB_System_Setting_Key = ‘MENTOR_Open_On_Startup’
- If you want it to NOT open for a specific User, you can run the following statement:
- Update DYNAMICS..RSTB001 set RSTB_System_Setting_Valu = 0 where USERID = ‘XXX’ and RSTB_System_Setting_Key = ‘MENTOR_Open_On_Startup’
- Replace XXX with the specific User ID.
- Update DYNAMICS..RSTB001 set RSTB_System_Setting_Valu = 0 where USERID = ‘XXX’ and RSTB_System_Setting_Key = ‘MENTOR_Open_On_Startup’