Hi Damien,
I tried out the above steps but still couldnt see the result.
My code:
namespace Company.Global.ITSM.Survey.TimerJob
{
public class ITSMTimerJob
{
public ITSMTimerJob()
{
}
public void Execute()
{
StreamWriter objReader;
objReader = new StreamWriter("E:\\TestFile.txt");
objReader.Write(DateTime.Now.ToString());
objReader.Close();
}
}
}
Config Details:
Name: ITSM_Survey_TimerJob
RunAtNextOpportunity : Checked
Status: Enabled
DaysToRun: Everyday
HoursToRun: Set to 6PM
Assembly: Company.Global.ITSM.Survey.TimerJob, 1.0.0.0, Culture=neutral, PublicKeyToken=872feffd9b3651f3
Class: Company.Global.ITSM.Survey.TimerJob.ITSMTimerJobMethod: Execute
ConstructorParameter1:
ConstructorParameter2:
The LastRunDateTime is updated, and RunAtNextOpportunity is Unchecked. but no file is created.
Please Suggest.
Thanks,
Sai