Windows error 0x00041301, 267009

Detailed Error Information

SCHED_S_TASK_RUNNING[1]

MessageThe task is currently running.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode4 (0x004)
NameFACILITY_ITF[2][1]
DescriptionThe source of the error code is COM/OLE Interface management.[2][1]
Error Code4865 (0x1301)

Questions

0votes
1answer

PowerShell MySQL Backup Script Error in Task Scheduler 0x00041301

I have created the following PowerShell script. $root = 'C:\Backups\My Website\Database Dumps\' $dateString = (Get-Date).ToString("yyyy-MM-dd") $fileName = $dateString + "-MyWebsiteDbBackup.sql" $backupFilePath = ($root + $fileName) $command = ("mysqldump -u root wpdatabase > " + "`"$backupFilePath`"") Write-Host $command Invoke-Expression $command Its function is supposed to be making a daily backup of [...] read more
mysql
powershell
windows-server-2012-r2
taskscheduler

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0