0

I am building images using AWS Appstream. I have a json which reads the application location and is returning a \u0027 error. I know this is unicode for apostrophe However, I don't have any apostrophe in my code path and not sure if there is a way around this or to rename folders to fit some syntax I'm not catching? Below is the json I'm providing. I've tested the powershell script and it runs and installs the program just fine without automating it using Appstream and the json file. The full error says: {"status":1,"message":"File\u0027C:\Program Files (x86)\ACL Software\ACL for Windows 15\ACLLauncher.exe\u0027 could not be found."}

{
  "packageType": "powershell",
  "packageInstall": {
    "script": "install.ps1"
  },
  "applicationName": "ACL151",
  "applicationExe": "C:\\Program Files (x86)\\ACL Software\\ACL for Windows 15\\ACLLauncher.exe"
}
TallyHawk
  • 3
  • 3
  • The apostrophes (single quotes) are simply how the error message quotes the offending path, so the error message is telling you that file `C:\Program Files (x86)\ACL Software\ACL for Windows 15\ACLLauncher.exe` wasn't found. – mklement0 Oct 29 '22 at 01:07

0 Answers0