Sponsored Content
Special Forums Windows & DOS: Issues & Discussions How to start a vbs from a windows batch file? Post 302588857 by itkamaraj on Tuesday 10th of January 2012 05:30:52 AM
Old 01-10-2012
In the start command, you have the filename as .vbc

windows has file association and it already having that .vbs will be starting with cscript.exe

you can also, execute the .vbc file as

Code:
 
cscript.exe c:\lib\runit.vbc

i dont think, we can execute it as above.

so ignore the above command.

but you can execute the .vbs file using cscript.exe
This User Gave Thanks to itkamaraj For This Post:
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How can I run scripts in my unix account from batch file in Windows?

Hi all, I'm working on Windows, connecting to my Unix account by different ways: by FTP opening files in UltraEdit32, by mapping drive to browse, by Exceed or Telnet to compile at Unix account. Actually, that is what I would like to change: I'd like to make a batch file which would connect to... (7 Replies)
Discussion started by: olgafb
7 Replies

2. UNIX for Dummies Questions & Answers

Append value(batch number) to start of records

Hi all, I am new to unix shell scripting and I am trying to append batch number that comes in Trailer record to the detailed record. TR|20080312|22881 |000000005|20080319|2202 LN|20080312|077777722220 |0000100000017|ABS LN|20080312|000799439326 |0000709943937|AA TR|20080313|22897 ... (6 Replies)
Discussion started by: kiran_418
6 Replies

3. UNIX for Dummies Questions & Answers

backup through batch file in windows

Hi, I would like to backup particular files from unix to windows for every day through ftp to my desktop. For that anyone tell me syntax for create batch file in windows. Regards, Arulkumar (0 Replies)
Discussion started by: arulkumar
0 Replies

4. Shell Programming and Scripting

Executing Windows batch file from UNIX

Hi everyone, let me get straight to the points. My manager wants to execute a remote batch file (on a Windows server) from a UNIX Machine, does anyone know if this is possible and what packages would be needed? Thanks p.s. Sorry i cant give OS specifics, we use most UNIX's; AIX, Solaris,... (5 Replies)
Discussion started by: flip387
5 Replies

5. Windows & DOS: Issues & Discussions

Check the file size using Batch script in windows

Hi, I need to check the file size using a batch script. Pls advise. (0 Replies)
Discussion started by: krackjack
0 Replies

6. Shell Programming and Scripting

Batch job in unix server to move the pdf file from unix to windows.

Hi Experts, I have a requirement where i need to setup a batch job which runs everymonth and move the pdf files from unix server to windows servers. Could some body provide the inputs for this. and also please provide the inputs on how to map the network dirve in the unix like that... (1 Reply)
Discussion started by: ger199901
1 Replies

7. Windows & DOS: Issues & Discussions

Gawk Script in Windows batch file - Help

Good morning all. I have been running into a problem running a simple gawk script that selects every third line from an input file and writes it to an output file. gawk "NR%3==0" FileIn > FileOut I am attempting to run this command from a batch file at the command line. I have several hundred... (6 Replies)
Discussion started by: 10000springs
6 Replies

8. Shell Programming and Scripting

To run a shell script in remote server from windows batch file

Hi all, i need to run a shell script on remote server. I have created file .bat file in windows server with following code, c:\Users\Desktop\putty.exe -ssh -pw password user@server ./script.sh i need to run the script.sh in my remote server Above command is not working, any... (4 Replies)
Discussion started by: rammm
4 Replies

9. Shell Programming and Scripting

Start process on X number of files and then wait for the next batch

