Provedor de credencial - Instalação GPO
Instalação do Everest Key através do Gerenciamento de Políticas de Grupo (GPO)
# Define the path to the MSI file
$msiPath = "\\Servidor\Compartilhamento\multiOTPInstaller.msi"
# Define the parameters for the MSI installation
$msiParameters = "/quiet MULTIOTP_URL= MyUrl MULTIOTP_SECRET=MySecretKey"
# Combine the MSI path and parameters
$msiExec = "msiexec.exe /i `"$msiPath`" $msiParameters"
# Execute the MSI installation
Start-Process -FilePath "msiexec.exe" -ArgumentList "/i `"$msiPath`" $msiParameters" -Wait -NoNewWindow
# Optional: Log the installation result
$logFile = "C:\Logs\EverestKeyInstallation.log"
$msiExec | Out-File -FilePath $logFile -Append 








Last updated