NordLayer application for Windows in .msi format for deployment
  • 1 Minute to read

    NordLayer application for Windows in .msi format for deployment


      Article Summary

      The latest application version in .msi format can be obtained from here: https://downloads.nordlayer.com/win/releases/rss.xml

      Silent install using powershell or some third party deployment tools

      msiexec /i NordLayerSetup_vx.msi /q 
      

      Silent uninstall command with a unique Identifying number

      msiexec /x “{07958711-0313-4D52-9E60-F8EB432548BA}” /q
      

      PowerShell script on uninstalling NordLayer

      $nordLayer = Get-WmiObject -Class Win32_Product -Filter "Name = 'NordLayer'" | Select-Object IdentifyingNumber msiexec /x $nordLayer.IdentifyingNumber /q
      

      Manual PowerShell command to grab the Identifying Number

      Get-WmiObject -Class Win32_Product -Filter "Name = 'NordLayer'" | Format-Table IdentifyingNumber 
      
      Note

      If you're managing NordLayer for your team using centralized deployment software for Windows, make sure to disable the 'Auto-app update' feature for everyone via our Control Panel

      Note: In case you have any questions or are experiencing any issues, please feel free to contact our 24/7 customer support team.


      Was this article helpful?