vbscript - Wscript: Where is the logo located? -


I do not care when executing those two lines of batch file code

  Wscript Test.vbs Wscript // Nologo Test.vbs  

Where is the logo located?

Although your question is not clear, let me tell you the concept of logo / noloo

< Pre> // logo

When a script runs under CScript (this is the default setting for WSH) then displays a logo. Logo, which appears before any output from the script, looks like this:

Microsoft (R) Windows Script Host Version 5.6 Copyright (c) Microsoft Corporation 1996-2000. All rights reserved.

  // nologo  

prevents the display of the logo at run time (by default, the logo is displayed). // Nologo option is often used for scripts, whose output is redirected to a text file. Pressing the logo ensures that this information is not visible in the text file. It is easy to write scripts that parse the information found in the text file or which import the contents of the file into the database, because these scripts do not have an account for the logo.

  // S  

Saves timeout and logo options for this user. For example, this command ensures that the logo will be pressed once the script is run at any time. CScript: cscript // nologo // S You can also by right-clicking a script file and then clicking Properties You can modify these settings.

Hope you get some benefit from this reply.


Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -