views:

153

answers:

1

Hello everyone,

If I develop my application based on Windows Media Encoder 9 Series SDK, and I am using C# + .Net 2.0 + VSTS 2008, how to deploy all necessary dependent files (the ones from Windows Media Encoder 9 and Windows Media Encoder 9 SDK) to another computer without installaing Windows Media Encoder 9 on the target computer?

thanks in advance, George

+1  A: 

If you are using a Setup project, just select the necessary DLLs to be included with your setup.

Are you using OneClick deployment? If so, you can use the Prerequisites screen or simply select the necessary files to include in the Application files screen (both in the Publish tab of your project properties).

Zyphrax
If I need some COM component, and Setup project will automatically register COM for me?
George2
Not automatically, you can find more info on that here: http://support.microsoft.com/kb/307367
Zyphrax
My current issue is, I need to find out the dependent COM component from WME or WME SDK, any ideas how to do that?
George2