Skip to content

Instantly share code, notes, and snippets.

@tsu-nera
Last active May 14, 2020 19:18
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 tsu-nera/4466455 to your computer and use it in GitHub Desktop.
Save tsu-nera/4466455 to your computer and use it in GitHub Desktop.
ツイッターつぶやき用VBS
Option Explicit
Dim tweetMessage 'つぶやき
Dim tweetCommmand 'Tweet用コマンド
tweetMessage = InputBox("Let's Tweet!!")
tweetCommmand = "C:\cygwin\home\TSUNEMICHI\src\quicktweet\quicktweet.exe " + "'" + tweetMessage +"'"
Dim Shell
Set Shell = CreateObject("WScript.Shell")
Shell.Run tweetCommmand, 0
Set Shell = Nothing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment