From 851f3c27f18a1fcd82605dafc429b23e3007f204 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 13:03:56 +0000 Subject: [PATCH] docs: fix incorrect filenames in a document for Windows (#12343) (#12346) After 8.5.0, the file name was changed from install-service-apm-server.ps1 to install-service.ps1, but it was not modified in the document. I corrected an incorrect filename in the documentation for Windows. (cherry picked from commit 5e0077df01a21b402a14cc4179ad489087e3f7d1) Co-authored-by: Wonseop Kim --- docs/getting-started-apm-server.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started-apm-server.asciidoc b/docs/getting-started-apm-server.asciidoc index ce025d7e32d..a1f673c222e 100644 --- a/docs/getting-started-apm-server.asciidoc +++ b/docs/getting-started-apm-server.asciidoc @@ -284,12 +284,12 @@ If you are running Windows XP, you may need to download and install PowerShell. [source,shell] ---------------------------------------------------------------------- PS > cd 'C:\Program Files\APM-Server' -PS C:\Program Files\APM-Server> .\install-service-apm-server.ps1 +PS C:\Program Files\APM-Server> .\install-service.ps1 ---------------------------------------------------------------------- NOTE: If script execution is disabled on your system, you need to set the execution policy for the current session to allow the script to run. -For example: `PowerShell.exe -ExecutionPolicy UnRestricted -File .\install-service-apm-server.ps1`. +For example: `PowerShell.exe -ExecutionPolicy UnRestricted -File .\install-service.ps1`. endif::[]