Elevate your cybersecurity strategy with Ironchip Identity Platform, designed to bring the power of Multi-Factor Authentication (MFA) to your desktop computing environment. Know more.
Role-based privilege management: Set different user privileges. Prevents unauthorized users from accessing the rest of the system and misusing information, mitigating malicious users.
Restrict access from unauthorized places: Generate enabled access from authorized areas and take your security to the next level.
Supervision of accesses in real time: Check user activity, view access on a timeline, get reports and download them for full control.
Intrusion detection system (IDS): Location-based reporting system to alert of sim swapping, phishing, device switching, etc.
Download the latest installer (.msi
) version from Release or Nexus.
Logon is a custom Windows credential provider designed by Ironchip to bring the power of Multi-Factor Authentication (MFA) to your desktop computing environment.
Cached Passwords: Our simplified access can enhance user experience, making it more convenient and user-friendly. This is especially valuable in a work or personal environment where you're required to log in to various systems multiple times a day.
Extra Layer: MFA adds an extra layer of protection, requiring multiple forms of authentication, such as a password and a one-time code or push notification.
Improved Compliance: MFA helps organizations meet compliance requirements and security standards by implementing robust authentication methods.
To install the Ironchip Authenticator into your device:
-
Run the downloaded installer. This will open the installer stepper:
-
Follow the installation steps until you arrive to the Component Selection View. To have the ironchip windows logon installed, the Ironchip Windows Logon must be
enabled
.In case you want to have available the possibility to log without internet connection, make sure to
enable
Offline feature.In case you want to have available the possibility to cache the password for better user experience, make sure to
enable
Remember Credentials feature. -
Continue to the following page, where you can change the target host and the desired proxy selection:
The host for Production environment:
https://api.ironchip.com
.
The host for Testing environment:https://testing.api.ironchip.com
. -
Continue to the following page, where you must insert the target ApiKey :
The ApiKey can be copied or download when generating the application from the Dashboard.
-
Once the installation process is finished. All you need to do is for an administrator to give access from the Dashboard.
If the Offline feature is enabled and the user want to use it, they need to follow the steps to generate the
Time-based one-time password
.
In order to force user to use Ironchip Credential Provider, the default Windows Credential Provider must be disabled.
The paths may vary depending on the language
- Now get the GUID of the Windows Credential Provider. Normally it's
{60b78e88-ead8-445c-9cfd-0b87f74ea6cd}
but you can check it on the registry under the pathComputer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\Credential Providers\{60b78e88-ead8-445c-9cfd-0b87f74ea6cd}
- Use the key shortcut
⊞ Win
+R
and pastegpedit.msc
- Then inside the Local Group Policy Editor go to
Local Computer Policy > Computer Configuration > Administrative Templates > System > Logon > Exclude Credential Providers
- Enable the exclusion rule and paste the GUID of the Windows Password Credential Provider into the field. Then press apply.
In order to prevent user interact in authentication during autologon on computer start up, there are 2 possibilities
Whitelist user:
Adding user to Registry key Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Ironchip\Logon\Whitelist
. This will whitelist autologon user for any authentication
Whitelist user just on autologon:
Setting AutoLogonSkip to 1 in Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Ironchip\Logon
this will whitelist autologon user for any authentication only during autologon
Identity management must be nowadays considered as an essential component for security in organizations. To address this need, Ironchip provides organizations with the scalability and security necessary to offer their users a consistent experience and a reduced risk of vulnerabilities.
Get a notification on your device Communication for authentication is done over a double-encrypted channel which implements a TLS plus asymmetric elliptic key encryption.
To install the Ironchip Authenticator into your device:
-
Run the downloaded installer. This will open the installer stepper:
-
Follow the installation steps until you arrive to the Component Selection View. To have the desktop application installed, the Ironchip Windows Authenticator must be
enabled
.I case you want to have the USB support feature
enabled
, make sure to enable USB support. -
Once the installation process is finished. All you need to do is enroll the device, and you are good to go.
The installation of Ironchip Windows using commands (cmd) with the program "msiexec.exe." Here’s a basic tutorial on how to do it:
-
Open the command line (cmd):
- Press Win + R to open the "Run" dialog.
- Type "cmd" and press Enter.
-
Locate the MSI file:
- Make sure you have the MSI file you want to install in an accessible location from the command line.
-
Execute the msiexec command:
- The basic command to install an MSI file is as follows:
msiexec.exe /i Path\To\IronchipWindowsLogon.msi IRONCHIP_APIKEY="$apikey" /q
Replace "Path\To\IronchipWindowsLogon.msi" with the full path and name of the MSI file. The APIKEY will only be necessary if you want to install the Windows Logon functionality, which can be obtained through the following procedure: https://docs.ironchip.com/en/windows-logon
Additionally, if you want a more customized installation, the installer has optional parameters:
- Customization of the environment -> To do this, the IRONCHIP_HOST property is used to customize the environment you want to target (by default "https://api.ironchip.com").
- Customization of the features to install -> To do this, the ADDLOCAL property is used to customize the functionalities you want to install. In this case, we have several options (LogonFeature, OfflineFeature, AuthenticatorFeature, USBFeature, CachedPasswordsFeature) that can be combined.
Example 1: Installation of the desktop application functionality and USB functionality
msiexec.exe /i IronchipWindowsLogon.msi IRONCHIP_APIKEY="$apikey" IRONCHIP_HOST="https://api.ironchip.com" ADDLOCAL="AuthenticatorFeature,USBFeature" /q
Example 2: Installation of the desktop application functionality without the USB functionality
msiexec.exe /i IronchipWindowsLogon.msi IRONCHIP_APIKEY="$apikey" IRONCHIP_HOST="https://api.ironchip.com" ADDLOCAL="AuthenticatorFeature" /q
Example 3: Installation of the Windows Logon online and offline with cache
msiexec.exe /i IronchipWindowsLogon.msi IRONCHIP_APIKEY="$apikey" IRONCHIP_HOST="https://api.ironchip.com" IRONCHIP_APIKEY="$apikey" ADDLOCAL="LogonFeature,OfflineFeature,CachedPasswordsFeature" /q
Example 4: Installation of the Windows Logon only online
msiexec.exe /i IronchipWindowsLogon.msi IRONCHIP_APIKEY="$apikey" IRONCHIP_HOST="https://api.ironchip.com" IRONCHIP_APIKEY="$apikey" ADDLOCAL="LogonFeature" /q
-
Proxy configuration -> This configuration is only necessary if you want to enable it, as it is disabled by default. We have disabled, automatic, and manual modes, and for this, several properties are configured:
- IRONCHIP_PROXY_SELECTED -> This property is used to set the proxy status: none, automatic, or manual.
- IRONCHIP_PROXY_MANUAL_HOST -> Only necessary if enabling the proxy manually.
- IRONCHIP_PROXY_MANUAL_PORT -> Only necessary if enabling the proxy manually.
Example 1: Automatic proxy configuration
msiexec.exe /i IronchipWindowsLogon.msi IRONCHIP_APIKEY="$apikey" IRONCHIP_HOST="https://api.ironchip.com" IRONCHIP_APIKEY="$apikey" IRONCHIP_PROXY_SELECTED="automatic" /q
Example 2: Manual proxy configuration
msiexec.exe /i IronchipWindowsLogon.msi IRONCHIP_APIKEY="$apikey" IRONCHIP_HOST="https://api.ironchip.com" IRONCHIP_APIKEY="$apikey" IRONCHIP_PROXY_SELECTED="manual" IRONCHIP_PROXY_MANUAL_HOST="localhost" IRONCHIP_PROXY_MANUAL_PORT="8080" /q
-
Wait for it to finish:
- The installation process may take some time. Stay in the command line until you see the prompt indicating that the installation is complete.