Hello All,
I'm relatively new to DP, so this may be a simple answer. I have 2 issues both surrounding saving changes with in scheduling. I have a report that I have created, when I visit the properties of said report and go to schedule I see 2 entries 1 hour apart from each other. I have tried to remove the second entry by highlighting, delete then apply. It seemingly goes away. I refresh or close reopen DP and the 2nd instance is still gone. Problem is the following day...everyday (I've done it 3 times) the report runs the 2nd time and I go in to DP and sure enough the entry is there. The same issue is seen for backups, I have a backup with 2 entries in schedule and after deleting I see the same problem.
At first I thought that perhaps it was another manager open but I looped through the list of all my clients looking for manager.exe using powershell
foreach ($srv in $servers) {
$srv | out-host
Get-WmiObject win32_process -ComputerName $srv | Where {$_.name -eq 'manager.exe'} | out-host
}
And only found the 1
Any thoughts or suggestions?