System-Wide Install and using without admin rights

Hi,

Why isn't there an option to install Arduino system-wide?

Not in every enviroment users have admin rights!!!

VG

Have you tried the three different options (exe, msi, zip)? If I'm not mistaken one of the first two (maybe both) asks you to install for the current user or all users.

The dialog of the EXE installer you get from the "Windows Win 10 and newer, 64 bits" download link on the "Software" page does:

image

It is also possible to get an equivalent configurability with the "MSI installer", but you must pass the appropriate flags to the msiexec tool to get that so it is typically only used in the context of automated or mass deployments in institutional environments since the average user will find the interactive GUI of the EXE installer more convenient for customizing the configuration of their installation.

Thanks for the tip with the "Only for me" option. We´ll test it...

We used winget for the installation because winget can update the software without user/admin interaction. But Winget find Arduino only with in user scope, not in machine...

And with exe or msi files, automatic app update is´nt possible.

Arduino IDE 2.x does have an auto-update feature. When a newer version is available, a notification dialog appears in Arduino IDE and the user can choose whether to install the update:

image

If the update offer is accepted by the user, the IDE then automatically downloads and installs the new version. The only additional action needed from the user is to quit the current IDE session and complete the installation of the update, as guided by the updater:

image

without admin rights?

I create a mst file with orca:
image

Now, a part of the installation with msi is as desired... but at first start, the app downloaded the usb drivers to user folder an start the installation of it.

But users doesnt have admin rights in our enviroment!

So, i must create a special installation package, that install in background (win32app) the drivers and add the firewall exceptions.

edit:
is there an option to start "Arduino IDE.exe" without search for usb-drivers and firewall configuration?

edit2:
in addition, the execution of applications and scripts is restricted by MS Applocker in the user folder

On the first run of Arduino IDE after a fresh installation, it checks to see if some additional components are present. As you noticed, if they are not found, the IDE downloads these components from the Internet and installs them. If it can't access the Internet to install the essential components, the IDE will not be functional.

So the alternative would be for you to install those components in advance. You could use the command line tool Arduino CLI for this.

The following arduino-cli commands will install the components that are normally installed by Arduino IDE on the first run after a fresh installation:

"Built-In" Tools + "Arduino AVR Boards" Platform and Drivers

On the first run after a fresh installation, Arduino IDE will automatically install the "Arduino AVR Boards" platform and the drivers for those boards if the platform is not already installed. This allows the users with the popular AVR-based boards such as the UNO R3 to get started working on Arduino projects with as gentle a learning curve as possible; deferring the need to learn how to use Boards Manager until such time as they want to do a project with a more advanced board.

If you pre-install "Arduino AVR Boards" during the deployment, Arduino IDE will not attempt to install it when the user starts the IDE for the first time. That can be done using this command:

arduino-cli core install --run-post-install arduino:avr

(the machine identifier for the "Arduino AVR Boards" platform is arduino:avr)

This command will also cause the "built-in" helper tools Arduino IDE depends on for processing of sketches and working with the ports of Arduino boards to be installed.

This command will also install the Windows USB CDC drivers for the "Arduino AVR Boards" platform. If you prefer the command only installs the platform and not the drivers, use the --skip-post-install flag in the command instead of --run-post-install.

More information:

https://arduino.github.io/arduino-cli/latest/commands/arduino-cli_core_install/

"Built-In" Libraries

On the first run after a fresh installation, Arduino IDE will automatically install a collection of fundamental libraries (e.g., "Keyboard", "Mouse", "Servo", "Stepper"). This allows the users to get started working on Arduino projects with as gentle a learning curve as possible; deferring the need to learn how to use Library Manager until such time as they want to use additional libraries in a project.

The libraries can be pre-installed using this command:

$Env:ARDUINO_DIRECTORIES_BUILTIN_LIBRARIES = "$Env:LOCALAPPDATA\Arduino15\libraries"; ./arduino-cli lib install --install-in-builtin-dir Arduino_BuiltIn

More information:

Great! :+1:

this is, what we are looking for... the cli app is hidden very well! :grin:

You are welcome. I'm glad if I was able to be of assistance.

Regards,
Per

Hi,

the automated machine wide installation of IDE and drivers works fine.
Also the driver is found, when a board is connected with the computer device.
In the device manager is then a object named "USB-SERIAL CH340 (COM3)"

But when a normal user starts the IDE, there is no port (COM3) to connect and the Port Manager displayed "NO PORTS DISCOVERED"... the same with an account with admin rights... and the COM3 Port is available...???

The command I shared:

only installs the drivers needed for the official Arduino boards supported by the "Arduino AVR Boards" platform. None of those boards use the WCH CH340 USB chip, so the CH340 drivers are not installed. You will need to install the CH340 drivers separately if you want to use Arduino IDE with the derivative boards that use the CH340 chip.

the drivers for the WCH CH340 USB are installed:

image

without admin rights:

with admin rights:

I'm going to ask you to post some additional information that might help us to identify the problem.

