Computer restarts while using Visual Studio 2012

0

I have Windows 7 Enterprise edition and I have installed Visual Studio 2012 and Microsoft SQL Server 2014 Management Studio. Whenever I start Visual Studio to work on my project the computer restarts with no error message. I tried to run Visual Studio as an administrator, but still my PC gets restarted and I lose my work!

Is it related to the memory size or to the Windows version?

i checked the window application log i found Error

The description for Event ID 0 from source MSOIDSVC.EXE cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

If the event originated on another computer, the display information had to be saved with the event.

The following information was included with the event:

InitializeSvcAPI failed with hr = 0x80048883

i don't know what is the meaning of this error. also i found another error message

Can't find script engine "VBSript" for script \servername\SysVol\servername\Policies{C914....}\User\Scripts\Logon\Acrobat_7_Log.vbs"

any idea

My system details.

S

Noora No

Posted 2015-04-27T07:16:07.283

Reputation: 3

1Press your start menu and type in compmgmt.msc, then hit enter. In there you want to click even viewer, and then either windows or applications and services logs and see if there shouldn't be one with a warning or error sign on it. – None – 2015-04-27T08:02:24.223

Please edit your question with the information if you found in the event viewer, or close this question. – Andrew – 2015-04-27T11:03:47.100

This has nothing to do with memory size or the version of Windows your using. The errors are pretty clear. You have system files that are corrupt that Visual Studio requires. – Ramhound – 2015-04-27T11:30:26.077

Thank you for the replies, what are these files and where can find them and how to fix these issues? note that i have another PC with windows 8 and i am not facing any issues with visual studio and SQL, is it a bug in window 7? – Noora No – 2015-04-27T11:37:33.137

check the event log for Kernel ID 41 entries: https://support.microsoft.com/en-us/kb/2028504/en-us

– magicandre1981 – 2015-04-27T17:56:04.027

i was able to read the dump file, and i am getting this error >ERROR: Module load completed but symbols could not be loaded for igdkmd64.sys Probably caused by : igdkmd64.sys ( igdkmd64+23cb0 ) – Noora No – 2015-04-28T09:18:45.553

igdkmd64.sys = Intel HD driver. So update the GPU driver or disable the HW acceleration inside the Visual Studio options. – magicandre1981 – 2015-04-29T17:46:09.087

@magicandre1981 can you please change your comment to an answer to accept it, thank you – Noora No – 2015-05-05T13:09:09.900

@NooraNo ok, I've done this. – magicandre1981 – 2015-05-05T17:04:30.110

Answers

0

The Windbg output

ERROR: Module load completed but symbols could not be loaded for igdkmd64.sys 
Probably caused by : igdkmd64.sys ( igdkmd64+23cb0 ) 

indicates that the reboot was caused by the Intel HD graphic driver. Go to intel.com, download and install the latest driver version or disable the hardware acceleration inside Visual Studio options.

enter image description here

magicandre1981

Posted 2015-04-27T07:16:07.283

Reputation: 86 560