How can I enter the argument when I'm still working in the editor VS2022 and debugging this simple VBScript:
Code:
Option Explicit
Dim strMAddress
Set colArgs = WScript.Arguments
strMAddress = colArgs.Item(0)
msgBox("Argumentet = " & strMAddress)