Skip to content

Instantly share code, notes, and snippets.

@larshb
Created April 11, 2019 11:09
Show Gist options
  • Save larshb/48f39921d34102a1433c4dba76004c90 to your computer and use it in GitHub Desktop.
Save larshb/48f39921d34102a1433c4dba76004c90 to your computer and use it in GitHub Desktop.
Tiny VBS-script to search and download PDF-files on demand
Dim query, wsh
Set wsh=WScript.CreateObject("WScript.Shell")
query = InputBox("Find PDF for: ")
wsh.Run "http://www.google.com/search?q=ext:pdf%20" & query & "&btnI"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment