From the ntstatus.h SDK header file:
//
// MessageId: STATUS_DLL_NOT_FOUND
//
// MessageText:
//
// The program can't start because %hs is missing from your computer.
// Try reinstalling the program to fix this problem.
//
#define STATUS_DLL_NOT_FOUND ((NTSTATUS)0xC0000135L) // winnt
The "try reinstalling the program" advice is solid, it is however up to you to figure out exactly what needs to be installed. If you have no idea whatsoever then use SysInternals' ProcMon utility, you'll see Windows searching for the DLL and failing to find it. The name of the DLL should be a good lead. If it is mscoree.dll then you forgot to install .NET on the target machine.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…