{% extends "base.html" %} {% import "partials/icons.html" as ico %} {% block head_title %}{{ printer.name }} · ImpTune{% endblock %} {% block crumb %} {{ ico.i('back', 12) }}Printers {% if printer.client_id %}/{{ printer.client.name }}{% endif %} {% endblock %} {% block page_title %}{{ printer.name }}{% endblock %} {% block page_actions %} {% if has_driver %} {{ ico.i('check', 12) }}Ready {% else %} {{ ico.i('alert', 12) }}Driver needed {% endif %} {% endblock %} {% block content %}
{{ ico.i('network') }}

Configuration

IP address
{{ printer.ip_address }}
Port name
{{ printer.port_name }}
Client
{% if printer.client_id %}
{{ printer.client.name }}
{% else %}
Unassigned
{% endif %}
Duplex mode
{{ printer.duplex_mode }}
Color mode
{{ 'Color' if printer.color_mode else 'Grayscale' }}
Paper size
{{ printer.paper_size }}
Collate
{{ 'Yes' if printer.collate else 'No' }}
{{ ico.i('driver') }}

Driver

{% if printer.driver_id %}
Package
{{ printer.driver.original_filename }}
Driver name(s)
{% for name in driver_names %}{{ name }}{% endfor %}
Architecture
{% if printer.driver.architecture %}{{ printer.driver.architecture }}{% else %}Unknown{% endif %}
{% else %}
{{ ico.i('driver', 18) }} No driver assigned

Assign a driver to this printer to unlock scripts and export.

{{ ico.i('pencil', 14) }}Assign a driver
{% endif %}
{% if has_driver %}
{{ ico.i('terminal') }}

Intune commands

Paste these into the Win32 app's install and uninstall fields.

Install command
{{ install_cmd }}
Uninstall command
{{ uninstall_cmd }}
{% endif %}
{{ ico.i('package') }}

Deploy

{% if has_driver %}
{{ ico.i('download', 14) }}Download .intunewin .intunewin — upload to Intune as a Win32 app.
{{ ico.i('download', 14) }}Download NinjaRMM ZIP ZIP — plain scripts for NinjaRMM or a manual run.
{% else %}

Assign a driver to this printer to unlock scripts and export.

{% endif %}
{% if has_driver %}
{{ ico.i('script') }}

PowerShell scripts

{% endif %}
{{ ico.i('image') }}

Icon

{% if has_icon %}

{{ ico.i('check', 14) }}Icon saved

256×256 PNG
{% else %}

No icon. Intune will show its default.

{% endif %}

PNG, exactly 256 × 256, 750 KB max.

{% endblock %}