Size of System File

I am trying create an analysis the report the size of the system file, but following relevance statement reports that the system file is not existent when it is.

size of file "c:\windows\system32\config\system"

32-bit redirection is likely the problem. There are a couple of ways to address it -

size of native file "c:\windows\system32\config\system"

size of file "config\system" of native system folder
1 Like

I ran into a very similar problem recently and discovered it had to do with redirection.

Jason showed one solution.

We used…

action uses wow64 redirection false 
folder delete "C:\Windows\System32\AppConfig"
folder create "C:\Windows\System32\AppConfig"
1 Like