I have scheduled a C# console application in Task Scheduler of Windows 2012 R2. Application will run when executed it manually or Right click on scheduled task and click on Run, but it is failed when triggered by Task Scheduler with below error. > The operator or administrator has refused [...] read more
I have a scheduled task to run a .CMD script at a set time each day. The Windows 10 64 bit system (1511) was clean installed, and the task was created manually. When the task's scheduled time is reached, it does not run. The Task Scheduler reports "The operator or [...] read more
In Windows 10, I have a Task in the Windows Task Scheduler that triggers at a certain time and also can run on demand. The Task comprises four Actions, each calling the same program with very similar options. Though the first of the four Actions will occasionally succeed, the Task [...] read more
For a couple months now I've woken up every couple days to find my C:\ drive out of space. After some digging I found my C:\Windows\Temp folder was full of 3MB log files -- ~40GB worth, numbering in the 10s of thousands. Reading through them they seem to have something [...] read more
I have a bat file that is scheduled to run every 15 Minutes with the Windows 10 Task Scheduler. At some point it has to open a local html file in Internet Explorer. START iexplore.exe -k C:\PATH\TO\FILE.html That works perfectly when executing manually or using the option only run when [...] read more
I have scheduled a Task Scheduler using GPO (Windows 2012 R2). it failed when triggered by Task Scheduler with below error. > The operator or administrator has refused the request(0x800710E0) I have followed below steps also after Google search 1. Checked "Run whether user logged in or not" 2. Unchecked [...] read more
I'm trying to set up automated emailing of a few reports for my company and have a few questions after doing some research into it. So far I have the emailing portion finished and working of MS-Access where it will send emails containing two reports to whomever. I have also [...] read more
I am trying to automate Tableau backup in Windows. I am using Tableau 2019.1. As the new TSM command requires a password every time we do backup, what I did was I stored the password on another file and encrypt it, and call this file when I want to execute [...] read more
I have a PowerShell script that restarts our SMTP service when it's down. It looks like this: $Computer = "localhost" $SMTPServiceName = "SMTPSVC" $AllServices = get-service -ComputerName $Computer $SMTPService foreach ($Service in $AllServices) { if ($Service.name -eq $SMTPServiceName) { $SMTPService = $Service break } } if ($SMTPService.status -eq "StopPending") { [...] read more