Forum Discussion

AdminK1680's avatar
AdminK1680
Copper Contributor
Jul 18, 2024

How can i put a license key in intune apps package for winzip 28.0

Hi

 

Thanks for your time to looking in to this in advance

 

We recently have received the package for latest version of winzip 28.0 and registration file link separately. Now deploying this .msi package in intune app installs the unlicensed when deployed through Intune apps.

 

So, I am seeking assistance how can i put license key in intune app or this registration file which is downloaded .wzmul file which activates the license.  so user or enroilled device can install the licensed winzip

 

 

 

Thanks in advance

  • AdminK1680 You can install Winzip with a license file by creating a Win32 package containing an install.cmd, uninstall.cmd, WinZip MSI file, and the license file.

     

    The install.cmd contains:

     

     

    msiexec /i winzip280.msi /qn INSTALLDIR="C:\Program Files\WinZip"
    if not exist c:\programdata\winzip md c:\programdata\winzip
    copy WinZip.wzmul c:\programdata\winzip

     

     

     

    The Uninstall.cmd contains:

     

     

    msiexec /x winzipxxx.msi /qn SHOW_WEBPAGE=0
    del /q c:\programdata\winzip\WinZip.wzmul

     

     

     

    Configure the detection to check on file exist c:\programdata\winzip\winzip.wzmul and deploy it as system.

Resources