« Command line windows » : différence entre les versions
Apparence
Aucun résumé des modifications |
|||
Ligne 24 : | Ligne 24 : | ||
= [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/icacls Access Control Lists] = | = [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/icacls Access Control Lists] = | ||
<kode lang='ps'> | <kode lang='ps'> | ||
# save the DACLs of c:\folder\file.ext to c:\folder\acl.txt | |||
icacls c:\folder\file.ext /save c:\folder\acl.txt /t | |||
# restore the DACLs of c:\folder\file.ext from c:\folder\acl.txt | |||
icacls c:\folder\file.ext /restore c:\folder\acl.txt | |||
# grant to User1 the Delete and Write DAC permissions to c:\folder\file.ext | # grant to User1 the Delete and Write DAC permissions to c:\folder\file.ext | ||
icacls c:\folder\file.ext /grant User1:(d,wdac) | icacls c:\folder\file.ext /grant User1:(d,wdac) | ||
</kode> | </kode> |
Version du 7 février 2022 à 18:07
Users and groups
# list local users
net user
# display account information (groups of which he is a member)
net user [username]
# create an account
net user /add [username]
# it prompts the password
# list local groups
net localgroup
# list the users of a group
net localgroup [groupname]
# add a user to a group
net localgroup administrators [username] /add
|
Access Control Lists
# save the DACLs of c:\folder\file.ext to c:\folder\acl.txt
icacls c:\folder\file.ext /save c:\folder\acl.txt /t
# restore the DACLs of c:\folder\file.ext from c:\folder\acl.txt
icacls c:\folder\file.ext /restore c:\folder\acl.txt
# grant to User1 the Delete and Write DAC permissions to c:\folder\file.ext
icacls c:\folder\file.ext /grant User1:(d,wdac)
|