Monday, January 7, 2013

Phone_Interview_questions

What major challenges and problems did you face? How did you handle them?
Be sure to include specific examples of how you handled a particular difficult situation. Discuss how you researched the issue and contributed to finding a solution. Examples of good responses include:
  • When the software development of our new product stalled, I coordinated the team which managed to get the schedule back on track. We were able to successfully troubleshoot the issues and solve the problems, within a very short period of time.

ThankYouLetter_PhoneInterview

Dear Mr./Ms. Last Name:

I appreciate having the opportunity to speak with you today about the marketing assistant position at the ABCD company. The job seems to be a perfect match for my abilities and interests.

In addition to my enthusiasm, I will bring to the position strong communication skills, flexibility, and the ability to encourage others to work cooperatively with the department.
I appreciate the time you took to interview me. I look forward to having the opportunity to meeting you in person and hope to hear from you soon.
Again, thank you very much for your time and for your consideration.
Best Regards,

Your Name
Email Address

Interview_ThankYouLetter_Interview


Date

Name
Title
Organization
Address
City, State, Zip Code

Dear Mr./Ms. Last Name:

Thank you for taking the time out of your busy schedule to talk to me about the Senior Programmer Analyst position with XXX Company. I appreciate your time and consideration in interviewing me for this position.

After speaking with you and the group, I believe that I would be a perfect candidate for this position, offering the quick learning and adaptability that is needed for a diversified position.

In addition to my enthusiasm for performing well, I would bring the technical and analytical skills necessary to get the job done.

I am very interested in working for you and look forward to hearing from you once the final decisions are made regarding this position. Please feel free to contact me at any time if further information is needed. My cell phone number is (555) 111-1111.

Thank you again for your time and consideration.

Sincerely,

Your Signature

Your Typed Name

 

 

Interview Follow up eMail after a Face to Face Interview

From: Your name

To: Interviewer's name

Subject: Thank you for an exciting meeting

Dear Mr/Mrs ..........

I sincerely appreciate the time you took today interviewing me for the position of ...... After learning more about XYZ Corporation and its goals, the possibility of joining the company is even more exciting.

The information you provided has further convinced me that I can make a positive contribution towards the growth and profitability of your company. The position we discussed is well suited to my strengths and skills and my previous experience at ABC seems an excellent match with the job requirements.

I am looking forward to hearing from you. If your require any additional information please feel free to call. Thank you for your time and consideration.

Regards
Your Name
Contact number and email address


Interview Follow up eMail after Entry Level Job Interview

From: Your name

To: Interviewer's name

Subject: Thank you for the informative discussion

Dear Mr/Mrs .........

I would like to take this opportunity to thank you for the interview this morning. I was keenly motivated by the valuable information you provided on the job opportunity and your company. I would like to confirm my strong interest in this entry-level position.

Your clear explanation of the requirements of the job reinforced my confidence that my education and background are a good match for this position and that I will prove to be an asset to the company. I have always been considered an enthusiastic and hard worker and I would embrace the opportunity to demonstrate my commitment and ability to excel in this job.

Thank you for the time and courtesy extended me. I look forward to hearing from you soon.

Sincerely
Your Name
Contact number and email address


 

 

Dear Mr./Ms. Last Name:

It was very enjoyable to speak with you about the developer position at the Smith Agency. The job, as you presented it, seems to be a very good match for my skills and interests. The creative approach to account management that you described confirmed my desire to work with you.

In addition to my enthusiasm, I will bring to the position strong writing skills, assertiveness and the ability to encourage others to work cooperatively with the department. My artistic background will help me to work with artists on staff and provide me with an understanding of the visual aspects of our work.

I understand your need for administrative support. My detail orientation and organizational skills will help to free you to deal with larger issues. I neglected to mention during my interview that I had worked for two summers as a temporary office worker. This experience helped me to develop my secretarial and clerical skills.

I appreciate the time you took to interview me. I am very interested in working for you and look forward to hearing from you about this position.

