Hi there,
I'm having an issue deploying 7-zip via SCCM. When installed, any zip file that is opened doesn't actually opent he zip file. It opens to a default directory, so you can't see any of the zipped files. To fix this we have to go into tools - options - folders - and choose "Current". That is the default setting when installing 7-Zip so I'm not sure why it installs that way via SCCM. I'll paste the contents of the .bat file I use for this install below. Any input would be appreciated!
Hi there,
I'm having an issue deploying 7-zip via SCCM. When installed, any zip file that is opened doesn't actually opent he zip file. It opens to a default directory, so you can't see any of the zipped files. To fix this we have to go into tools - options - folders - and choose "Current". That is the default setting when installing 7-Zip so I'm not sure why it installs that way via SCCM. I'll paste the contents of the .bat file I use for this install below. Any input would be appreciated!
msiexec /i "7z920-x64.msi" /q
assoc .7z=7-Zip.7z
assoc .bz2=7-Zip.bz2
assoc .gz=7-Zip.gz
assoc .tar=7-Zip.tar
assoc .tgz=7-Zip.tgz
assoc .zip=7-Zip.zip
ftype 7-Zip.7z="C:\Program Files\7-Zip\7zFM.exe" "%1"
ftype 7-Zip.bz2="C:\Program Files\7-Zip\7zFM.exe" "%1"
ftype 7-Zip.gz="C:\Program Files\7-Zip\7zFM.exe" "%1"
ftype 7-Zip.tar="C:\Program Files\7-Zip\7zFM.exe" "%1"
ftype 7-Zip.tgz="C:\Program Files\7-Zip\7zFM.exe" "%1"
ftype 7-Zip.zip="C:\Program Files\7-Zip\7zFM.exe" "%1"