2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

VBSをVisualStuioで編集&デバッグする方法

Last updated at Posted at 2020-02-11

#vbsをVisualStudio上で編集する
VisualStudioを起動し、メイクファイルプロジェクトを選択、プロジェクト名はなんでも
image.png

メイクファイルプロジェクトの設定はデフォルトのまま
image.png

ソース、ヘッダー、リソースファイルの削除
image.png

エクスプローラーでフォルダを開く
image.png

既存のVBScriptファイルをここに置くか、新規作成でvbsを作成
(ここでは、既存のvbs(ChangeRegistry.vbs)を配置しました)
image.png

上記 vbs を、ソリューションエクスプローラーの赤枠で囲ったところへドラッグ&ドロップ
image.png

ドラッグ&ドロップ後
image.png

これで、コードの修正が可能。

#デバッグできるように、プロジェクトとWScript.exeを関連付け
プロパティを選択
image.png

全般 – 構成の種類 – ユーティリティ を選択する
image.png

構成プロパティ -> デバッグ
コマンド WScript.exe
コマンド引数 XXXX.vbs //X
image.png

デバッグ実行
(デバッグなしで開始でもいいかも?この辺よくわかってないです・・・)
image.png

デバッガ―選択が出た場合、2019を選択
image.png

デバッグは、F5でブレークポイントまで進む F11でステップ実行。
終わらせたい場合、■を押す
image.png

2
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?