Please do this:

  1. Log into the "normal user" Windows account.
  2. Close all Arduino IDE windows if the IDE is already running.
  3. Start Windows "File Explorer".
  4. Open the Arduino IDE installation folder.
    The default installation location is at one of the following paths:
    • C:\Program Files\Arduino IDE
      
    • C:\Users\<username>\AppData\Local\Programs\Arduino IDE
      
      (where <username> is your Windows username)
  5. In the folder listing of the Arduino IDE installation folder, hold the Shift key while clicking the right hand button on the mouse.
  6. From the context menu, click "Open PowerShell window here".
    Windows PowerShell will now open with the current directory set to the Arduino IDE installation folder.
  7. Type the following command:
    & ".\Arduino IDE"
    
  8. Press the Enter key.
    Debug output should now be printed to the PowerShell window as Arduino IDE starts.
  9. Wait for Arduino IDE to finish starting.
  10. Switch back to the PowerShell window.
  11. Right click on the title bar of the PowerShell window.
    This will open a context menu.
  12. Select Edit > Select All from the context menu.
    This will select all the text in the PowerShell window.
  13. Press Ctrl+C.
    This will copy the contents of the PowerShell window to the clipboard.
  14. Open a forum reply here by clicking the Reply button.
  15. Click the <CODE/> icon on the post composer toolbar.
    This will add the forum's code block markup (```) to your reply to make sure the error messages are correctly formatted.
    Code tags icon on toolbar
  16. Press Ctrl+V.
    This will paste the output into the code block.
  17. Move the cursor outside of the code block markup before you add any additional text to your reply.
  18. Click the Reply button to post the output.

Please let me know if you have any questions or problems while following those instructions.

