Skip to content

Instantly share code, notes, and snippets.

@AfroThundr3007730
Created April 24, 2024 21:16
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 AfroThundr3007730/75f03b5cf4ef3aae92237813e37cc069 to your computer and use it in GitHub Desktop.
Save AfroThundr3007730/75f03b5cf4ef3aae92237813e37cc069 to your computer and use it in GitHub Desktop.
powershell start background gpg-agent
[Diagnostics.Process]::Start(
[Diagnostics.ProcessStartInfo]@{
CreateNoWindow = $true
WindowStyle = 'Hidden'
FileName = 'gpg-agent.exe'
Arguments = '--daemon'
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment