Updater does not work on Windows 11

I noticed that FxSound did not get updated on Windows 11.

The Last Run Result for the FxSound/Update Task in Task Scheduler shows:

The system cannot find the file specified. (0x80070002).

That is because the Task configuration is wrong:

  <Actions Context="Author">
    <Exec>
      <Command>C:\Program</Command>
      <Arguments>Files\FxSound LLC\FxSound\updater.exe /silent</Arguments>
    </Exec>
  </Actions>

(In %windir%\System32\Tasks\FxSound\Update)

Obviously that should be:

  <Actions Context="Author">
    <Exec>
      <Command>"C:\Program Files\FxSound LLC\FxSound\updater.exe"</Command>
      <Arguments>/silent</Arguments>
    </Exec>
  </Actions>

I don’t know how your installer creates the Task but the double quotes ( " ) are required to make sure it is configured correctly.

HTH,
flip

1 Like

Wait next release

1 Like