Forticlient Ssl Vpn Offline Installer
Posted By admin On 07/05/19- FortiClient is a top performer and 'Recommended' by NSS labs in its 2018 Advanced Endpoint Protection (AEP) group test. NSS Labs expanded the scope of the AEP test and included malware, exploits, blended threats (combinations of threats), false positives, and evasions.
- FortiClient is a comprehensive package that includes powerful virus defenses. Includes malware/virus detection, rootkit removal, parental web control, and VPN. Allows quick and easy secure, remote access via IPSec or SSL protocols.
Provision and configure. In standalone mode, you can install FortiClient software to computers or devices with Internet access and configure a number of settings. To provision and configure FortiClient: Install FortiClient on computers or devices. See FortiClient Provisioning on page 44.
How to - Deploying VPN only FortiClient without editing the MSI.
I thought i'd make this post, as I've spent the morning looking into the best way to deploy the FortiClient as VPN only. There is a standalone SSL VPN installer however I have some staff who use the app on iPads on their mobiles so wanted to keep a consistent interface for them between programs. Outside of the licensing the EMS there doesn't seem to be a simple solution to this.
Most steps online suggested editing the MSI file to disable the unwanted features by reducing their InstallLevel to 0, however that requires installing editing tools like Orca or InstallShield.
Forticlient Ssl Vpn Setup
When you do open the MSI file in an editing tool, each of the different components have different Install Levels set. You can use these with a the INSTALLLEVEL= flag to choose what features are or are not installed.
Here are the install levels for the features taken from the installer for 5.4.3 FortiClient.
Feature Name | Install level |
---|---|
Feature_Core | 1 |
Feature_Basic | 1 |
Feature_AntiVirus | 5 |
Feature_WebFilter | 5 |
Feature_VPN | 3 |
Feature_SSLVPN | 1 |
Feature_WanAcceleration | 5 |
Feature_EndPointNAC | 3 |
Feature_Firewall | 5 |
Feature_Vulnerability | 5 |
Feature_SingleSignOnMobility | 3 |
Forticlient Ssl Vpn Client Instructions
So long as the INSTALLLEVEL flag is equal to or less than the level of the feature. So if you wish to just install the SSL VPN you can use the following command:
The default install level when running msiexec is 100, which means all features are installed.
Information on the INSTALLLEVEL switch can be found on msdn
If you do install software to modify the default install level of the Features in the .MSI file, you could then create custom installers by adjusting the install level of unwanted features above a threshold.
I've tested this on x64 Windows 7 and succesfully installed only the SSLVPN client, which was my original aim. Hopefully this information is helpful for anyone who needs it.