Locate folder in system 32

I have created a directory C:\Windows\System32\WindowsPowerShell\v1.0\Modules\PSWindowsUpdate on a server and although it is there, the following relevance evaluates to true…

not exists folder “C:\Windows\System32\WindowsPowerShell\v1.0\Modules\PSWindowsUpdate”

I’ve also tried the below with the same results:

not exists folder "{pathname of system folder}\WindowsPowerShell\v1.0\Modules\PSWindowsUpdate"
not exists folder "{pathname of system
x32 folder}\WindowsPowerShell\v1.0\Modules\PSWindowsUpdate"
not exists folder "{pathname of system x64 folder}\WindowsPowerShell\v1.0\Modules\PSWindowsUpdate"
not exists folder “{pathname of system syswow64 folder}\WindowsPowerShell\v1.0\Modules\PSWindowsUpdate”

Why can’t BigFix find the folder?

Try either of these:

not exists folder "WindowsPowerShell\v1.0\Modules\PSWindowsUpdate" of native system folder

or

not exists folder "WindowsPowerShell\v1.0\Modules\PSWindowsUpdate" of system x64 folder

3 Likes

That worked. Thanks so much!