PS C:\Program Files\arduino-ide> & ".\Arduino IDE"
PS C:\Program Files\arduino-ide>
Arduino IDE 2.1.0
Starting backend process. PID: 9268
Using browser-only version of superagent in non-browser environment
Configuration directory URI: 'file:///c%3A/Users/acdc/.theia'
Configuring to accept webviews on '^.+\.webview\..+$' hostname.
2023-06-14T06:32:37.121Z root INFO Backend Object.initialize: 2.9 ms [Finished 6.515 s after backend start]
2023-06-14T06:32:37.122Z root INFO Backend Object.configure: 2.4 ms [Finished 6.515 s after backend start]
2023-06-14T06:32:37.123Z root INFO Backend MessagingContribution.onStart: 1.1 ms [Finished 6.515 s after backend start]
2023-06-14T06:32:37.124Z root INFO Backend OSBackendApplicationContribution.configure: 0.3 ms [Finished 6.641 s after backend start]
2023-06-14T06:32:37.124Z root INFO Backend DefaultWorkspaceServer.onStart: 0.2 ms [Finished 6.641 s after backend start]
2023-06-14T06:32:37.125Z root INFO Backend PluginLocalizationBackendContribution.configure: 0.1 ms [Finished 6.641 s after backend start]
2023-06-14T06:32:37.126Z root WARN Backend PluginLocalizationBackendContribution.initialize took longer than the expected maximum 50 milliseconds: 126.4 ms [Finished 6.641 s after backend start]
2023-06-14T06:32:37.126Z root INFO Backend TaskBackendApplicationContribution.onStart: 0.2 ms [Finished 6.641 s after backend start]
2023-06-14T06:32:37.126Z root INFO Backend ElectronTokenBackendContribution.configure: 2.4 ms [Finished 6.644 s after backend start]
2023-06-14T06:32:37.127Z config INFO >>> Initializing CLI configuration...
2023-06-14T06:32:37.127Z root INFO Backend PluginDeployerContribution.initialize: 0.4 ms [Finished 6.644 s after backend start]
2023-06-14T06:32:37.128Z root INFO Backend ConfigServiceImpl.onStart: 0.6 ms [Finished 6.644 s after backend start]
2023-06-14T06:32:37.128Z config INFO Loading CLI configuration from c:\Users\acdc\.arduinoIDE\arduino-cli.yaml...
2023-06-14T06:32:37.129Z root INFO Backend WebviewBackendSecurityWarnings.initialize: 0.3 ms [Finished 6.645 s after backend start]
2023-06-14T06:32:37.129Z root INFO Backend ArduinoDaemonImpl.onStart: 0.8 ms [Finished 6.646 s after backend start]
2023-06-14T06:32:37.129Z root INFO Backend NodeFileUploadService.configure: 1.5 ms [Finished 6.646 s after backend start]
2023-06-14T06:32:37.129Z daemon INFO Starting daemon from C:\Program Files\arduino-ide\resources\app\node_modules\arduino-ide-extension\build\arduino-cli.exe...
2023-06-14T06:32:37.129Z discovery-log INFO start
2023-06-14T06:32:37.129Z discovery-log INFO start new deferred
2023-06-14T06:32:37.130Z root INFO Backend HostedPluginLocalizationService.initialize: 0.3 ms [Finished 6.647 s after backend start]
2023-06-14T06:32:37.130Z root INFO Backend BoardDiscovery.onStart: 0.9 ms [Finished 6.647 s after backend start]
2023-06-14T06:32:37.130Z root INFO Backend FileDownloadEndpoint.configure: 1.1 ms [Finished 6.648 s after backend start]
2023-06-14T06:32:37.130Z root INFO Backend AuthenticationServiceImpl.onStart: 0.3 ms [Finished 6.649 s after backend start]
2023-06-14T06:32:37.130Z root INFO Backend PluginApiContribution.configure: 0.5 ms [Finished 6.649 s after backend start]
2023-06-14T06:32:37.134Z root INFO Backend HostedPluginReader.configure: 0.2 ms [Finished 6.650 s after backend start]
2023-06-14T06:32:37.134Z root INFO Backend HostedPluginReader.configure: 0.0 ms [Finished 6.650 s after backend start]
2023-06-14T06:32:37.134Z root INFO Backend PlotterBackendContribution.configure: 3.7 ms [Finished 6.654 s after backend start]
2023-06-14T06:32:37.136Z root INFO Theia app listening on http://localhost:51452.
2023-06-14T06:32:37.136Z root INFO Finished starting backend application: 6.4 ms [Finished 6.656 s after backend start]
2023-06-14T06:32:37.145Z root WARN The local plugin referenced by local-dir:/c%3A/Users/acdc/.arduinoIDE/plugins does not exist.
2023-06-14T06:32:37.146Z root WARN The local plugin referenced by local-dir:/c%3A/Users/acdc/.arduinoIDE/extensions does not exist.
2023-06-14T06:32:37.155Z root WARN The local plugin referenced by local-dir:C:\Users\acdc\.arduinoIDE\plugins does not exist.
2023-06-14T06:32:37.288Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.288Z root INFO Resolved "cortex-debug" to a VS Code extension "cortex-debug@1.5.1" with engines:
2023-06-14T06:32:37.289Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.292Z root INFO Resolved "vscode-arduino-tools" to a VS Code extension "vscode-arduino-tools@0.0.2-beta.8" with engines:
2023-06-14T06:32:37.292Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.293Z root INFO Resolved "vscode-builtin-cpp" to a VS Code extension "cpp@1.52.1" with engines:
2023-06-14T06:32:37.293Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.293Z root INFO Resolved "vscode-builtin-json" to a VS Code extension "json@1.46.1" with engines:
2023-06-14T06:32:37.294Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.294Z root INFO Resolved "vscode-builtin-json-language-features" to a VS Code extension "json-language-features@1.46.1" with engines:
2023-06-14T06:32:37.294Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.295Z root INFO Resolved "vscode-language-pack-bg" to a VS Code extension "vscode-language-pack-bg@1.48.3" with engines:
2023-06-14T06:32:37.295Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.295Z root INFO Resolved "vscode-language-pack-cs" to a VS Code extension "vscode-language-pack-cs@1.53.2" with engines:
2023-06-14T06:32:37.296Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.296Z root INFO Resolved "vscode-language-pack-de" to a VS Code extension "vscode-language-pack-de@1.53.2" with engines:
2023-06-14T06:32:37.296Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.297Z root INFO Resolved "vscode-language-pack-es" to a VS Code extension "vscode-language-pack-es@1.53.2" with engines:
2023-06-14T06:32:37.297Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.297Z root INFO Resolved "vscode-language-pack-fr" to a VS Code extension "vscode-language-pack-fr@1.53.2" with engines:
2023-06-14T06:32:37.298Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.298Z root INFO Resolved "vscode-language-pack-hu" to a VS Code extension "vscode-language-pack-hu@1.48.3" with engines:
2023-06-14T06:32:37.298Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.299Z root INFO Resolved "vscode-language-pack-it" to a VS Code extension "vscode-language-pack-it@1.53.2" with engines:
2023-06-14T06:32:37.299Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.300Z root INFO Resolved "vscode-language-pack-ja" to a VS Code extension "vscode-language-pack-ja@1.53.2" with engines:
2023-06-14T06:32:37.300Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.300Z root INFO Resolved "vscode-language-pack-ko" to a VS Code extension "vscode-language-pack-ko@1.53.2" with engines:
2023-06-14T06:32:37.300Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.301Z root INFO Resolved "vscode-language-pack-nl" to a VS Code extension "vscode-language-pack-nl@1.48.3" with engines:
2023-06-14T06:32:37.301Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.302Z root INFO Resolved "vscode-language-pack-pl" to a VS Code extension "vscode-language-pack-pl@1.53.2" with engines:
2023-06-14T06:32:37.302Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.302Z root INFO Resolved "vscode-language-pack-pt-BR" to a VS Code extension "vscode-language-pack-pt-BR@1.53.2" with engines:
2023-06-14T06:32:37.302Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.303Z root INFO Resolved "vscode-language-pack-ru" to a VS Code extension "vscode-language-pack-ru@1.53.2" with engines:
2023-06-14T06:32:37.303Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.303Z root INFO Resolved "vscode-language-pack-tr" to a VS Code extension "vscode-language-pack-tr@1.53.2" with engines:
2023-06-14T06:32:37.304Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.304Z root INFO Resolved "vscode-language-pack-uk" to a VS Code extension "vscode-language-pack-uk@1.48.3" with engines:
2023-06-14T06:32:37.308Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-06-14T06:32:37.308Z root INFO Resolved "vscode-language-pack-zh-hans" to a VS Code extension "vscode-language-pack-zh-hans@1.53.2" with engines:
2023-06-14T06:32:37.326Z daemon INFO INFO[0000] Using config file: c:\Users\acdc\.arduinoIDE\arduino-cli.yaml
INFO[0000] arduino-cli.exe version 0.32.2
INFO[0000] Executing `arduino-cli daemon`
Daemon is now listening on 127.0.0.1:51453
{"IP":"127.0.0.1","Port":"51453"}


2023-06-14T06:32:37.327Z daemon INFO Daemon is running.
2023-06-14T06:32:37.330Z config INFO Loaded CLI configuration: {"board_manager":{"additional_urls":[]},"build_cache":{"compilations_before_purge":10,"ttl":"720h0m0s"},"daemon":{"port":"50051"},"directories":{"data":"C:\\Users\\acdc\\AppData\\Local\\Arduino15","downloads":"C:\\Users\\acdc\\AppData\\Local\\Arduino15\\staging","user":"C:\\Users\\acdc\\Documents\\Arduino"},"library":{"enable_unsafe_install":false},"logging":{"file":"","format":"text","level":"info"},"metrics":{"addr":":9090","enabled":true},"output":{"no_color":false},"sketch":{"always_export_binaries":false},"updater":{"enable_notification":true}}
2023-06-14T06:32:37.331Z config INFO 'directories.data' and 'directories.user' are set in the CLI configuration model.
2023-06-14T06:32:37.331Z config INFO Loaded the CLI configuration.
2023-06-14T06:32:37.345Z config INFO Mapped the CLI configuration: {"dataDirUri":"file:///c%3A/Users/acdc/AppData/Local/Arduino15","sketchDirUri":"file:///c%3A/Users/acdc/Documents/Arduino","additionalUrls":[],"network":"none","locale":"en"}
2023-06-14T06:32:37.346Z config INFO Validating the CLI configuration...
2023-06-14T06:32:37.350Z config INFO The CLI config is valid.
2023-06-14T06:32:37.351Z config INFO <<< Initialized the CLI configuration.
2023-06-14T06:32:37.352Z daemon INFO INFO[0000] Loading hardware from: C:\Users\acdc\AppData\Local\Arduino15\packages

2023-06-14T06:32:37.355Z daemon INFO INFO[0000] Loading package arduino from: C:\Users\acdc\AppData\Local\Arduino15\packages\arduino\hardware

2023-06-14T06:32:37.377Z root INFO Resolve plugins list: 248.1 ms [Finished 6.896 s after backend start]
2023-06-14T06:32:37.397Z root INFO Deployed backend plugin "marus25.cortex-debug@1.5.1" from "C:\Program Files\arduino-ide\resources\app\plugins\cortex-debug\extension\dist\extension.js": 20.2 ms [Finished 6.917 s after backend start]
2023-06-14T06:32:37.399Z daemon INFO INFO[0000] Checking signature                            error="opening signature file: open C:\\Users\\acdc\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json.sig: Das System kann die angegebene Datei nicht finden." index="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json" signatureFile="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json.sig"

2023-06-14T06:32:37.411Z daemon INFO INFO[0000] Adding monitor tool                           protocol=serial tool="builtin:serial-monitor"
INFO[0000] Loaded platform                               platform="arduino:avr@1.8.6"
INFO[0000] Checking existence of 'tools' path: C:\Users\acdc\AppData\Local\Arduino15\packages\arduino\tools
INFO[0000] Loading tools from dir: C:\Users\acdc\AppData\Local\Arduino15\packages\arduino\tools

2023-06-14T06:32:37.411Z daemon INFO INFO[0000] Loaded tool                                   tool="arduino:arduinoOTA@1.3.0"
INFO[0000] Loaded tool                                   tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
INFO[0000] Loaded tool                                   tool="arduino:avrdude@6.3.0-arduino17"

2023-06-14T06:32:37.428Z root INFO Deployed backend plugin "arduino.vscode-arduino-tools@0.0.2-beta.8" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-arduino-tools\extension\dist\bundle": 31.4 ms [Finished 6.949 s after backend start]
2023-06-14T06:32:37.429Z daemon INFO INFO[0000] Loading package builtin from: C:\Users\acdc\AppData\Local\Arduino15\packages\builtin
INFO[0000] Checking existence of 'tools' path: C:\Users\acdc\AppData\Local\Arduino15\packages\builtin\tools
INFO[0000] Loading tools from dir: C:\Users\acdc\AppData\Local\Arduino15\packages\builtin\tools
INFO[0000] Loaded tool                                   tool="builtin:ctags@5.8-arduino11"
INFO[0000] Loaded tool                                   tool="builtin:mdns-discovery@1.0.9"
INFO[0000] Loaded tool                                   tool="builtin:serial-discovery@1.4.0"
INFO[0000] Loaded tool                                   tool="builtin:serial-monitor@0.13.0"

