[Q&A] Fluentd installation rollback on Windows 10 LTSC 21H2 #5265
What is a problem?Hello, I am experiencing an issue while installing Fluentd on Windows 10 Enterprise LTSC 21H2 (Build 19044.6332). System details: OS: Windows 10 Enterprise LTSC 21H2 Could you please advise: Whether Fluentd officially supports Windows 10 LTSC? If needed, I can provide log files or additional system information. Thank you for your support. Describe the configuration of FluentdNo response Describe the logs of Fluentdno logs Environment- Fluentd version:
- TD Agent version:
- Fluent Package version:
- Docker image (tag):
- Operating system:
- Kernel version: |
Replies: 4 comments 6 replies
|
Can you attach the installation log? |
|
First, please clean up the leftover files and services from the failed installation:
sc delete fluentdwinsvc
Set-ExecutionPolicy RemoteSigned -Scope LocalMachine
Once the execution policy is updated, please try running the installer again. |
|
Hi Watson1978, Thank you for the answer. I've tried your solution and the one in the post fluent/fluent-package-builder#982 without success. You can below few screenshot and enclosed the log file.
[install_log.zip](https://github.com/user-attachments/files/25567930/install_log.zip)
|



It seems changing the policy to
RemoteSignedwas not enough in your environment. This is often caused by strict Windows Group Policies (GPO) or the "Mark of the Web" (Windows treating the downloaded file as an untrusted remote file, which still requires a signature).If you need to install it immediately today, please try these two extra steps:
fluent-package-6.0.1-x64.msifile, select Properties, check the Unblock box at the bottom of the General tab, and click OK.Set-ExecutionPolicy Bypass -Scope LocalMachineHowever, the most guaranteed solution is to wait for the upcoming release.
We have already f…