1. Extract here
2. Extract here to folder with 'archivename'
3. Extract at defined location
4. Extract at defined location to folder with 'archivename'
Cheers.
Code: Select all
"Extract here"
run """D:\Users\Highend\Downloads\7za920\7za.exe"" x ""<curitem>"" -y", , 2;
"Extract to <archivename>"
$baseName = getpathcomponent("<curitem>", "base");
run """D:\Users\Highend\Downloads\7za920\7za.exe"" x ""<curitem>"" -o""$baseName"" -y", , 2;
"Extract to <xxx>"
run """D:\Users\Highend\Downloads\7za920\7za.exe"" x ""<curitem>"" -o""C:\Temp"" -y", , 2;
"Extract to <xxx>\<archivename>"
$baseName = getpathcomponent("<curitem>", "base");
run """D:\Users\Highend\Downloads\7za920\7za.exe"" x ""<curitem>"" -o""C:\Temp\$baseName"" -y", , 2;