2023-06-14T06:32:37.494Z root INFO Deployed backend plugin "vscode.cpp@1.52.1" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-builtin-cpp\extension": 65.0 ms [Finished 7.014 s after backend start]
2023-06-14T06:32:37.496Z daemon INFO INFO[0000] Checking signature                            index="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\package_index.json" signatureFile="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\package_index.json.sig" trusted=true
INFO[0000] Adding libraries dir                          dir="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\libraries" location=platform
INFO[0000] Loading libraries index file                  index="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\library_index.json"

2023-06-14T06:32:37.517Z root INFO Deployed backend plugin "vscode.json@1.46.1" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-builtin-json\extension": 23.7 ms [Finished 7.038 s after backend start]
2023-06-14T06:32:37.519Z root INFO Deployed backend plugin "vscode.json-language-features@1.46.1" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-builtin-json-language-features\extension\client\dist\jsonMain": 1.1 ms [Finished 7.039 s after backend start]
2023-06-14T06:32:37.992Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-bg@1.48.3" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-bg\extension": 472.9 ms [Finished 7.512 s after backend start]
2023-06-14T06:32:37.992Z daemon INFO INFO[0000] Adding libraries dir                          dir="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\libraries" location=ide
INFO[0000] Adding libraries dir                          dir="C:\\Users\\acdc\\Documents\\Arduino\\libraries" location=user

2023-06-14T06:32:38.376Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-cs@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-cs\extension": 384.2 ms [Finished 7.896 s after backend start]
2023-06-14T06:32:38.382Z discovery-log INFO start request start watch
2023-06-14T06:32:38.382Z discovery-log INFO start requested start watch
2023-06-14T06:32:38.383Z discovery-log INFO start resolved watching
2023-06-14T06:32:38.394Z daemon INFO INFO[0001] starting discovery builtin:mdns-discovery process
INFO[0001] starting discovery builtin:serial-discovery process

Opening channel for service path '/services/electron-window-ext'.
Opening channel for service path '/services/electron-window'.
2023-06-14T06:32:38.930Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-de@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-de\extension": 553.7 ms [Finished 8.450 s after backend start]
2023-06-14T06:32:38.930Z daemon INFO ERRO[0001] stopped discovery builtin:serial-discovery decode loop: read |0: file already closed
ERRO[0001] Discovery builtin:serial-discovery failed to run: discovery builtin:serial-discovery process not started: fork/exec C:\Users\acdc\AppData\Local\Arduino15\packages\builtin\tools\serial-discovery\1.4.0\serial-discovery.exe: Dieses Programm wurde durch eine Gruppenrichtlinie geblockt. Wenden Sie sich an den Systemadministrator, um weitere Informationen zu erhalten.
ERRO[0001] stopped discovery builtin:mdns-discovery decode loop: read |0: file already closed
ERRO[0001] Discovery builtin:mdns-discovery failed to run: discovery builtin:mdns-discovery process not started: fork/exec C:\Users\acdc\AppData\Local\Arduino15\packages\builtin\tools\mdns-discovery\1.0.9\mdns-discovery.exe: Dieses Programm wurde durch eine Gruppenrichtlinie geblockt. Wenden Sie sich an den Systemadministrator, um weitere Informationen zu erhalten.

