79525479

Date: 2025-03-21 12:50:05
Score: 0.5
Natty:
Report link

I had the same issue - my fix:

$acl = Get-Acl "C:\Users\<user>\.azure-kubelogin\kubelogin.exe"
$permission = "Everyone","ReadAndExecute","Allow"
$accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule $permission
$acl.SetAccessRule($accessRule)
Set-Acl "C:\Users\<user>\.azure-kubelogin\kubelogin.exe" $ac

Everything worked after that

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: solmyr