Windows – What does a DisableLastAccess value of 3 mean

command linefsutilwindows 10

On my Windows 10 system when i run the command:

fsutil behavior query disablelastaccess

it returns

DisableLastAccess = 3 (System Managed, Enabled)

I've never manually set this value and I can't seem to find out what the value of '3' means.
I came across https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/fsutil-behavior which only mentions 0/1 as options

Is there a doc somewhere that mentions what the value of '3' means ?

Best Answer

In the command prompt type:

fsutil behavior set DisableLastAccess 

Hit enter and you will get this output:

Values:

0 - User Managed, Last Access Updates Enabled

1 - User Managed, Last Access Updates Disabled

2 - System Managed, Last Access Updates Enabled

3 - System Managed, Last Access Updates Disabled

Related Question