Kindly suggest if there is an easier way. SAPCAR tool also gives the same result.
Requires Free Membership to View
Example:
sapcar -xvf "ka*.car"
If you do not use quotes sapcar will not be able to process the files.
Alternatively you can use the "FOR" command to loop through all the .CAR files and invoke SAPCAR with parameters -XVF. In a nutshell, here is the syntax you need:
for /f %i in ('dir tmpKA*.car /b') do sapcar -xvf tmp%i
The example above assumes that you have placed all the archived files (KA*) under the "tmp" directory.
My advice is to create a batch file that does this for you. I included in my last book and CD-ROM (SAP Basis Administration for Windows) a batch file called SPX.bat, which can be used to decompress support packages. You manipulate the support package name with a variable in the script. It displays the support package file name, decompresses it and it counts the total of processed files.
This was first published in December 2004

Join the conversationComment
Share
Comments
Results
Contribute to the conversation