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 {user.productname}
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" />
</smtp>
</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<<productname>>\IntelledoxScheduler\IntelledoxScheduler.exe
Uninstall Command
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe -u C:\inetpub\wwwroot<<productname>>\IntelledoxScheduler\IntelledoxScheduler.exe
Updated 3 days ago