ZeZe Posted March 9, 2016 Report post Posted March 9, 2016 Hi all, I'm deploying an application that requires .NET 4.5.2. I've created a application called ".NET framework 4.5.2" and the application called "Application X". The Application X has a dependency on .NET framework 4.5.2. Basically before starts installing the application X, first installs the framework. In one client I had this message: Waiting for process 9540 to finish. Timeout = 30 minutes. AppEnforce 09.03.2016 15:46:25 7388 (0x1CDC) Process 9540 terminated with exitcode: 16389 AppEnforce 09.03.2016 15:46:26 7388 (0x1CDC) Looking for exit code 16389 in exit codes table... AppEnforce 09.03.2016 15:46:26 7388 (0x1CDC) Unmatched exit code (16389) is considered an execution failure. AppEnforce 09.03.2016 15:46:26 7388 (0x1CDC) Has anyone deployed applications with dependencies and if so, framework 4.5.2? I see other people with similar issues. Thank you in advanced! Quote Share this post Link to post Share on other sites More sharing options...
Apexes Posted March 9, 2016 Report post Posted March 9, 2016 See here: http://mikesconfigmgrblog.blogspot.com/2014/07/microsoft-net-framework-45-not.html Possibly an issue with it being in application model. Try it as a package to test 1 Quote Share this post Link to post Share on other sites More sharing options...
ZeZe Posted March 9, 2016 Report post Posted March 9, 2016 So a simply command but instead of application, do it as a package... correct? Quote Share this post Link to post Share on other sites More sharing options...
Apexes Posted March 9, 2016 Report post Posted March 9, 2016 yep - for troubleshooting see if it can install as a package first off, use the same command line. out of curiosity - what command line are you using? Application model can be picky with certain apps Quote Share this post Link to post Share on other sites More sharing options...
ZeZe Posted March 10, 2016 Report post Posted March 10, 2016 I'm using this command: "NDP452-KB2901907-x86-x64-AllOS-ENU.exe" /q /norestart I can also create a script (like start /wait "NDP452-KB2901907-x86-x64-AllOS-ENU.exe" /q /norestart) and see how it goes. Quote Share this post Link to post Share on other sites More sharing options...
ZeZe Posted March 10, 2016 Report post Posted March 10, 2016 Yeah, but you are right... as an application (even with script) it doesn't work correctly. Sometimes works, sometimes doesn't... not worth it! Package it works... it's a shame because it's one of those cases that you could use the dependencies to install an application. Quote Share this post Link to post Share on other sites More sharing options...
Apexes Posted March 10, 2016 Report post Posted March 10, 2016 Yeah it's annoying. Other option is you could put it into a task sequence, and put in a TS step to check if .net is installed - if it's not, then install it, but if it detects it is, it'll skip the step and run to the main application install. Kind of a similar way of doing dependancies 1 Quote Share this post Link to post Share on other sites More sharing options...