Skip to content

Instantly share code, notes, and snippets.

View rakshitshah94's full-sized avatar
💭
If I can't, who else will ?

RAKSHIT SHAH rakshitshah94

💭
If I can't, who else will ?
View GitHub Profile
@rakshitshah94
rakshitshah94 / chmod-400.cmd
Created August 4, 2022 18:07 — forked from jaskiratr/chmod-400.cmd
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