Display NTFS permissions list with options to print & ex

English support forum

Moderators: Hacker, petermad, Stefan2, white

Post Reply
superddman
Junior Member
Junior Member
Posts: 5
Joined: 2011-10-05, 03:08 UTC

Display NTFS permissions list with options to print & ex

Post by *superddman »

Hello,

Not sure how many people ran into a similar situation, but I constantly have to check NTFS permissions of shared folders and windows explorer doesn't have any way to export/print them.
Also, the security tab window is so small that taking a screenshot doesn't work well if there are more than 15 lines or so. In addition to printing, having the option to save to tab delimited TXT or CSV would be amazing.

Is there maybe some TC plugin that does this?

I have looked everywhere without any luck.

TIA
User avatar
Stefan2
Power Member
Power Member
Posts: 4281
Joined: 2007-09-13, 22:20 UTC
Location: Europa

Post by *Stefan2 »

DOS-Box and Icacls ?

Code: Select all

C:\>icacls c:\temp\*.exe

c:\temp\sed.exe VORDEFINIERT\Administratoren:(I)(F)
                NT-AUTORITÄT\SYSTEM:(I)(F)
                VORDEFINIERT\Benutzer:(I)(RX)
                NT-AUTORITÄT\Authentifizierte Benutzer:(I)(M)

c:\temp\split.exe VORDEFINIERT\Administratoren:(I)(F)
                  NT-AUTORITÄT\SYSTEM:(I)(F)
                  VORDEFINIERT\Benutzer:(I)(RX)
                  NT-AUTORITÄT\Authentifizierte Benutzer:(I)(M)

2 Dateien erfolgreich verarbeitet, bei 0 Dateien ist ein Verarbeitungsfehler aufgetreten.

C:\>


= = = = = or

C:\>icacls c:\temp\*.*


= = = = = or

C:\>for /F %F in ('dir C:\temp\share /AD /S /B') Do @icacls %F
C:\temp\share\ahk VORDEFINIERT\Administratoren:(I)(F)
                VORDEFINIERT\Administratoren:(I)(OI)(CI)(IO)(F)
                NT-AUTORITÄT\SYSTEM:(I)(F)
                NT-AUTORITÄT\SYSTEM:(I)(OI)(CI)(IO)(F)
                VORDEFINIERT\Benutzer:(I)(OI)(CI)(RX)
                NT-AUTORITÄT\Authentifizierte Benutzer:(I)(M)
                NT-AUTORITÄT\Authentifizierte Benutzer:(I)(OI)(CI)(IO)(M)

1 Dateien erfolgreich verarbeitet, bei 0 Dateien ist ein Verarbeitungsfehler aufgetreten.

C:\>
User avatar
ZoSTeR
Power Member
Power Member
Posts: 1052
Joined: 2004-07-29, 11:00 UTC

Post by *ZoSTeR »

From Sysinternals:

ShareEnum, AccessChk, AccessEnum

PowerShell: Get-Acl -Path "C:\SomePath\*.*"
with Export-Csv or Out-*

If you want to grab something from those horribly outdated standard Windows dialogs, try SysExporter.
superddman
Junior Member
Junior Member
Posts: 5
Joined: 2011-10-05, 03:08 UTC

Post by *superddman »

Thanks for the tips but I was looking for something that can be initiated straight from total commander without any scripting.
I know that in powershell you can make magic happen but it's not what I'm after. Also, the tools from Sysinternals are so outdated that it's almost easier to do it from command prompt. So far I've only found a few paid apps such as SystemTool Hyena that can generate proper output.
Post Reply