cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ChaitanyaG
Level 2

silent installation mode facing issue with response file path

-f "c:\tmp test\c1.properties"      
-f  c:\TMPTES~1\c1.properties
-f ./c1.properties
-f c1.properties

Path containing space not working, also . and ~ are not resolved.
above response file paths not working on both Linux and windows platform.
only  absolute  path works.
all above parameter for response file path should be working

 

 

0 Kudos
(2) Replies
madhug
Level 5

just curios, can you try creating a simple bat file with any simple command in it and try executing with the paths as you mentioned. Are those working?

0 Kudos

all batch file commands work.

C:\>"c:\tmp dir\file.bat"
"hello world"

C:\>c:\TMPDIR~1\file.bat
"hello world"

C:\tmp dir>.\file.bat
"hello world"

C:\tmp dir>file.bat
"hello world"

Contents of bat file:
C:\>type "tmp dir\file.bat"
@echo "hello world"

0 Kudos