complexxL9 Posted December 5, 2012 Report post Posted December 5, 2012 Hi, to install 7zip locally with all supported file types associated to it, I use batch like this: msiexec /i "\\msccm\Sources\applications\7z920-x64.msi" /q @Echo off Set "cmpn=7z#0 arj#4 bz2#2 bzip2#2 cab#7 cpio#12 deb#11 dmg#17 fat#21 gz#14 gzip#14 hfs#18 iso#8 lha#6 lzh#6 lzma#16 ntfs#22 rar#3 rpm#10 split#9 swm#15 tar#13 taz#5 tbz#2 tbz2#2 tgz#14 tpz#14 vhd#20 wim#15 xar#19 xz#23 z#5 zip#1" For %%I In (%cmpn%) Do For /F "tokens=1* Delims=#" %%a In ("%%I") Do Call :ass_set %%a %%b Exit :ass_set reg add "HKCR\.%1" /ve /t REG_SZ /d "7-Zip.%1" /f>Nul reg add "HKCR\7-Zip.%1" /ve /t REG_SZ /d "%1 Archive" /f>Nul reg add "HKCR\7-Zip.%1\DefaultIcon" /ve /t REG_SZ /d "%PROGRAMFILES%\7-Zip\7z.dll,%2" /f>Nul reg add "HKCR\7-Zip.%1\shell" /ve /t REG_SZ /d "" /f>Nul reg add "HKCR\7-Zip.%1\shell\open" /ve /t REG_SZ /d "" /f>Nul reg add "HKCR\7-Zip.%1\shell\open\command" /ve /t REG_SZ /d "\"%PROGRAMFILES%\7-Zip\7zFM.exe\" \"%%1\"" /f>Nul GoTo :EOF Is there a way to do the same when deploying via MSCCM 2012? Quote Share this post Link to post Share on other sites More sharing options...
Peter van der Woude Posted December 5, 2012 Report post Posted December 5, 2012 Yes, it's possible. Easiest way is to create an application based on the msi and then afterwards change the commandline of the deployment type to the batch. Quote Share this post Link to post Share on other sites More sharing options...
complexxL9 Posted December 6, 2012 Report post Posted December 6, 2012 Thanks, got it working. Quote Share this post Link to post Share on other sites More sharing options...