Opening channel for service path '/services/ide-updater'.
2023-06-14T06:32:39.369Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-es@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-es\extension": 438.9 ms [Finished 8.889 s after backend start]
2023-06-14T06:32:39.739Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-fr@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-fr\extension": 370.1 ms [Finished 9.259 s after backend start]
2023-06-14T06:32:40.038Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-hu@1.48.3" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-hu\extension": 299.5 ms [Finished 9.558 s after backend start]
2023-06-14T06:32:40.442Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-it@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-it\extension": 403.6 ms [Finished 9.962 s after backend start]
2023-06-14T06:32:40.446Z root WARN Frontend a.configure took longer than the expected maximum 100 milliseconds: 1124.6 ms [Finished 2.817 s after frontend start]
2023-06-14T06:32:40.824Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-ja@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-ja\extension": 382.2 ms [Finished 10.344 s after backend start]
2023-06-14T06:32:40.827Z root WARN Frontend keybindings.onStart took longer than the expected maximum 100 milliseconds: 377.9 ms [Finished 3.208 s after frontend start]
2023-06-14T06:32:41.209Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-ko@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-ko\extension": 384.8 ms [Finished 10.729 s after backend start]
2023-06-14T06:32:41.439Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-nl@1.48.3" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-nl\extension": 230.3 ms [Finished 10.959 s after backend start]
2023-06-14T06:32:41.935Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-pl@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-pl\extension": 495.1 ms [Finished 11.455 s after backend start]
2023-06-14T06:32:42.294Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-pt-br@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-pt-BR\extension": 359.9 ms [Finished 11.815 s after backend start]
2023-06-14T06:32:42.646Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-ru@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-ru\extension": 351.6 ms [Finished 12.166 s after backend start]
2023-06-14T06:32:43.051Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-tr@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-tr\extension": 405.0 ms [Finished 12.571 s after backend start]
2023-06-14T06:32:43.054Z root WARN Frontend c.onStart took longer than the expected maximum 100 milliseconds: 2156.9 ms [Finished 5.399 s after frontend start]
2023-06-14T06:32:43.055Z root INFO Start frontend contributions: 3773.0 ms [Finished 5.405 s after frontend start]
2023-06-14T06:32:43.055Z root INFO Changed application state from 'init' to 'started_contributions'.
2023-06-14T06:32:43.056Z root INFO Changed application state from 'started_contributions' to 'attached_shell'.
2023-06-14T06:32:43.056Z root INFO >>> Restoring the layout state...
2023-06-14T06:32:43.056Z root INFO <<< Nothing to restore.
2023-06-14T06:32:43.057Z root INFO Initialize the workbench layout: 17.5 ms [Finished 5.440 s after frontend start]
2023-06-14T06:32:43.057Z root INFO Changed application state from 'attached_shell' to 'initialized_layout'.
2023-06-14T06:32:43.407Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-uk@1.48.3" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-uk\extension": 355.8 ms [Finished 12.927 s after backend start]
Checking for update
2023-06-14T06:32:43.879Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-zh-hans@1.53.2" from "C:\Program Files\arduino-ide\resources\app\plugins\vscode-language-pack-zh-hans\extension": 456.4 ms [Finished 13.384 s after backend start]
2023-06-14T06:32:43.879Z root INFO Deploy plugins list: 248.1 ms [Finished 13.399 s after backend start]
2023-06-14T06:32:43.888Z root INFO Replace loading indicator with ready workbench UI (animation): 830.7 ms [Finished 6.275 s after frontend start]
2023-06-14T06:32:43.888Z root INFO Changed application state from 'initialized_layout' to 'ready'.
2023-06-14T06:32:43.888Z root WARN Linked preference "workbench.colorCustomizations" not found. Source: "editor.bracketPairColorization.enabled"
2023-06-14T06:32:43.904Z root INFO Frontend application start: 3817.3 ms [Finished 13.404 s after backend start]
2023-06-14T06:32:43.919Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1] Waiting for backend deployment: 1228.9 ms [Finished 6.630 s after frontend start]
2023-06-14T06:32:44.038Z daemon INFO INFO[0006] Updating libraries index
INFO[0006] Updating index                                url="https://downloads.arduino.cc/packages/package_index.tar.bz2"
INFO[0006] Starting download                             url="https://downloads.arduino.cc/packages/package_index.tar.bz2"

2023-06-14T06:32:44.084Z root INFO core-client-provider [platform-index]
2023-06-14T06:32:44.091Z root INFO core-client-provider [library-index]
2023-06-14T06:32:44.098Z daemon INFO INFO[0006] Starting download                             url="https://downloads.arduino.cc/libraries/library_index.tar.bz2"

Update for version 2.1.0 is not available (latest version: 2.1.0, downgrade is allowed).
2023-06-14T06:32:44.556Z root ERROR ---- !!!SLOW!!! DURATION: search took 669.463 ms. Args: [{"type":"Updatable"}] ----
2023-06-14T06:32:44.808Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1] Sync of 21 plugins: 863.2 ms [Finished 7.493 s after frontend start]
2023-06-14T06:32:44.810Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][marus25.cortex-debug]: Loaded contributions.
2023-06-14T06:32:44.811Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][arduino.vscode-arduino-tools]: Loaded contributions.
2023-06-14T06:32:44.814Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][vscode.cpp]: Loaded contributions.
2023-06-14T06:32:44.814Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][vscode.json]: Loaded contributions.
2023-06-14T06:32:44.817Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][vscode.json-language-features]: Loaded contributions.
2023-06-14T06:32:44.817Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-bg]: Loaded contributions.
2023-06-14T06:32:44.817Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-cs]: Loaded contributions.
2023-06-14T06:32:44.818Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-de]: Loaded contributions.
2023-06-14T06:32:44.819Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-es]: Loaded contributions.
2023-06-14T06:32:44.819Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-fr]: Loaded contributions.
2023-06-14T06:32:44.819Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-hu]: Loaded contributions.
2023-06-14T06:32:44.820Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-it]: Loaded contributions.
2023-06-14T06:32:44.820Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-ja]: Loaded contributions.
2023-06-14T06:32:44.821Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-ko]: Loaded contributions.
2023-06-14T06:32:44.821Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-nl]: Loaded contributions.
2023-06-14T06:32:44.822Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-pl]: Loaded contributions.
2023-06-14T06:32:44.822Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-pt-br]: Loaded contributions.
2023-06-14T06:32:44.822Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-ru]: Loaded contributions.
2023-06-14T06:32:44.823Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-tr]: Loaded contributions.
2023-06-14T06:32:44.823Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-uk]: Loaded contributions.
2023-06-14T06:32:44.823Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-zh-hans]: Loaded contributions.
2023-06-14T06:32:44.824Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1] Load contributions of 21 plugins: 60.9 ms [Finished 7.554 s after frontend start]
2023-06-14T06:32:44.892Z root WARN 'cpp' language is remapped from 'source.cpp.embedded.macro' to 'source.cpp' scope
2023-06-14T06:32:44.893Z root WARN a registered grammar configuration for 'cpp' language is overridden
2023-06-14T06:32:45.533Z daemon INFO INFO[0008] Loading hardware from: C:\Users\acdc\AppData\Local\Arduino15\packages

