--- title: Invoke host binaries description: Add invocations to host binaries from the frontend with the extension SDK. keywords: Docker, extensions, sdk, build aliases: - /desktop/extensions-sdk/guides/invoke-host-binaries/ --- In some cases, your extension may need to invoke some command from the host. For example, you might want to invoke the CLI of your cloud provider to create a new resource, or the CLI of a tool your extension provides, or even a shell script that you want to run on the host. You could do that by executing the CLI from a container with the extension SDK. But this CLI needs to access the host's filesystem, which isn't easy nor fast if it runs in a container. However host binaries invoke from the extension executables (as binaries, shell scripts) shipped as part of your extension and deployed to the host. As extensions can run on multiple platforms, this means that you need to ship the executables for all the platforms you want to support. Learn more about extensions [architecture](../architecture/_index.md). > [!NOTE] > > Only executables shipped as part of the extension can be invoked with the SDK. In this example, the CLI is a simple `Hello world` script that must be invoked with a parameter and returns a string. ## Add the executables to the extension {{< tabs >}} {{< tab name="Mac and Linux" >}} Create a `bash` script for macOS and Linux, in the file `binaries/unix/hello.sh` with the following content: ```bash #!/bin/sh echo "Hello, $1!" ``` {{< /tab >}} {{< tab name="Windows" >}} Create a `batch script` for Windows in another file `binaries/windows/hello.cmd` with the following content: ```bash @echo off echo "Hello, %1!" ``` {{< /tab >}} {{< /tabs >}} Then update the `Dockerfile` to copy the `binaries` folder into the extension's container filesystem and make the files executable. ```dockerfile # Copy the binaries into the right folder COPY --chmod=0755 binaries/windows/hello.cmd /windows/hello.cmd COPY --chmod=0755 binaries/unix/hello.sh /linux/hello.sh COPY --chmod=0755 binaries/unix/hello.sh /darwin/hello.sh ``` ## Invoke the executable from the UI In your extension, use the Docker Desktop Client object to [invoke the shell script](../dev/api/backend.md#invoke-an-extension-binary-on-the-host) provided by the extension with the `ddClient.extension.host.cli.exec()` function. In this example, the binary returns a string as result, obtained by `result?.stdout`, as soon as the extension view is rendered. {{< tabs group="framework" >}} {{< tab name="React" >}} ```typescript export function App() { const ddClient = createDockerDesktopClient(); const [hello, setHello] = useState(""); useEffect(() => { const run = async () => { let binary = "hello.sh"; if (ddClient.host.platform === 'win32') { binary = "hello.cmd"; } const result = await ddClient.extension.host?.cli.exec(binary, ["world"]); setHello(result?.stdout); }; run(); }, [ddClient]); return (