使用 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