Example GPO Install Script
Example InstallRapidIdentityCentralProvider.cmd
SET ARCH=x86 IF EXIST "%PROGRAMFILES(X86)%" SET ARCH=x86-64 REM TODO - set to URL of your RapidIdentity Portal SET URL=https://portal.example.com REM TODO - set to the version of the credential provider you are installing SET MSI_VERSION=2017.8.29 REM TODO - set to the UNC path of the msi file folder SET SHARED_SOFTWARE_UNC=\\files.example.com\msi SET MSI=%SHARED_SOFTWARE_UNC%\RapidIdentityCredentialProvider.%ARCH%-%MSI_VERSION%.msi msiexec /passive /i %MSI% ARMSURL=%URL% ALLUSERS=1 :CheckOSIF EXIST "%PROGRAMFILES(X86)%" (GOTO 64BIT) ELSE (GOTO 32BIT) :64BIT msiexec /passive /i \\<address of shared software server>\<shared software directory structure>\<version>.msi ARMSURL=https://<portal server ip>/portal GOTO END :32BIT msiexec /passive /i \\<address of shared software server>\<shared software directory structure>\<version>.msi ARMSURL=https://<portal server ip>/portal GOTO END :END