Search found 3 matches

by schlawiner
Mon Dec 14, 2015 2:01 am
Forum: Quick Batch File Compiler
Topic: Exe with Parameter
Replies: 5
Views: 13040

How can we solve the problem to make it work
by schlawiner
Tue Dec 08, 2015 11:50 pm
Forum: Quick Batch File Compiler
Topic: Exe with Parameter
Replies: 5
Views: 13040

the batch takes over the variables, the exe not
by schlawiner
Sat Nov 14, 2015 1:28 am
Forum: Quick Batch File Compiler
Topic: Exe with Parameter
Replies: 5
Views: 13040

Exe with Parameter

How to create an exe, to accept what parameters



the batch accepts the parameters so

Code: Select all

@echo off
SET var=%~dp0
SET var1=%1%
SET var2=%2%
SET var3=%3%
SET var4=%4%
SET var5=%5%
SET var6=%6%
SET var7=%7%
as soon as I want to compile it into an exe, does not work

please give me an example