Hello
 
I have post a message whitch I have no response.. Then I have work to resolve 
it !
 
My problem was : 
I want execute some command with parameters
 
The config.pl create the unattend.txt with : 
[_meta]
   bottom="test.cmd param1 param2"
 
But the install.pl convert this line in :
todo.pl test.cmd
todo.pl param1
todo.pl param2
-> Dont work !
 
I have modify the install.pl to add <"> before the command line add <"> after
ORIGINAL install.pl
(map { "todo.pl $_" } reverse @bottom_scripts);

 
MODIFICATED install.pl
(map { 'todo.pl "' . $_ . '"' } reverse @bottom_scripts),

 
Now the result is
todo.pl "test.cmd param1 param2"
 
Work fine...
 
To execute many command, just add <;> between...
[_meta]
   bottom="test.cmd param1 param2;test2.cmd"
 
Bye...
 
Franck
(Sorry for my English...)
N¬HS^µéX¬²š'²ŠÞu¼Ž­§%y*Zqä°yêlµ©±f§¶ÚzØ^~*ì¶Ê·«y×zZ)z¸§²–œxIíz¹èÁú+¶Ž­§%y*Zqä°yêlµ©²m§ÿÚvÊ,vw(›ö‰

Reply via email to