Sincerely,

Your Signature

 

Dear ,


Thank you for taking so much time to discuss the SQL Server and .NET developer position in your company this morning. After meeting with you and hearing your description of this position, I am confident that I will contribute to the team success using my skills which I learned from Humber College and work placement.
I feel I could learn a great deal from you and would certainly enjoy working with you.In addition to my working and studying experience, I will bring excellent habits and attitude to this position.

If I am not the best candidate and do not meet the requirements I still appreciate this opportunity you gave me.

Again, thank you for your time and consideration.

Sincerely,


 


First paragraph. Convey how much you enjoyed and appreciated the meeting, and make some positive remarks about the company.

Second paragraph. Let the interviewer know you’re still keen on getting the position. Reiterate your strengths and mention pertinent or new information that you failed to bring up during the interview.

Closing paragraph. Inform the interviewer that you would appreciate hearing from him or her again, and indicate your willingness to come in for a second interview.

 

 

Interview_FollowUp


[Interviewer],

I just wanted to follow up in regards to my interview on [date — or "last week"]. Do you have an update, or do you need any further information from me? Please let me know when you have a free moment.

Thank you,
[Your Name]


Interview Follow up Email when the Interviewer has Not Got Back to You
If more than a week has passed beyond the date you expected to hear back from the interviewer, you can send an email to politely inquire about the status of your job application. A brief but polite email shows that you are still interested in the position and are willing to be proactive in finding out more.
From: Your name
To: Interviewer's name
Subject: Interview with John Smith for the Sales Administrator job

Since our interview on the date I have been very excited about the possibility of working as a Sales Administrator for your company. I hope you are able to give me an update on the progress of your hiring decision and the status of my job application.
I look forward to hearing from you.
Sincerely
Your Name
Contact number and email

Friday, December 7, 2012

EventLogProvider

<The following exception was thrown by the web event provider 'EventLogProvider' in the application '/applicationname' (in an application lifetime a maximum of one exception will be logged per provider instance):
System.Web.HttpException: The EventLogWebEventProvider provider failed to log an event with the error code 0x80070057.
at System.Web.Management.EventLogWebEventProvider.ProcessEvent(WebBaseEvent eventRaised)at System.Web.Management.WebBaseEvent.RaiseInternal(WebBaseEvent eventRaised, ArrayList firingRuleInfos, Int32 index0, Int32 index1)

What is EventLogProvider
EventLogProvider is one of the ASP.NET providers. .NET 2.0 comes with web event providers for logging web events in the windows event log (EventLogWebEventProvider).
Web event providers provide the interface between ASP.NET's health monitoring subsystem and data sources that log or further process the events ("Web events") fired by that subsystem.

Can we troubleshoot from this log?
Error code 0x80070057 means invalid parameter. When EventLogProvider tried to log an entry, it found that an invalid parameter was passed to the function call.
It is hard to debug as we don't know what parameters were passed.

How to enhance in the future.
We can custom Web Event Provider by deriving from System.Web.Management.WebEventProvider. By doing this we can log web events in media not supported by the built-in web event providers.

How to manually generate Event ID using EventCreate command

How to manually generate Event ID using EventCreate command
Link: http://winplat.net/post/2010/10/21/How-to-manually-generate-Event-ID-using-EventCreate-command.aspx
There are times when you need to generate event id of your choice. Probably you need your script to generate some event id on some event or just to test something you need an event. Windows lets you generate event id manually without having programming knowledge, by using EventCreate command line utility.
The EventCreate.exe lets you generate event id between the range of 0 – 1000. To generate event id above 1000, you may need LogEvent.exe.
This utility comes with windows, you simply need to open the command prompt and type in the command. Here is the syntax for the command:
EventCreate /S <Computer> /ID <Event ID> /L <Log Name> /SO <Source name> /T <Type> /D <Event log Description>

