タグ別アーカイブ: vb

VBScript サイレントインストール

VBScriptでサイレントインストールする方法。
ただしWindows10からはセキュリティ関連の問題でダイアログが表示される可能性あり。


Dim WSH
SET WSH = CreateObject(“WScript.Shell”)
WSH.Run “XXX.exe /SILENT”
WSH.Run “XXX.exe /SILENT”

SET WSH = Nothing


Bookmark this on Yahoo Bookmark
Bookmark this on Google Bookmarks
Share on LinkedIn
LINEで送る
Pocket

VB コンソールアプリケーションへのコマンドライン引数の渡し方

フォームの中にテキストボックスを作成し、コマンドライン引数によりテキストを設定する方法。
続きを読む


Bookmark this on Yahoo Bookmark
Bookmark this on Google Bookmarks
Share on LinkedIn
LINEで送る
Pocket

VBで重複起動防止処理のサンプル

クライアントプログラムをコマンドラインパラメータでシステムを切り変えるシステムの
重複起動防止処理のサンプル。
続きを読む


Bookmark this on Yahoo Bookmark
Bookmark this on Google Bookmarks
Share on LinkedIn
LINEで送る
Pocket