Doorgaan naar inhoud
Terug naar Blog
PrintPilotActive DirectoryGPOEnterprise Deploymentsetup.iniWindows Server

PrintPilot implementeren via Active Directory GPO: Stille installatie & setup.ini handleiding

Leer hoe u de virtuele printer PrintPilot geruisloos implementeert op bedrijfscomputers via Active Directory GPO en automatische configuratie met setup.ini.

Alacam IT Team2026-08-207 min

Implementeer PrintPilot centraal en geruisloos op alle Windows-werkstations in uw Active Directory-domein met behulp van Group Policy (GPO) en het configuratiebestand 'setup.ini'.

Automatisch naar PDF printen en e-mail versturen met PrintPilot

Stop met tijd verspillen aan handmatig documenten printen. Start je gratis proefperiode.

Download PrintPilot

1Structuur van setup.ini en voorbeeldsjabloon

Het installatieprogramma van PrintPilot leest automatisch het bestand 'setup.ini' in dezelfde map uit om beheerdersgegevens toe te passen zonder interactie van de gebruiker.

INI - setup.ini
[PrintPilot]
; PrintPilot Setup Configuration File
; Rename this file to setup.ini and place it next to PrintPilot-Setup.exe or the MSI
; to automatically provision these settings during silent installation.

; Administrator Email (Used for login / identification)
Email=admin@example.com

; Administrator Password
Password=secretpassword123

; Optional Referral Code
ReferralCode=

; Optional Custom Installation Directory
; Note: If deploying via MSI, the MSI INSTALLDIR property takes precedence.
InstallDir=C:\Program Files\PrintPilot

2Stap 1: Plaats het installatiepakket op de netwerkshare

Kopieer `PrintPilot-Setup.exe` en `setup.ini` naar een centrale map (SYSVOL of SMB) die toegankelijk is voor domeincomputers.

3Stap 2: Maak het opstartscript voor stille installatie (install-printpilot.bat)

Maak een batchscript dat controleert of de software al aanwezig is alvorens de installatie te starten:

Batch / CMD - install-printpilot.bat
@echo off
:: ===================================================================
:: PrintPilot GPO Silent Installation Script
:: ===================================================================
setlocal

set DEPLOY_SHARE=\\sirketiniz.local\SYSVOL\sirketiniz.local\Deploy\PrintPilot
set LOG_FILE=%TEMP%\printpilot_gpo_install.log

:: 1. Check if PrintPilot is already installed on the machine
if exist "C:\Program Files\PrintPilot\PrintPilot.exe" (
    goto :ALREADY_INSTALLED
)

echo [%DATE% %TIME%] Starting PrintPilot silent installation... >> "%LOG_FILE%"

:: 2. Silent install with EXE (setup.ini in same directory is detected automatically)
"%DEPLOY_SHARE%\PrintPilot-Setup.exe" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART >> "%LOG_FILE%" 2>&1

:: Alternative: Silent install with MSI:
:: msiexec.exe /i "%DEPLOY_SHARE%\PrintPilot.msi" /qn /norestart >> "%LOG_FILE%" 2>&1

if %ERRORLEVEL% EQU 0 (
    echo [%DATE% %TIME%] PrintPilot installed and provisioned successfully. >> "%LOG_FILE%"
) else (
    echo [%DATE% %TIME%] ERROR: Installation failed with exit code %ERRORLEVEL% >> "%LOG_FILE%"
)

:ALREADY_INSTALLED
endlocal
exit /b 0

4Stap 3: Koppel het GPO-opstartscript

Open `gpmc.msc` en voeg het script toe onder `Computerconfiguratie -> Beleid -> Windows-instellingen -> Scripts (Opstarten/Afsluiten) -> Opstarten`.

5Stap 4: Controleer de implementatie op de client

Voer `gpupdate /force` uit, herstart de pc en controleer de printer via PowerShell:

PowerShell - Controle
# 1. Verify PrintPilot virtual printer status
Get-Printer -Name "PrintPilot" | Select-Object Name, DriverName, PortName

# 2. Inspect installation log
Get-Content "$env:TEMP\printpilot_gpo_install.log" -Tail 20

Veelgestelde vragen (FAQ)

Moeten gebruikers lokale administratorrechten hebben?

Nee, het GPO-opstartscript draait onder het SYSTEM-account met volledige rechten.

Begin vandaag nog met het automatiseren van je werkstromen

Rol PrintPilot binnen enkele minuten uit over honderden werkplekken via GPO en setup.ini.

Download gratis PrintPilot-proefversie