2013-04-22 4 views
5

जब एक बल्ला फ़ाइल से एक vbs स्क्रिप्ट चलाने, यह कभी कभी हैडर आउटपुट फ़ाइल में लिखा है की शुरुआत में माइक्रोसॉफ्ट के संदेश जाएंएक फ़ाइल

Microsoft (R) Windows Script Host Version 5.8 
Copyright (C) Microsoft Corporation 1996-2001. Tous droits r‚serv‚s 
example: cscript myvbs.vbs file.txt >result.txt 

मुझे पता है कि आउटपुट फ़ाइल के बारे में अधिक +2 कर रही है, मैं कर रहा हूँ इसे अनदेखा करने में सक्षम। फिर भी मैं जानना चाहता हूं कि अलग-अलग ऐसा करना संभव है या नहीं।

अग्रिम धन्यवाद

उत्तर

9

//Nologo Prevent logo display: No banner will be shown at execution time

C:\>cscript 
Microsoft (R) Windows Script Host Version 5.8 
Copyright (C) Microsoft Corporation. All rights reserved. 

Usage: CScript scriptname.extension [option...] [arguments...] 

Options: 
//B   Batch mode: Suppresses script errors and prompts from displaying 
//D   Enable Active Debugging 
//E:engine Use engine for executing script 
//H:CScript Changes the default script host to CScript.exe 
//H:WScript Changes the default script host to WScript.exe (default) 
//I   Interactive mode (default, opposite of //B) 
//Job:xxxx Execute a WSF job 
//Logo  Display logo (default) 
//Nologo Prevent logo display: No banner will be shown at execution time 
//S   Save current command line options for this user 
//T:nn  Time out in seconds: Maximum time a script is permitted to run 
//X   Execute script in debugger 
//U   Use Unicode for redirected I/O from the console 
+0

सभी विवरण के लिए धन्यवाद की कोशिश करो। यह ठीक है! – new

संबंधित मुद्दे