Last active
May 14, 2020 19:18
-
-
Save tsu-nera/4466455 to your computer and use it in GitHub Desktop.
ツイッターつぶやき用VBS
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
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