I need an "alert" type feature to troubleshoot an error. I am not using a browser and using javascript as windows administaration purposes. So is their a way to view a varibales value if I am not using a browser?
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- How to get the return code of a shell script in lu
- void before promise syntax
- Keeping track of variable instances
A summary of the differences between
WScript.Echo
andWshShell.Popup
:WScript.Echo
will produce a line of text in the console window.WshShell.Popup
will always produce a message window, even under cscript.WshShell.Popup
lets you specify the buttons, title and icon type, like the VB/VBSMessageBox
function. It also lets you specify how long the message should remain open.WScript.Echo
lets you pass multiple string arguments to output, and will print them separated with spaces.