使用 InputBox 將使用者輸入分配給字串
' Omitting the 4th and 5th argument ("xpos" and "ypos") will result in the prompt
' being display center of the parent screen
exampleString = InputBox("What is your name?", "Name Check", "Jon Skeet", 2500, 2000)
WScript.Echo "Your name is " & exampleString