# Updater does not work on Windows 11

**URL:** https://forum.fxsound.com/t/updater-does-not-work-on-windows-11/2193
**Category:** Get Help
**Created:** [August 22, 2023, 1:31pm UTC](https://forum.fxsound.com/t/updater-does-not-work-on-windows-11/2193 "2023-08-22T13:31:24Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![flip.be](https://avatars.discourse-cdn.com/v4/letter/f/2acd7d/32.png) [@flip.be](https://forum.fxsound.com/u/flip.be)
#### Post date: [August 22, 2023, 1:31pm UTC](https://forum.fxsound.com/t/updater-does-not-work-on-windows-11/2193/1 "2023-08-22T13:31:24Z")

</div>

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:

```auto
  <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:

```auto
  <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

---

<div class="post-metadata">

### Author: ![raddy](https://avatars.discourse-cdn.com/v4/letter/r/e0b2c6/32.png) [@raddy](https://forum.fxsound.com/u/raddy)
#### Post date: [August 22, 2023, 1:43pm UTC](https://forum.fxsound.com/t/updater-does-not-work-on-windows-11/2193/2 "2023-08-22T13:43:39Z")

</div>

> [@flip.be](#):
>
> Obviously that should be:

Wait next release

> [@Update Task](https://forum.fxsound.com/t/update-task/1899/16):
>
> Sure, I will update the installer in the next release to create the task in this format.
