Created
December 5, 2012 02:12
-
-
Save mendelgusmao/4211511 to your computer and use it in GitHub Desktop.
Automatic key loader for Pageant
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
Set shell = CreateObject("WScript.Shell") | |
start_folder = shell.ExpandEnvironmentStrings("%USERPROFILE%") + "\.ssh\" | |
Set files = CreateObject("Scripting.FileSystemObject").GetFolder(start_folder).Files | |
keys = "" | |
For Each file in files | |
If (Right(file.Name, 3) = "ppk") Then | |
keys = keys & """" & CStr(file.Path) & """ " | |
End If | |
Next | |
shell.Run "pageant.exe " + keys, 1, false |
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
wscript C:\path\to\pageant.loader.vbs | |
Tip: use mlin's StartupCPL http://www.mlin.net/StartupCPL.shtml | |
or add a shortcut to the vbs in the startup folder under start menu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment