From 2356c60c263eea7ebdee6d31c9284ca552923c0b Mon Sep 17 00:00:00 2001 From: alexw07777 <158039964+alexw07777@users.noreply.github.com> Date: Tue, 24 Mar 2026 02:57:11 +0100 Subject: [PATCH] Fix T1003.006 Test #2 prereq_command: incorrect ExportedCommands key (#3297) Co-authored-by: kali Co-authored-by: Bhavin Patel Co-authored-by: Hare Sudhan <27735081+cyberbuff@users.noreply.github.com> --- atomics/T1003.006/T1003.006.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/atomics/T1003.006/T1003.006.yaml b/atomics/T1003.006/T1003.006.yaml index 444a18e5..a4cafcad 100644 --- a/atomics/T1003.006/T1003.006.yaml +++ b/atomics/T1003.006/T1003.006.yaml @@ -64,8 +64,7 @@ atomic_tests: DSInternals must be installed prereq_command: | $RequiredModule = Get-Module -Name DSInternals -ListAvailable - if (-not $RequiredModule) {exit 1} - if (-not $RequiredModule.ExportedCommands['DSInternals']) {exit 1} else {exit 0} + if (-not $RequiredModule) {exit 1} else {exit 0} get_prereq_command: | Install-Module -Name DSInternals -Scope CurrentUser -Force executor: