This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- silent installation mode facing issue with response file path
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
May 22, 2021
07:33 AM
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
2 Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
May 24, 2021
12:09 AM
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?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
May 24, 2021
12:47 AM
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"
