Created
April 24, 2024 21:16
-
-
Save AfroThundr3007730/75f03b5cf4ef3aae92237813e37cc069 to your computer and use it in GitHub Desktop.
powershell start background gpg-agent
This file contains 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
[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