I have a AWS FSx configured to my Domain. I ran the below command on my powershell to provide "Authenticated Users" access to my FSx share "Test":
Grant-FSxSmbShareAccess -Name "Test" -AccountName "Autheticated Users" -AccessRight 1 -Force -Confirm $false
And the output on the Powershell console shows that the requested access has been provided.
Name ScopeName AccountName AccessControlType AccessRight PSComputerName
Test XXXXXXXX NT AUTHORITY\Authenticated Users Allow Change XXXXX.some.com
But now if I go to the same share from my windows machine, right-click, o to Properties and go to the Security tab, I dont see Authenticated users added there.
I can only see the SYSTEM Account and the Default Admin Group Added to the FSx
Again if I go to the share and add Change Access to the same share for a certain user from the Windows share drive properties window, and then do a Get-FSxSmbShareAccess from my powershell window, I don't see this added user. But I still see the same table I saw previously.
Where am I going wrong?