I am trying to use Windows Sandbox to do quick tests of new releases of an application I support for basic functionality (login, etc.). I was able to set up a .wsb config file and have it run a powershell script upon logon to install the application and any system requirements.... The issue I am having is that the application requires .Net Framework 3.5 and .Net Framework 4.8 in order to function correctly. I added the following line to the login powershell script (script is run in elevated powershell window as administrator) in my .wsb file where it runs the following DISM command:
DISM /online /enable-feature /featurename:NetFX3 /All /Source:C:\users\wdagutilityaccount\desktop\WindowsSandboxScripts\sources\sxs /LimitAccess
When the script hits that line and "Error: 87" appears. See below
Has anyone tried running a .Net application in Windows Sandbox? If you were able to install .Net 3.5 (and 4.8) please let me know what steps I need to take to get .Net set up in Windows Sandbox. I found this post that references some problematic Windows updates but my host Windows 10 machine has neither installed.
TIA, Chris