I have a win32 application that requires .net 3.5 framework. I am unable to figure out how to deploy this application using intune. I am encountering the following issue:
The first command in my script enables .net 3.5 in the Windows 10 device, but then it requires a restart, without which the second line won't execute.
start /wait DISM /Online /Enable-Feature /FeatureName:NetFx3 /All
wscript install.vbs
How do I solve such dependency issues using intune?