Lldb-dap in VSCode

I have installed llvm via scoop. But when I test lldb, it says I can’t find python310.dll. So I installed python310 again through scoop and enabled it to use.(llvm version 19.1.6)
When I debug using the lldb-dap plugin for vscode, I can’t start debugging.

But in WSL, it works well.

What extension are you using? LLDB DAP, or CodeLLDB?

What kind of errors are you getting?

The extension is LLDB DAP. I’ve generated the executable.
launch.json

{
    "configurations": [
        {
            "type": "lldb-dap",
            "request": "launch",
            "name": "Debug",
            "program": "${workspaceFolder}/test.exe",
        }
    ],
    "version": "2.0.0"
}

And when I start debugging, it happens nothing.