FastLogon
Disables the loading of metadata cache when a user logs on externally. Use this property with the Logon(LogonId, Password) method.
Property values
- 1(default). Off.
- 2. Low.
- 3. High.
Examples
Copy
var CRM = new ActiveXObject('CRM.<CRMinstalldir>');
CRM.FastLogon = 1;
CRM.Logon("administrator", "P@ssw0rd");
Disables the loading of metadata cache and logs on the administrator account.