Configure Timerjobs for SharePoint Template
(SharePoint Online Only) Pre-requisite
Note This step is required if you are using the preferred method of application credentials and when not already executed on the site collection during template installation.
-
Enable APP permissions
-
This was already executed during the installation of the UCC A Unified Contact Center, or UCC, is a queue of interactions (voice, email, IM, etc.) that are handled by Agents. Each UCC has its own settings, IVR menus and Agents. Agents can belong to one or several UCCs and can have multiple skills (competencies). An UCC can be visualized as a contact center “micro service”. Customers can utilize one UCC (e.g. a global helpdesk), a few UCC’s (e.g. for each department or regional office) or hundreds of UCC’s (e.g. for each bed at a hospital). They are interconnected and can all be managed from one central location. Creator. If not completed, Learn More
-
Configure the Timerjob application as scheduled task
-
Grab the site URL (parent site of your ucc) and client secret
Example: https://contoso.sharepointonline.com/sites/ucc/ucc_support/(only use bold part)
Note This is also the site for the UCC Creator.
-
Copy the contents of the timerjobs scripts to <drive>\program files\anywhere365\scripts\SP_Timerjobs on the UCC server (may also be another Windows server, make sure the above pre-regs are met).
Note The Timerjobs scrips can be requested at the support-desk.
-
In the config file (Timerjobs.config), fill in the Targets:
Same Site = For all sites on the root level:
<Target enabled="true" type="SameLevel">https://contoso.sharepointonline.com/sites/ucc</Target>
Site Collection = For all sites in this site collection:
<Target enabled="true" type="SiteCollection">https://contoso.sharepointonline.com/sites/ucc</Target>
Site = Only for this site:
<Target enabled="true" type="Site">https://contoso.sharepointonline.com/sites/ucc</Target>
Version 6.0.6.0 or lower
<add key="TargetUrl" value="https://contoso.sharepointonline.com/sites/ucc" />
-
Next step is to configure user authentication.
-
(SharePoint Online) Fill in the ClientID and ClientSecret, between the quotes.
<ClientID></ClientID>
<ClientSecret></ClientSecret>
Warning Find your site collection URL and Client Secret code. If you lost your Client Secret code, you can generate one by following “(Optional) Generate a new client secret”
-
-
Create a Windows Scheduled Task that runs indefinitely every 5 minutes (starting from rounded minutes e.g. 12.00, 12.05, 12.10, 12.15) and starts the executable (WSP.A365.SharePoint.WebJob.TimerJobs.exe).]
Or use the example XML below to import it into Task Scheduler:
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2019-04-16T15:24:40.1269215</Date>
<Author>Workstreampeople B.V.</Author>
</RegistrationInfo>
<Triggers>
<TimeTrigger>
<Repetition>
<Interval>PT5M</Interval>
<StopAtDurationEnd>false</StopAtDurationEnd>
</Repetition>
<StartBoundary>2019-04-16T15:20:00</StartBoundary>
<Enabled>true</Enabled>
</TimeTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<UserId>S-1-5-21-3347327956-105208351-3318644539-10774</UserId>
<LogonType>Password</LogonType>
<RunLevel>LeastPrivilege</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>Parallel</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>false</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>false</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>P3D</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>"C:\Program Files\Anywhere365\Scripts\SP_Timerjobs\Wsp.A365.SharePoint.WebJob.TimerJobs.exe"</Command>
</Exec>
</Actions>
</Task>
-
Make sure that the account that performs the task has sufficient permissions to run the job, even if it is not logged in. Run with highest privileges.
Did you find this page helpful?
Yes No
Sorry about that
Why wasn't this helpful? (check all that apply)
Thank you for your feedback.
Want to tell us more?
Email your feedback to our documentation team.
Great!
Thanks for taking the time to give us some feedback.