Thanks for RudiC for his extraordinary help on organizing files in a batch of 10 using below code. FL=($(ls)); for ((i=0;i<=${#FL};i++)); do for j in ${FL:$i:10}; do $batch ${j} ${j}.txt done; echo "Pausing for next iteration"; echo... (6 Replies)
Discussion started by: busyboy
6 Replies
vbnc(1) 						      General Commands Manual							   vbnc(1)

NAME
vbnc - Mono Visual Basic Compiler. SYNOPSIS
vbnc [option] [source-files] DESCRIPTION
(vbnc) is a CIL compiler for the VisualBasic.NET language. Applications developed on Windows with vbc can execute on Mono and applications compiled with 'vbnc' can be executed on .NET runtime. The Mono Visual Basic compiler accepts the same options as the Microsoft VB.NET compiler. Those options can start with a slash or a dash (/checked is the same as -checked). Visual Basic.NET source files normally ends with a ".vb" extension. Compilation of VB.NET source code requires all the files that make up a library, module or executable to be provided on the command line. There is no support for partial compilation. To achieve the benefits of partial compilation, you should compile programs into their own assemblies, and later reference them with the "-r" flag. The Mono Basic compiler generates images (.exe files) that contain CIL byte code that can be executed by any system that implements a Com- mon Language Infrastructure virtual machine such as the Microsoft .NET runtime engine on Windows or the Mono runtime engine on Unix sys- tems. Executables are not bound to a specific CPU or operating system. The Mono Basic compiler by default only references these assemblies: mscorlib.dll, Microsoft.VisualBasic.dll, System.dll and Sys- tem.Xml.dll. If you want to reference extra libraries you must manually specify them using the the -r: command line option. OPTIONS
-addmodule:MODULE1[,MODULE2] Includes the specified modules in the resulting assembly. -codepage:ID Specifies the code page used to process the input files from the point it is specified on. By default files will be processed in the current code page. The compiler will also automatically detect Unicode/UTF8 files that have an embedded byte mark at the begin- ning. Other popular encodings are 28591 (Latin1), 1252 (iso-8859-1) and 65001 (UTF-8). -define:SYMLIST, -d:SYMLIST Defines the symbol listed by the semi-colon separeted list SYMLIST SYMBOL. This can be tested in the source code by the pre-proces- sor, or can be used by methods that have been tagged with the Conditional attribute. -debug:AMOUNT Specify the amount of debugging information to emit. Possible values for AMOUNT are "full" and "pdbonly". -imports:import-list Declare global Imports for listed namespaces. -ignorewarn:XXXX Ignores warning number XXXX. -lib:PATHLIST, -libpath:PATHLIST Each path specified in the comma-separated list will direct the compiler to look for libraries in that specified path. -main:CLASS Tells the compiler which CLASS or MODULE contains the entry point. Useful when you are compiling several classes with a Main method. -nologo Suppress printing copyright information on startup. -nostdlib, -nostdlib+ Use this flag if you want to compile the core library. This makes the compiler load its internal types from the assembly being com- piled. -noconfig, -noconfig+ Disables the default compiler configuration to be loaded. The compiler by default has references to the system assemblies. -nowarn Makes the compiler ignore warnings. -optioncompare:binary, -optioncompare:text Select between binary and text string comparisons. The default is binary string comparisons. -optionexplicit[+|-] Require explicit declaration of variables -optionstrict[+|-] Enforce strict language semantics -out:FNAME, -o FNAME Names the output file to be generated. -q -quiet Commands the compiler to show only error messages for syntax-related errors and warnings. -resource:RESOURCE[,ID] Embeds to the given resource file. The optional ID can be used to give a different name to the resource. If not specified, the resource name will be the file name. -linkresource:RESOURCE[,ID] Links to the specified RESOURCE. The optional ID can be used to give a name to the linked resource. -r:ASSEMBLY1[,ASSEMBLY2], -r ASSEMBLY1[,ASSEMBLY2] Reference the named assemblies. Use this to use classes from the named assembly in your program. The assembly will be loaded from either the system directory where all the assemblies live, or from the path explicitly given with the -L option. You can also use a semicolon to separate the assemblies instead of a comma. -removeintchecks[+|-] Remove integer checks. Default off. -rootnamespace:namespace Specifies the root namespace for all type declarations -target:KIND, -t:KIND Used to specify the desired target. The possible values are: exe (plain executable), winexe (Windows.Forms executable), library (component libraries) and module (partial library). -utf8output[+|-] Emit compiler output in UTF8 character encoding. Currently ignored. --version Shows the compiler version. -warnaserror, -warnaserror+ Treat warnings as errors. STABILITY
As of early 2007, the Mono Visual Basic compiler is still considered preview software. The compiler is almost feature-complete (targeting the Microsoft Visual Basic 8 compiler), only lacking support for the 'My' namespace. Frequent crashes are still occuring, especially with incorrect code. AUTHORS
See the ChangeLog for authors LICENSE
The Mono Visual Basic compiler is released under the terms of the GNU LGPL. Alternative licenses are available from Novell. SEE ALSO
mcs(1), mono(1), mint(1), sn(1) BUGS
To report bugs in the compiler, you can file bug reports in our bug tracking system: http://bugzilla.ximian.com. MAILING LIST
The Mono Basic Mailing List is available at: mono-vb-list-request@ximian.com 21 February 2006 vbnc(1)
All times are GMT -4. The time now is 04:27 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy