Jump to content

AutoIt querying SysWOW64 despite being told to explicitly query System32?


Go to solution Solved by rcmaehl,

Recommended Posts

Posted

This originally started by trying to call C:\Windows\System32\pnputil.exe which would fail even FileExists(). Investigating further,

#RequireAdmin
#include <File.au3>
_ArrayDisplay(_FileListToArray("C:\Windows\System32"))
Exit

Returns 3196 items, but both Explorer and CMD return 5019 and 5021 respectfully (CMD includes . and .. in the count, so +2 is expected). I have Defender and other AVs off right now while I'm troubleshooting but why is the disparity so large?

image.png.31ba335a8b47a328b3fa0d20e833050d.png
 

My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.

My Projects

WhyNotWin11
Cisco FinesseGithubIRC UDFWindowEx UDF

 

  • rcmaehl changed the title to AutoIt querying SysWOW64 despite being told to explicitly query System32?
Posted

Compiled the code and ran it through Process Monitor. Looks like the code is Querying SysWOW64 despite being told to query System32?

image.thumb.png.ad00fbb8ee9424d43c7d4ebc5e4ec0a6.png

My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.

My Projects

WhyNotWin11
Cisco FinesseGithubIRC UDFWindowEx UDF

 

  • Solution
Posted (edited)

NVM, this is literally in the Helpfile remarks. This is what I get for not using AutoItWrapper parameters on a new project.

Edited by rcmaehl

My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.

My Projects

WhyNotWin11
Cisco FinesseGithubIRC UDFWindowEx UDF

 

Posted (edited)

Maybe it's because you got a Windows option to uncheck for your search :

"Include compressed files (zip,cab...)"

* AutoIt doesn't use it, so it will return a smaller number of files (the "real" number of files)

* Windows uses it when checked, so the number of files returned will be bigger as soon as you got zip file(s) inside your folder, because the number of files inside the zip(s) will be included in your result.

Edit: I see you got another solution. Anyway I'll keep my post unchanged, just in case...

https://www.isunshare.com/windows-10/change-search-options-for-files-and-folders-on-windows-10.html

Edited by pixelsearch
added link

"I think you are searching a bug where there is no bug..."

Posted (edited)

The C:\Windows\System32 directory, contains 64-bit versions of system files and libraries.
This can be confusing because, on a 64-bit system, System32 actually holds 64-bit files, while SysWOW64 holds 32-bit files.

according to this, try commented / uncommented  #AutoIt3Wrapper_UseX64=y

#RequireAdmin
#AutoIt3Wrapper_UseX64=y
#include <File.au3>
ConsoleWrite(@SystemDir & @CRLF)
_ArrayDisplay(_FileListToArray("C:\Windows\System32"))
Exit

 

Edited by ioa747

I know that I know nothing

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...