ShellCommandTestReturn on 64bit Machines
I have created a custom inventory rule to detect machines Bitlocker status but this only appears to work on 32bit machines, I do not see the output from any 64bit machines
ShellCommandTextReturn(C:\Windows\System32\manage-bde.exe -status) - This works on 32bit machines
I have also tried the below but this did not work on any machines
ShellCommandTextReturn(cmd /c type C:\Windows\System32\manage-bde.exe -status)
0 Comments
[ + ] Show comments
Answers (3)
Answer Summary:
Please log in to answer
Posted by:
joseph
12 years ago
Hi Check whether exe present in C:\Windows\SysWOW64 or C:\Windows\System32 folder in 64 bit machine and try to execute the command
ShellCommandTextReturn(C:\Windows\SysWOW64\manage-bde.exe -status
Comments:
-
Hi, seem to have found a fix for it
ShellCommandTextReturn(%windir%\sysnative\manage-bde.exe -status) - martynryan1 12 years ago
Posted by:
AbhayR
11 years ago
Posted by:
joseph
12 years ago