Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.
7942 Discussions

There is no toolbar or menu item for Intel C++ Compiler in Visual Studio 2008.

boris_zaltzmangmail_
246 Views
Sorry the steps are not completed. You should do following after making the changes:
0. open a cmd window that has regsvr32 on the path.
2. go to the IDE integration directory, e.g. "C:\Program Files\Intel\Compiler\VS Integration\C++\VS2008"
3. run following cmd to uninstall IDE integration (just to make sure the registry is clean)
>> integrate.bat "C:\Program Files\Microsoft Visual Studio 9.0" /u
>> integrate.bat "C:\Program Files\Microsoft Visual Studio 9.0" /u
4. run following cmd to install IDE integration:
>> integrate.bat "C:\Program Files\Microsoft Visual Studio 9.0"

5. now open VS2008 to see if the toolbar is there.

Jennifer

I have the same problem Could you explain for unadvanced user what do you by step 0?
0 Kudos
1 Reply
JenniferJ
Moderator
246 Views
0. open a cmd window that has regsvr32 on the path.

I have the same problem Could you explain for unadvanced user what do you by step 0?

More detail about step 0:
1. click "Start" menu, select "Run", and type "cmd"
2. then type another cmd: "regsvr32 /?" and return.
This cmd will display a dlg. If you get following:

'regsvr32' is not recognized as an internal or external command,
operable program or batch file.

It means regsvr32.exe could not be find. You'll need to add "C:WINDOWSsystem32" to the path.
To do that:
1. in the same cmd window, use following cmd:
set path=C:WINDOWSsystem32;%path%

This regsvr32 is needed because the integrate.bat will use it to register the DLLs.

Jennifer
0 Kudos
Reply