2023-06-14T06:32:45.534Z daemon INFO INFO[0008] Loading package arduino from: C:\Users\acdc\AppData\Local\Arduino15\packages\arduino\hardware

2023-06-14T06:32:45.539Z daemon INFO INFO[0008] Checking signature                            error="opening signature file: open C:\\Users\\acdc\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json.sig: Das System kann die angegebene Datei nicht finden." index="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json" signatureFile="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json.sig"

2023-06-14T06:32:45.540Z daemon INFO INFO[0008] Adding monitor tool                           protocol=serial tool="builtin:serial-monitor"
INFO[0008] Loaded platform                               platform="arduino:avr@1.8.6"

2023-06-14T06:32:45.540Z daemon INFO INFO[0008] Checking existence of 'tools' path: C:\Users\acdc\AppData\Local\Arduino15\packages\arduino\tools
INFO[0008] Loading tools from dir: C:\Users\acdc\AppData\Local\Arduino15\packages\arduino\tools
INFO[0008] Loaded tool                                   tool="arduino:arduinoOTA@1.3.0"
INFO[0008] Loaded tool                                   tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"

2023-06-14T06:32:45.541Z daemon INFO INFO[0008] Loaded tool                                   tool="arduino:avrdude@6.3.0-arduino17"
INFO[0008] Loading package builtin from: C:\Users\acdc\AppData\Local\Arduino15\packages\builtin
INFO[0008] Checking existence of 'tools' path: C:\Users\acdc\AppData\Local\Arduino15\packages\builtin\tools
INFO[0008] Loading tools from dir: C:\Users\acdc\AppData\Local\Arduino15\packages\builtin\tools

2023-06-14T06:32:45.541Z daemon INFO INFO[0008] Loaded tool                                   tool="builtin:ctags@5.8-arduino11"
INFO[0008] Loaded tool                                   tool="builtin:mdns-discovery@1.0.9"
INFO[0008] Loaded tool                                   tool="builtin:serial-discovery@1.4.0"
INFO[0008] Loaded tool                                   tool="builtin:serial-monitor@0.13.0"

2023-06-14T06:32:45.549Z daemon INFO INFO[0008] Checking signature                            index="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\package_index.json" signatureFile="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\package_index.json.sig" trusted=true

2023-06-14T06:32:45.551Z daemon INFO INFO[0008] sending command QUIT to discovery builtin:serial-discovery
ERRO[0008] Quitting discovery builtin:serial-discovery: read |0: file already closed
INFO[0008] killing discovery builtin:serial-discovery process
INFO[0008] killed discovery builtin:serial-discovery process
INFO[0008] Closed and removed discovery builtin:serial-discovery
INFO[0008] sending command QUIT to discovery builtin:mdns-discovery
ERRO[0008] Quitting discovery builtin:mdns-discovery: read |0: file already closed
INFO[0008] killing discovery builtin:mdns-discovery process
INFO[0008] killed discovery builtin:mdns-discovery process
INFO[0008] Closed and removed discovery builtin:mdns-discovery
INFO[0008] starting discovery builtin:serial-discovery process

2023-06-14T06:32:45.553Z daemon INFO ERRO[0008] stopped discovery builtin:serial-discovery decode loop: read |0: file already closed

2023-06-14T06:32:45.554Z daemon INFO ERRO[0008] Discovery builtin:serial-discovery failed to run: discovery builtin:serial-discovery process not started: fork/exec C:\Users\acdc\AppData\Local\Arduino15\packages\builtin\tools\serial-discovery\1.4.0\serial-discovery.exe: Dieses Programm wurde durch eine Gruppenrichtlinie geblockt. Wenden Sie sich an den Systemadministrator, um weitere Informationen zu erhalten.
INFO[0008] starting discovery builtin:mdns-discovery process

2023-06-14T06:32:45.580Z daemon INFO ERRO[0008] stopped discovery builtin:mdns-discovery decode loop: read |0: file already closed

2023-06-14T06:32:45.580Z daemon INFO ERRO[0008] Discovery builtin:mdns-discovery failed to run: discovery builtin:mdns-discovery process not started: fork/exec C:\Users\acdc\AppData\Local\Arduino15\packages\builtin\tools\mdns-discovery\1.0.9\mdns-discovery.exe: Dieses Programm wurde durch eine Gruppenrichtlinie geblockt. Wenden Sie sich an den Systemadministrator, um weitere Informationen zu erhalten.

2023-06-14T06:32:45.582Z daemon INFO INFO[0008] Adding libraries dir                          dir="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\libraries" location=platform
INFO[0008] Loading libraries index file                  index="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\library_index.json"

2023-06-14T06:32:45.702Z daemon INFO INFO[0008] Adding libraries dir                          dir="C:\\Users\\acdc\\AppData\\Local\\Arduino15\\libraries" location=ide

