Change project preferences
The first thing you should do is to tell your IDE (like Visual Studio) not to embed manifest into executables. Instead of a native one, you need a custom manifest with SDK DLLs listed.
Go to [ProjectName] / Properties / Application and set the "Manifest" drop-down option to "Create application without a manifest".
Copy the files
Copy your application to some folder and create a subfolder named "DLLs". Place required SDK components (DLLs files) into the "DLLs" folder.
All DLLs should locate in the same folder. You don't need to create extra folders for Aja etc.
You can use the "Redistribution Maker" application to simplify the process of collecting the DLLs. This application locates in the "Utilities" folder.
MPlatform.
"...\Medialooks\MPlatform SDK\Utilities\Redistribution Maker MPlatform SDK.exe"
MFormats.
"...\MFormats SDK\Utilities\Redistribution Maker MFormats SDK.exe"
Note: the "Redistribution Maker" needs to run in administrator mode.
Check Redistribution Guidelines to find out what DLLs you should redistribute with your application.
Place MServer.exe.manifest (located in /bin/Manifests folder of your SDK directory) file near the MServer.exe.
It should be located in all subfolders where MServer.exe is placed. The required files are listed in Redistribution Guidelines.
Create a manifest file
Take a prototype manifest file:
..\Bin\Manifests\[Target Build Configuration]\[YourApplicationExeFile].exe.manifest
Rename it according to your application's .exe file name (Network Playback Sample.exe.manifest, for instance).
Place this manifest file in a folder where your application EXE file is located. And start your application - it should run without DLLs registration.
Visual Basic project
1) Open your VB solution - right button on your project - Add new item - search for "manifest" - add (as a result you'll get app.manifest file in the main folder of your solution)
2) Replace app.manifest file by ..\Bin\Manifests\[Target Build Configuration]\[YourApplicationExeFile].exe.manifest but save the app.manifest name (or just copy the contents from one file to another)
3) Rebuild your solution for your target build configuration
4) Copy the files the same way as it is shown in "Copy the files" paragraph above
5) Try to start your .exe