From 8f6f4d62dfe9186b577d4242c7f474aad0e1aaff Mon Sep 17 00:00:00 2001 From: dexpl Date: Tue, 21 Jan 2020 18:06:41 +0300 Subject: [PATCH] Update win_package.py (#66658) ##### SUMMARY Replaced wrong registry paths with correct ones (HKLM:\, not HKLM:). --- lib/ansible/modules/windows/win_package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/windows/win_package.py b/lib/ansible/modules/windows/win_package.py index 1d5fe9dfcbb..b7c1b184616 100644 --- a/lib/ansible/modules/windows/win_package.py +++ b/lib/ansible/modules/windows/win_package.py @@ -97,9 +97,9 @@ options: getting the uninstall information if C(state=absent). - You can find product ids for installed programs in the Windows registry editor either at - C(HKLM:Software\Microsoft\Windows\CurrentVersion\Uninstall) or for 32 bit + C(HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall) or for 32 bit programs at - C(HKLM:Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall). + C(HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall). - This SHOULD be set when the package is not an MSI, or the path is a url or a network share and credential delegation is not being used. The C(creates_*) options can be used instead but is not recommended.