where /S is the computer name on which event should be generated. For local computer, omit this switch
/ID is the event id. You can specify a number from 0 to 1000 only.
/L is the event log you want to create event in. Valid parameters are: System and Application
/SO is the Source name for the Event.
/T is the Event Type. Valid parameters are: Success, Warning, Information and Error
/D is the Event log description. Ensure that you mention the message in quotes.
For example:
EC2
In above example, We created Event ID 50 with Source ‘Winplat.Net’ and type Error. The event log description says: “This is a test error”

If you want to generate an event with a different user account context then we have to use switches:
/U: Username under which the command should execute
/P: Password for the username provided. If this switch is omitted, you will be prompted for it.

Please Note: EventCreate.exe lets you generate event id ranging from 0-1000 only. To generate an event id above 1000, you need to use LogEvent.exe. Click here to jump to the article on LogEvent.exe.

Event Sources (Windows)
Link: http://msdn.microsoft.com/en-us/library/windows/desktop/aa363661(v=vs.85).aspx

Each log in the Eventlog key contains subkeys called event sources. The event source is the name of the software that logs the event. It is often the name of the application or the name of a subcomponent of the application if the application is large. You can add a maximum of 16,384 event sources to the registry. The Security log is for system use only. Device drivers should add their names to the System log. Applications and services should add their names to the Application log or create a custom log.
The structure of the event sources is as follows:

HKEY_LOCAL_MACHINE
   SYSTEM
      CurrentControlSet
         Services
            EventLog
               Application
                  AppName
               Security
               System
                  DriverName
               CustomLog
                  AppName
You cannot use a source name that has already been used as a log name. In addition, source names cannot be hierarchical; that is, they cannot contain the backslash character ("\").
Each event source contains information (such as a message file) specific to the software that will be logging the events,, as shown in the following table.
Registry ValueDescription
CategoryCountNumber of event categories supported. This value is of type REG_DWORD.
CategoryMessageFilePath to the category message file. A category message file contains language-dependent strings that describe the categories. This value can be of type REG_SZ or REG_EXPAND_SZ.
EventMessageFilePath to one or more event message files; use a semicolon to delimit multiple files. An event message file contains language-dependent strings that describe the events. This value can be of type REG_SZ or REG_EXPAND_SZ.
ParameterMessageFilePath to the parameter message file. A parameter message file contains language-independent strings that are to be inserted into the event description strings. This value can be of type REG_SZ or REG_EXPAND_SZ.
TypesSupportedBitmask of supported types. This value is of type REG_DWORD. It can be one or more of the following values:
EVENTLOG_AUDIT_FAILURE (0x0010)
EVENTLOG_AUDIT_SUCCESS (0x0008)
EVENTLOG_ERROR_TYPE (0x0001)
EVENTLOG_INFORMATION_TYPE (0x0004)
EVENTLOG_WARNING_TYPE (0x0002)

When an application uses the RegisterEventSource or OpenEventLog function to get a handle to an event log, the event logging service searches for the specified event source in the registry. For example, the Application log might contain event sources for Microsoft SQL Server and Microsoft Excel. If an application uses RegisterEventSource or OpenEventLog with a source name of Application, SQL, or Excel, the event logging service returns a handle to the Application log.
An application can use the Application log without adding a new event source to the registry. If the application calls RegisterEventSource and passes a source name that cannot be found in the registry, the event-logging service uses the Application log by default. However, because there are no message files, the Event Viewer cannot map any event identifiers or event categories to a description string, and will display an error. For this reason, you should add a unique event source to the registry for your application and specify a message file.

Run: regedit
under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application
Add key  "appMail"
AddValue as following:
Default REG_SZ (value not set)
EventMessageFile REG_Expand_SZ C:\Windows\Microsoft.NET\Framework\v4.0.30319\EventLogMessages.dll
   No wyou can Run EventLog.WriteEntry to insert log by application
//if (!EventLog.SourceExists(sSource))
// EventLog.CreateEventSource(sSource, sLog);
EventLog.WriteEntry(sSource, sEvent, EventLogEntryType.Error,1);