HomeGuidesRecipesAPI
HomeGuidesAPILog In

Infiniti Scheduler Install

Ensure your database connection string and smtp mail setting is correct before installing the Scheduler by opening the Scheduler's IntelledoxScheduler.exe.config file.

Set the connection string property to the Infiniti Database:

<connectionStrings>
  <clear/>
  <add name="ConnectionString"
      connectionString="Provider=SQLOLEDB.1;Persist Security
      Info=False;Initial Catalog=intelledox;Data Source=IDOX;
      User Id=intelledox;Password=intelledox"
      providerName="System.Data.OleDb"/>
</connectionStrings>

Set the smtp mail setting:

(Network)
<system.net>
  <mailSettings>
     <smtp deliveryMethod="Network">
       <network host="127.0.0.1" />
     </smpt>
  </mailSettings>
</system.net>

(Pickup Directory)
 <mailsettings>
       <smtp deliveryMethod="SpecifiedPickupDirectory">
         <specifiedPickupDirectory pickupDirectoryLocation="c:\Temp\mail\" />        
     </smtp>
 <mailsettings>

Install Command

C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe C:\inetpub\wwwroot\Infiniti\IntelledoxScheduler\IntelledoxScheduler.exe

Uninstall Command

C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe -u C:\inetpub\wwwroot\Infiniti\IntelledoxScheduler\IntelledoxScheduler.exe