Have a Windows Service use a CB mounted drive David,
The Service manages scheduled jobs (within it's UI application) to move/copy files. That service only accesses the CB Drive when a specific scheduled job tries to copy files there.
In the UI for the Service, we can define a pre-PowerShell script before a transfer definition runs. (which copies files from Source to Destination). I've added the following as a pre-script:
$Command = "C:\Program Files\CloudBerryLab\CloudBerry Drive\cbd.exe"
$Parms = "mountDrive R"
$Prms = $Parms.Split(" ")
& "$Command" $Prms
Then as a post script I unmount the drive.. this seems to be working.