With resource pools, it is not possible to execute all tasks of a scheduler on the same resource.    Example:  We have 3 resources in a resource pool (VM1, VM2, VM3).    When I create a scheduler, I always have 3 tasks (I am sure this is the case for many customers): 
 - Windows login  - process  - Windows logout 
   If I now run a scheduler on the resource pool, the following happens:  The login process logs into VM1.  The actual process is trying to run on VM2.  The logout process tries to log out on VM3. 
   We want all tasks from a scheduler to run on the same resource in the resource pool. This is important because of security reasons. We have set it up in such a way that each process has its own Windows user, which has limited access rights to directories etc. 
						
					
					... View more