darksimoon Posted September 5, 2012 Posted September 5, 2012 hello friends;i am preparing winrar sfx file as portable application through batch file.and i enter the options of the sfx file by comment.txtbut when i enter "TempMode" into the comment.txt by batch file,somehow it doesn't extract the files into the temp file. Instead it extractsthe files into the current folder. I don't understand why.below is my batch.cmd and comment.txt content;how can i make the sfx file to extract the content into the temp folder ?=========batch file=========echo TempMode >> .\comment.txt=================================comment.txt===========;Created By Albertosetup=FSCapture.exe TempMode Silent=2 Overwrite=1 ===========================As an alternative to this problem i decided to use "path=%temp%" instead of "TempMode".but this time batch file converts "path=%temp%" to "path=C:\Users\alberto\AppData\Local\Temp"in the comment.txt=========batch file=========echo path=%temp% >> .\comment.txt===================================comment.txt=========;Created By Albertosetup=FSCapture.exe path=C:\Users\myuser\AppData\Local\TempSilent=2 Overwrite=1 ===========================how can i make the batch file to write "path=%temp%" in to the comment.txt ?That is to say, how can i solve TempMode issue at sfx file or path=%temp% issue at batch file ?please help me about them.best regards....
jaclaz Posted September 5, 2012 Posted September 5, 2012 Open a command prompt.Try issuing in it:@echo %temp%@echo ^%temp^%jaclaz
Yzöwl Posted September 5, 2012 Posted September 5, 2012 The usual method of escaping percent characters in batch files is by doubling them up!>OUTFILE.EXT ECHO=%%TEMP%%
jaclaz Posted September 5, 2012 Posted September 5, 2012 The usual method of escaping percent characters in batch files is by doubling them up!>OUTFILE.EXT ECHO=%%TEMP%%Yes It is different between command line and batch, my bad .jaclaz
submix8c Posted September 5, 2012 Posted September 5, 2012 (edited) What OS are you running this on?What version of WinRar? (see Version History / OS supported)Winrar v4 Help Edited September 5, 2012 by submix8c
darksimoon Posted September 6, 2012 Author Posted September 6, 2012 dear Jaclaz; thank you very much for your helpdear Yzöwl; i did as you say and it worked out. thanks a lot.and dear submix8c; i use both win xp and win 7. i also use the latest version of winrar. however there is no such a thing in the help file.so i think best way is set the path=%temp%.once again, thank you very much friends.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now