New Post: ArguementException: Trigger.Repetition.Interval Must be less than...
Thank you very much you helped me a lot. I appreciate it, it works like a bomb
View ArticleNew Post: taskscheduler return next run time incorrect
Interesting. Can you tell me what version of Windows you are running locally and on the remote server? In trying to troubleshoot, it will help me to know if this is a V1 vs. V2 problem or not. Also, if...
View ArticleNew Post: taskscheduler return next run time incorrect
Hi, Windows Version for both the servers is Windows Server R2. Yes, I am getting the correct next run time value when you use the system Windows Task Scheduler tool, but when I am using below code it...
View ArticleNew Post: taskscheduler return next run time incorrect
Just to be clear, when you get the time using the Windows Task Scheduler tool, are you connecting to the remote server using the system tool on your local machine? Similarly, are you running the code...
View ArticleNew Post: taskscheduler return next run time incorrect
Hi, To get time of task from Windows Task Scheduler of Europe server, i am doing Remote Desktop Connection and I can see Next Run Time as per Europe timining. But When I am running above code from my...
View ArticleNew Post: taskscheduler return next run time incorrect
That helps. Will you try and connect to the server in Europe from your local instance of the Windows Task Scheduler tool (Actions | Connect to Another Computer) and then see if the time zone for next...
View ArticleNew Post: taskscheduler return next run time incorrect
I tried to connect to Europe server using remote desktop connection and the Next Run Time in task scheduler is showing correct. But while pulling Bext Run Time using code it is showing incorrect (in EST).
View ArticleNew Post: taskscheduler return next run time incorrect
I understand. However, I'm asking you to connect to the European server using the local Windows Task Scheduler tool. It will then use the same native call to get the next run time remotely that my...
View ArticleNew Post: TaskEditDialog incorrectly updates weekly triggers
When I open a task in the TaskEditDialog the Triggers don't seem to update properly. Steps to reproduce: Create a new TaskEditDialog passing into the constructor the task, true for edit, and true for...
View ArticleNew Post: TaskEditDialog throws NullReferenceException on OK button click if...
TaskEditDialog editorForm = new TaskEditDialog( ); editorForm.Editable = true; editorForm.RegisterTaskOnAccept = true; editorForm.Initialize( SelectedTask ); editorForm.ShowDialog( ); I know there are...
View ArticleNew Post: COMException when calling FindAllTasks on IIS
Hello! To start with, I have read a lot of threads that have similar issues, but the solutions dont seem to be applicable in my case. The exception I get is this:[COMException (0x80041318): The task...
View ArticleNew Post: TaskEditDialog throws NullReferenceException on OK button click if...
I found a work around to the problem which may help someone else.. Moved my Database to C:\ProgramData\AppName. Created my Tasks under the SYSTEM account. Removed all ScheduleTask editing ability from...
View ArticleNew Post: Exception when using NETWORK SERVICE on Windows Server 2003
Hi I am having the same issue. OS = Win8 and Win Server 2008 R2. I tried below code td.Principal.GroupId = "NT AUTHORITY\NETWORK SERVICE"; td.Principal.LogonType = TaskLogonType.S4U; also tried the...
View ArticleSource code checked in, #89779
* Updates to TaskSecurity to work with .NET 2.0 * Updated interop code to use mashaling for arrays * Added V1 task name check on registration to make sure it does not include invalid file name...
View ArticleNew Post: TaskEditDialog incorrectly updates weekly triggers
Yes this is a bug and is fixed in the current source code. It will roll into the next downloadable update.
View ArticleNew Post: Exception when using NETWORK SERVICE on Windows Server 2003
Try the following:td.Principal.UserId = "NETWORK SERVICE"; td.Principal.LogonType = TaskLogonType.ServiceAccount;
View ArticleSource code checked in, #89844
* Added support for read-only tasks when an upstream task is read from a remote server and has to be "stripped" of newer properties in order to be viewed downstream * Removed SecurityEditor project and...
View ArticleReleased: Release 2.1.0 (Apr 09, 2014)
Some bug fixes, better support for Windows 8 additions to core library, addition of Fluent syntax, and crontab syntax, since the 1.9.4 release. Since 2.0.3 release, added support for .NET 2.0 and 4.0,...
View ArticleCreated Release: Release 2.1.0 (Apr 09, 2014)
Some bug fixes, better support for Windows 8 additions to core library, addition of Fluent syntax, and crontab syntax, since the 1.9.4 release. Since 2.0.3 release, added support for .NET 2.0 and 4.0,...
View Article