Skip to content

Instantly share code, notes, and snippets.

@zhihuidev
Forked from jaskiratr/chmod-400.cmd
Created April 21, 2019 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhihuidev/8ac1b731eb6e3aeed7f0a387dc968546 to your computer and use it in GitHub Desktop.
Save zhihuidev/8ac1b731eb6e3aeed7f0a387dc968546 to your computer and use it in GitHub Desktop.
Set permission of file equivalent to chmod 400 on Windows.
# Source: https://stackoverflow.com/a/43317244
$path = ".\aws-ec2-key.pem"
# Reset to remove explict permissions
icacls.exe $path /reset
# Give current user explicit read-permission
icacls.exe $path /GRANT:R "$($env:USERNAME):(R)"
# Disable inheritance and remove inherited permissions
icacls.exe $path /inheritance:r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment