Last active
March 16, 2023 03:14
-
-
Save mgeeky/310d18076457bf222d563e63fb45c108 to your computer and use it in GitHub Desktop.
Powershell script to set CHMOD permissions for SSH Private PEM key files in Windows. This is to avoid nagging "WARNING: UNPROTECTED PRIVATE KEY FILE!" message
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Sets chmod permissions for the PEM file to be used with Windows' OpenSSH | |
# without annoying "WARNING: UNPROTECTED PRIVATE KEY FILE!" message. | |
# | |
function Set-SSHPermissions { | |
param( | |
[string] | |
$FilePath | |
) | |
# Set Key File Variable: | |
New-Variable -Name Key -Value $FilePath | |
# Remove Inheritance: | |
Icacls $Key /c /t /Inheritance:d | |
# | |
# Set Ownership to Owner: | |
# | |
# Key's within $env:UserProfile: | |
Icacls $Key /c /t /Grant ${env:UserName}:F | |
# Key's outside of $env:UserProfile: | |
TakeOwn /F $Key | |
Icacls $Key /c /t /Grant:r ${env:UserName}:F | |
# Remove All Users, except for Owner: | |
Icacls $Key /c /t /Remove:g *S-1-1-0 *S-1-5-11 *S-1-5-32-545 *S-1-5-32-544 *S-1-5-18 | |
# Verify: | |
Icacls $Key | |
# Remove Variable: | |
Remove-Variable -Name Key | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment