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
Display NTFS permissions list with options to print & ex
Moderators: Hacker, petermad, Stefan2, white
-
- Junior Member
- Posts: 5
- Joined: 2011-10-05, 03:08 UTC
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:\>
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.
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.
-
- Junior Member
- Posts: 5
- Joined: 2011-10-05, 03:08 UTC
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.
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.