2023-06-14T06:32:45.702Z daemon INFO INFO[0008] Adding libraries dir                          dir="C:\\Users\\acdc\\Documents\\Arduino\\libraries" location=user

2023-06-14T06:32:46.124Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508) starting instance
2023-06-14T06:32:46.139Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): PluginManagerExtImpl/init()
2023-06-14T06:32:46.141Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(cortex-debug@1.5.1 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.154Z root INFO [hosted-plugin: 12508] Debugger contribution has been registered: cortex-debug
2023-06-14T06:32:46.156Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-arduino-tools@0.0.2-beta.8 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.157Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(cpp@1.52.1 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.158Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(json@1.46.1 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.159Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(json-language-features@1.46.1 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.161Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-bg@1.48.3 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.161Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-cs@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.164Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-de@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
PLUGIN_HOST(12508): initializing(vscode-language-pack-es@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
PLUGIN_HOST(12508): initializing(vscode-language-pack-fr@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.164Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-hu@1.48.3 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.165Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-it@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.166Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-ja@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.166Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-ko@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.166Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-nl@1.48.3 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.167Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-pl@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.167Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-pt-BR@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
PLUGIN_HOST(12508): initializing(vscode-language-pack-ru@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.168Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-tr@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.168Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-uk@1.48.3 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.168Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): initializing(vscode-language-pack-zh-hans@1.53.2 with C:\Program Files\arduino-ide\resources\app\node_modules\@theia\plugin-ext-vscode\lib\node\plugin-vscode-init)
2023-06-14T06:32:46.170Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): PluginManagerExtImpl/loadPlugin(C:\Program Files\arduino-ide\resources\app\plugins\vscode-builtin-json-language-features\extension\client\dist\jsonMain)
2023-06-14T06:32:46.267Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): PluginManagerExtImpl/loadPlugin(C:\Program Files\arduino-ide\resources\app\plugins\vscode-arduino-tools\extension\dist\bundle)
2023-06-14T06:32:46.330Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][marus25.cortex-debug]: Started plugin.
2023-06-14T06:32:46.330Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][arduino.vscode-arduino-tools]: Started plugin.
2023-06-14T06:32:46.332Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][vscode.cpp]: Started plugin.
2023-06-14T06:32:46.334Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][vscode.json]: Started plugin.
2023-06-14T06:32:46.334Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][vscode.json-language-features]: Started plugin.
2023-06-14T06:32:46.335Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-bg]: Started plugin.
2023-06-14T06:32:46.335Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-cs]: Started plugin.
2023-06-14T06:32:46.336Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-de]: Started plugin.
2023-06-14T06:32:46.336Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-es]: Started plugin.
2023-06-14T06:32:46.337Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-fr]: Started plugin.
2023-06-14T06:32:46.337Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-hu]: Started plugin.
2023-06-14T06:32:46.342Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-it]: Started plugin.
2023-06-14T06:32:46.342Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-ja]: Started plugin.
2023-06-14T06:32:46.343Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-ko]: Started plugin.
2023-06-14T06:32:46.346Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-nl]: Started plugin.
2023-06-14T06:32:46.347Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-pl]: Started plugin.
2023-06-14T06:32:46.347Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-pt-br]: Started plugin.
2023-06-14T06:32:46.348Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-ru]: Started plugin.
2023-06-14T06:32:46.348Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-tr]: Started plugin.
2023-06-14T06:32:46.349Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-uk]: Started plugin.
2023-06-14T06:32:46.349Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1][ms-ceintl.vscode-language-pack-zh-hans]: Started plugin.
2023-06-14T06:32:46.352Z root INFO [hosted-plugin: 12508] PLUGIN_HOST(12508): PluginManagerExtImpl/loadPlugin(C:\Program Files\arduino-ide\resources\app\plugins\cortex-debug\extension\dist\extension.js)
2023-06-14T06:32:46.420Z root INFO [hosted-plugin: 12508] Debug configuration provider has been registered: cortex-debug, trigger: 1
2023-06-14T06:32:46.423Z root INFO [hosted-plugin: 12508] GDB server console created
2023-06-14T06:32:46.432Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1] Start of 21 plugins: 1609.8 ms [Finished 9.177 s after frontend start]
2023-06-14T06:32:46.448Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1] Waiting for backend deployment: 15.5 ms [Finished 9.194 s after frontend start]
2023-06-14T06:32:46.448Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1] Sync of 0 plugins: 0.0 ms [Finished 9.194 s after frontend start]
2023-06-14T06:32:46.450Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1] Load contributions of 0 plugins: 0.1 ms [Finished 9.194 s after frontend start]
2023-06-14T06:32:46.455Z root INFO [6344dbb7-f447-4057-97ae-6816f70e84d1] Start of 0 plugins: 6.7 ms [Finished 9.203 s after frontend start]

the MS Applocker is the issue...

But i can´t create a global exception for your tools, because the Publisher informations of the files are´t valid. I can only create a hash of these files, but when a new version is publised, it´ll failed again.

In the "Program Files" folder all exe files are allowed!!! That would be the easiest way... and the right one!