Advertisement
p-kl

Dodawanie drukarki dodanej przez OptimiDoc Server

Apr 3rd, 2025 (edited)
561
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. param (
  2.     [switch]$Debug,
  3.     [string]$DefaultServerAddress = "192.168.8.39",
  4.     [string]$PrinterName = "OptimiDocPrinter",
  5.     [string]$QueueUser = "$env:USERNAME",     # Changed to use Windows username as default
  6.     [string]$QueueProject = "",  # New parameter for project part of queue name
  7.     [string]$QueueCustom = "",   # New parameter for custom part of queue name
  8.     [string]$DefaultDriver = ""  # New parameter for default driver
  9. )
  10.  
  11. # Enable debug output if the -Debug switch is used
  12. if ($Debug) { $DebugPreference = "Continue" }
  13.  
  14. Write-Debug "DefaultServerAddress: $DefaultServerAddress"
  15. Write-Debug "PrinterName         : $PrinterName"
  16. Write-Debug "QueueUser           : $QueueUser"
  17. Write-Debug "QueueProject        : $QueueProject"
  18. Write-Debug "QueueCustom         : $QueueCustom"
  19. Write-Debug "DefaultDriver       : $DefaultDriver"
  20. Write-Debug ""
  21.  
  22. # Load WPF module for GUI
  23. Add-Type -AssemblyName PresentationFramework
  24.  
  25. # Ensure the logo file exists, download if necessary
  26. $LogoPath = Join-Path $PSScriptRoot "optimidoc-logo.png"
  27. $LogoUrl = "https://optimidoc.com/wp-content/uploads/2023/02/[email protected]"
  28. if (-not (Test-Path $LogoPath)) {
  29.     Write-Debug "Logo file not found. Downloading..."
  30.     try {
  31.         [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
  32.         Invoke-WebRequest -Uri $LogoUrl -OutFile $LogoPath -ErrorAction Stop
  33.         Write-Debug "Logo downloaded successfully to $LogoPath"
  34.     } catch {
  35.         Write-Warning "Failed to download logo: $_.Exception.Message"
  36.     }
  37. }
  38. else {
  39.         Write-Debug "Logo was already downloaded"
  40. }
  41.  
  42. Write-Debug ""
  43.  
  44. # Function to list available printer drivers excluding Microsoft and default system printers
  45. Function Get-FilteredPrinterDrivers {
  46.     Write-Debug "Fetching filtered printer drivers..."
  47.     Get-PrinterDriver | Where-Object {
  48.         $_.Name -notmatch "Microsoft" `
  49.                 -and $_.Name `
  50.                 -notmatch "XPS" `
  51.                 -and $_.Name `
  52.                 -notmatch "PDF" `
  53.                 -and $_.Name `
  54.                 -notmatch "Fax" `
  55.                 -and $_.Name `
  56.                 -notmatch "Anydesk"
  57.     } | Select-Object Name
  58. }
  59.  
  60. # Function to display a combined GUI dialog for all inputs
  61. Function Show-CombinedInputDialog {
  62.     Param (
  63.         [array]$DriverList,
  64.         [string]$ServerAddress
  65.     )
  66.     Write-Debug "Showing combined input dialog..."
  67.     Write-Debug "DriverList: "
  68.     $DriverList | ForEach-Object { Write-Debug "    $($_.Name)" }
  69.     Write-Debug "PassedToInputServerAddress: $ServerAddress"
  70.  
  71.     $Window = New-Object System.Windows.Window
  72.     $Window.Title = "Printer Setup"
  73.     $Window.Width = 500
  74.     $Window.Height = 600 # Increased height to accommodate the new checkbox
  75.     $Window.WindowStartupLocation = "CenterScreen"
  76.     $Window.Background = "#333333" # Dark gray background
  77.  
  78.     $StackPanel = New-Object System.Windows.Controls.StackPanel
  79.     $StackPanel.Margin = 20
  80.     $StackPanel.HorizontalAlignment = "Center"
  81.     $Window.Content = $StackPanel
  82.  
  83.     # Add OptimiDoc logo
  84.     $Logo = New-Object System.Windows.Controls.Image
  85.     try {
  86.         $BitmapImage = New-Object System.Windows.Media.Imaging.BitmapImage
  87.         $BitmapImage.BeginInit()
  88.         $BitmapImage.UriSource = New-Object Uri($LogoPath, [UriKind]::Absolute)
  89.         $BitmapImage.CacheOption = [System.Windows.Media.Imaging.BitmapCacheOption]::OnLoad
  90.         $BitmapImage.EndInit()
  91.         $Logo.Source = $BitmapImage
  92.     } catch {
  93.         Write-Warning "Failed to load logo image: $_.Exception.Message"
  94.     }
  95.     $Logo.Width = 200
  96.     $Logo.Margin = "0,0,0,10"
  97.     $StackPanel.Children.Add($Logo)
  98.  
  99.     # Check if printer exists
  100.  
  101.     Write-Debug "Using printer name: $PrinterName"
  102.     # $PrinterExists = Get-Printer | Where-Object {$_.Name -eq $PrinterName}
  103.     # $DeleteExistingPrinter = $false
  104.  
  105.     # Checkbox to delete existing printer
  106.     $CheckBoxDeletePrinter = New-Object System.Windows.Controls.CheckBox
  107.     $CheckBoxDeletePrinter.Content = "Delete existing printer if it exists"
  108.     $CheckBoxDeletePrinter.IsChecked = $false
  109.     $CheckBoxDeletePrinter.Margin = "0,0,0,10"
  110.     $CheckBoxDeletePrinter.Foreground = "White"
  111.     $StackPanel.Children.Add($CheckBoxDeletePrinter)
  112.  
  113.     # Printer Name Input
  114.     $TextBlockPrinterName = New-Object System.Windows.Controls.TextBlock
  115.     $TextBlockPrinterName.Text = "Enter the printer name:"
  116.     $TextBlockPrinterName.FontSize = 16
  117.     $TextBlockPrinterName.FontWeight = "Bold"
  118.     $TextBlockPrinterName.Margin = "0,0,0,5"
  119.     $TextBlockPrinterName.Foreground = "White"
  120.     $StackPanel.Children.Add($TextBlockPrinterName)
  121.  
  122.     $TextBoxPrinterName = New-Object System.Windows.Controls.TextBox
  123.     $TextBoxPrinterName.Width = 400
  124.     $TextBoxPrinterName.Height = 30
  125.     $TextBoxPrinterName.Margin = "0,0,0,20"
  126.     $TextBoxPrinterName.FontSize = 14
  127.     $TextBoxPrinterName.Background = "#F5F5F5"
  128.     $TextBoxPrinterName.BorderBrush = "#BDBDBD"
  129.     $TextBoxPrinterName.Foreground = "Gray"
  130.     $TextBoxPrinterName.Text = $PrinterName # Default printer name
  131.     $TextBoxPrinterName.Add_GotFocus({
  132.         if ($TextBoxPrinterName.Foreground -eq "Gray") {
  133.             $TextBoxPrinterName.Text = ""
  134.             $TextBoxPrinterName.Foreground = "Black"
  135.         }
  136.     })
  137.     $TextBoxPrinterName.Add_LostFocus({
  138.         if ([string]::IsNullOrWhiteSpace($TextBoxPrinterName.Text)) {
  139.             $TextBoxPrinterName.Text = $PrinterName
  140.             $TextBoxPrinterName.Foreground = "Gray"
  141.         }
  142.     })
  143.     $StackPanel.Children.Add($TextBoxPrinterName)
  144.  
  145.     # Printer Driver Selection
  146.     $TextBlockDriver = New-Object System.Windows.Controls.TextBlock
  147.     $TextBlockDriver.Text = "Select a printer driver:"
  148.     $TextBlockDriver.FontSize = 16
  149.     $TextBlockDriver.FontWeight = "Bold"
  150.     $TextBlockDriver.Margin = "0,0,0,10"
  151.     $TextBlockDriver.Foreground = "White"
  152.     $StackPanel.Children.Add($TextBlockDriver)
  153.  
  154.     $RadioButtonGroup = New-Object System.Windows.Controls.StackPanel
  155.     $RadioButtonGroup.Orientation = "Vertical"
  156.     $RadioButtonGroup.Margin = "0,0,0,20"
  157.     $StackPanel.Children.Add($RadioButtonGroup)
  158.  
  159.     # Initialize variables
  160.     $SelectedDriver = ""
  161.     $Window.Tag = $null
  162.  
  163.     # Radio Button Click Action
  164.     $rbClickAction = {
  165.         Param($sender)
  166.         $script:SelectedDriver = $sender.Content
  167.         Write-Debug "Selected driver: $($script:SelectedDriver)"
  168.     }
  169.  
  170.     foreach ($Driver in $DriverList) {
  171.         $rb = New-Object System.Windows.Controls.RadioButton
  172.         Write-Debug "Building radiobutton for: $($Driver.Name)"
  173.         $rb.Content = $Driver.Name
  174.         $rb.GroupName = "printerDriver"
  175.         $rb.FontSize = 14
  176.         $rb.Foreground = "White"
  177.         $rb.Margin = "0,2,0,2"
  178.         $rb.Add_Click($rbClickAction)
  179.         if ($Driver.Name -eq $DefaultDriver) {
  180.             $rb.IsChecked = $true
  181.             $script:SelectedDriver = $Driver.Name
  182.             Write-Debug "Auto-selected default driver: $($Driver.Name)"
  183.         }
  184.         $RadioButtonGroup.Children.Add($rb)
  185.     }
  186.  
  187.     # User Input (Queue Name Part 1)
  188.     $TextBlockUser = New-Object System.Windows.Controls.TextBlock
  189.     $TextBlockUser.Text = "Enter user ('L prefix will be added):"
  190.     $TextBlockUser.FontSize = 16
  191.     $TextBlockUser.FontWeight = "Bold"
  192.     $TextBlockUser.Margin = "0,10,0,5"
  193.     $TextBlockUser.Foreground = "White"
  194.     $StackPanel.Children.Add($TextBlockUser)
  195.  
  196.     $TextBoxUser = New-Object System.Windows.Controls.TextBox
  197.     $TextBoxUser.Width = 400
  198.     $TextBoxUser.Height = 30
  199.     $TextBoxUser.Margin = "0,0,0,20"
  200.     $TextBoxUser.FontSize = 14
  201.     $TextBoxUser.Background = "#F5F5F5"
  202.     $TextBoxUser.BorderBrush = "#BDBDBD"
  203.     $TextBoxUser.Text = $QueueUser  # Set default value from parameter
  204.     $TextBoxUser.Foreground = if ([string]::IsNullOrWhiteSpace($QueueUser)) { "Gray" } else { "Black" }
  205.     $StackPanel.Children.Add($TextBoxUser)
  206.  
  207.     # Project Input (Queue Name Part 2)
  208.     $TextBlockProject = New-Object System.Windows.Controls.TextBlock
  209.     $TextBlockProject.Text = "Enter project ('P prefix will be added):"
  210.     $TextBlockProject.FontSize = 16
  211.     $TextBlockProject.FontWeight = "Bold"
  212.     $TextBlockProject.Margin = "0,10,0,5"
  213.     $TextBlockProject.Foreground = "White"
  214.     $StackPanel.Children.Add($TextBlockProject)
  215.  
  216.     $TextBoxProject = New-Object System.Windows.Controls.TextBox
  217.     $TextBoxProject.Width = 400
  218.     $TextBoxProject.Height = 30
  219.     $TextBoxProject.Margin = "0,0,0,20"
  220.     $TextBoxProject.FontSize = 14
  221.     $TextBoxProject.Background = "#F5F5F5"
  222.     $TextBoxProject.BorderBrush = "#BDBDBD"
  223.     $TextBoxProject.Text = $QueueProject  # Set default value from parameter
  224.     $TextBoxProject.Foreground = if ([string]::IsNullOrWhiteSpace($QueueProject)) { "Gray" } else { "Black" }
  225.     $StackPanel.Children.Add($TextBoxProject)
  226.  
  227.     # Custom Queue Input (Queue Name Part 3)
  228.     $TextBlockCustomQueue = New-Object System.Windows.Controls.TextBlock
  229.     $TextBlockCustomQueue.Text = "Enter custom queue name ('Q prefix will be added):"
  230.     $TextBlockCustomQueue.FontSize = 16
  231.     $TextBlockCustomQueue.FontWeight = "Bold"
  232.     $TextBlockCustomQueue.Margin = "0,10,0,5"
  233.     $TextBlockCustomQueue.Foreground = "White"
  234.     $StackPanel.Children.Add($TextBlockCustomQueue)
  235.  
  236.     $TextBoxCustomQueue = New-Object System.Windows.Controls.TextBox
  237.     $TextBoxCustomQueue.Width = 400
  238.     $TextBoxCustomQueue.Height = 30
  239.     $TextBoxCustomQueue.Margin = "0,0,0,20"
  240.     $TextBoxCustomQueue.FontSize = 14
  241.     $TextBoxCustomQueue.Background = "#F5F5F5"
  242.     $TextBoxCustomQueue.BorderBrush = "#BDBDBD"
  243.     $TextBoxCustomQueue.Text = $QueueCustom  # Set default value from parameter
  244.     $TextBoxCustomQueue.Foreground = if ([string]::IsNullOrWhiteSpace($QueueCustom)) { "Gray" } else { "Black" }
  245.     $StackPanel.Children.Add($TextBoxCustomQueue)
  246.  
  247.     # Server Address Input
  248.     $TextBlockServer = New-Object System.Windows.Controls.TextBlock
  249.     $TextBlockServer.Text = "Enter the server address:"
  250.     $TextBlockServer.FontSize = 16
  251.     $TextBlockServer.FontWeight = "Bold"
  252.     $TextBlockServer.Margin = "0,10,0,5"
  253.     $TextBlockServer.Foreground = "White"
  254.     $StackPanel.Children.Add($TextBlockServer)
  255.  
  256.     $TextBoxServer = New-Object System.Windows.Controls.TextBox
  257.     $TextBoxServer.Width = 400
  258.     $TextBoxServer.Height = 30
  259.     $TextBoxServer.Margin = "0,0,0,20"
  260.     $TextBoxServer.FontSize = 14
  261.     $TextBoxServer.Background = "#F5F5F5"
  262.     $TextBoxServer.BorderBrush = "#BDBDBD"
  263.     $TextBoxServer.Foreground = "Gray"
  264.     $TextBoxServer.Text = $ServerAddress
  265.     $TextBoxServer.Add_GotFocus({
  266.         if ($TextBoxServer.Foreground -eq "Gray") {
  267.             $TextBoxServer.Text = ""
  268.             $TextBoxServer.Foreground = "Black"
  269.         }
  270.     })
  271.     $TextBoxServer.Add_LostFocus({
  272.         if ([string]::IsNullOrWhiteSpace($TextBoxServer.Text)) {
  273.             $TextBoxServer.Text = $ServerAddress
  274.             $TextBoxServer.Foreground = "Gray"
  275.         }
  276.     })
  277.     $StackPanel.Children.Add($TextBoxServer)
  278.  
  279.     # OK Button
  280.     $Button = New-Object System.Windows.Controls.Button
  281.     $Button.Content = "Install Printer"
  282.     $Button.Width = 100
  283.     $Button.Height = 40
  284.     $Button.Background = "#2196F3"
  285.     $Button.Foreground = "White"
  286.     $Button.HorizontalAlignment = "Center"
  287.     $StackPanel.Children.Add($Button)
  288.  
  289.     $Button.Add_Click({
  290.         if ([string]::IsNullOrEmpty($script:SelectedDriver)) {
  291.             [System.Windows.MessageBox]::Show("Please select a printer driver.", "Error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) | Out-Null
  292.             return
  293.         }
  294.  
  295.         # Build Queue Name from three parts
  296.         $queueName = ""
  297.         if (-not [string]::IsNullOrWhiteSpace($TextBoxUser.Text)) {
  298.             $queueName += "'L$($TextBoxUser.Text.Trim())"
  299.         }
  300.         if (-not [string]::IsNullOrWhiteSpace($TextBoxProject.Text)) {
  301.             $queueName += "'P$($TextBoxProject.Text.Trim())"
  302.         }
  303.         if (-not [string]::IsNullOrWhiteSpace($TextBoxCustomQueue.Text)) {
  304.             $queueName += "'Q$($TextBoxCustomQueue.Text.Trim())"
  305.         }
  306.  
  307.         Write-Debug "Generated Queue Name: $queueName"
  308.  
  309.         $Window.Tag = @{
  310.             DeleteExisting = $CheckBoxDeletePrinter.IsChecked
  311.             PrinterName = $TextBoxPrinterName.Text.Trim()
  312.             Driver = $script:SelectedDriver
  313.             ServerAddress = $TextBoxServer.Text.Trim()
  314.             QueueName = $queueName
  315.         }
  316.         $Window.Close()
  317.     })
  318.  
  319.     $Window.ShowDialog() | Out-Null
  320.     return $Window.Tag
  321. }
  322.  
  323. Write-Debug ""
  324.  
  325. # Main script execution
  326. $DriverList = Get-FilteredPrinterDrivers
  327. $inputResult = Show-CombinedInputDialog -DriverList $DriverList -ServerAddress $DefaultServerAddress
  328.  
  329. # Validate inputs
  330. If ([string]::IsNullOrEmpty($inputResult.Driver)) {
  331.     Write-Host "No printer driver selected."
  332.     Exit
  333. }
  334. If ([string]::IsNullOrWhiteSpace($inputResult.QueueName)) {
  335.     [System.Windows.MessageBox]::Show("Printer queue name cannot be empty.", "Error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) | Out-Null
  336.     Exit
  337. }
  338. If ([string]::IsNullOrWhiteSpace($inputResult.ServerAddress)) {
  339.     [System.Windows.MessageBox]::Show("Server address cannot be empty.", "Error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) | Out-Null
  340.     Exit
  341. }
  342.  
  343. # Check if printer exists and prompt to delete if requested
  344. if (-not $inputResult.DeleteExisting) {
  345.     if (Get-Printer | Where-Object {$_.Name -eq $inputResult.PrinterName}) {
  346.         $result = [System.Windows.MessageBox]::Show("Printer '$($inputResult.PrinterName)' already exists. Do you want to delete it?", "Confirm Delete", [System.Windows.MessageBoxButton]::YesNo, [System.Windows.MessageBoxImage]::Question)
  347.         if ($result -eq "Yes") {
  348.             Write-Host "Deleting existing printer and port..."
  349.             try {
  350.                 # Delete printer
  351.                 Remove-Printer -Name $inputResult.PrinterName -ErrorAction Stop
  352.                 Write-Debug "Printer '$($inputResult.PrinterName)' deleted successfully."
  353.  
  354.                 # Delete printer port
  355.                 $portNameToDelete = "lpr://$($inputResult.ServerAddress)/$($inputResult.QueueName)"
  356.                 if (Get-PrinterPort | Where-Object {$_.Name -eq $portNameToDelete}) {
  357.                     Remove-PrinterPort -Name $portNameToDelete -ErrorAction Stop
  358.                     Write-Debug "Printer port '$portNameToDelete' deleted successfully."
  359.                 }
  360.             } catch {
  361.                 Write-Warning "Failed to delete existing printer or port: $_"
  362.                 [System.Windows.MessageBox]::Show("Failed to delete existing printer or port: $_", "Error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) | Out-Null
  363.             }
  364.         }
  365.     }
  366. }
  367.  
  368. # Delete existing printer and port if requested
  369. if ($inputResult.DeleteExisting) {
  370.     Write-Host "Deleting existing printer and port..."
  371.     try {
  372.         # Delete printer
  373.         if (Get-Printer | Where-Object {$_.Name -eq $inputResult.PrinterName}) {
  374.             Remove-Printer -Name $inputResult.PrinterName -ErrorAction Stop
  375.             Write-Debug "Printer '$($inputResult.PrinterName)' deleted successfully."
  376.         }
  377.  
  378.         # Delete printer port
  379.         $portNameToDelete = "lpr://$($inputResult.ServerAddress)/$($inputResult.QueueName)"
  380.         if (Get-PrinterPort | Where-Object {$_.Name -eq $portNameToDelete}) {
  381.             Remove-PrinterPort -Name $portNameToDelete -ErrorAction Stop
  382.             Write-Debug "Printer port '$portNameToDelete' deleted successfully."
  383.         }
  384.     } catch {
  385.         Write-Warning "Failed to delete existing printer or port: $_"
  386.         [System.Windows.MessageBox]::Show("Failed to delete existing printer or port: $_", "Error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) | Out-Null
  387.     }
  388. }
  389.  
  390. # Add the LPR printer port and printer
  391. $printerName = $inputResult.PrinterName
  392. $queue       = $inputResult.QueueName # Queue name
  393. $portName    = "$($printerName) $($queue)"
  394.  
  395. Write-Debug "Adding printer port with the following details:"
  396. Write-Debug "Port Name      : $portName"
  397. Write-Debug "LprHostAddress : $($inputResult.ServerAddress)"
  398. Write-Debug "LprQueueName   : $queue"
  399.  
  400. Try {
  401.     # Check if the port already exists
  402.     $existingPort = Get-PrinterPort | Where-Object {$_.Name -eq $portName}
  403.     if ($existingPort) {
  404.         Write-Warning "Port '$portName' already exists. Attempting to delete it."
  405.         Remove-PrinterPort -Name $portName -ErrorAction Stop
  406.     }
  407.  
  408.     $printerAddPrinterPortArguments = @{
  409.                   Name = $portName
  410.         LprHostAddress = $inputResult.ServerAddress
  411.           LprQueueName = $queue
  412.     }
  413.    
  414.     # Write-Debug ""
  415.     # Write-Debug @printerAddPrinterPortArguments
  416.     # Write-Debug ""
  417.  
  418.     Add-PrinterPort @printerAddPrinterPortArguments
  419.  
  420.  
  421.     Write-Debug "Printer port '$portName' added successfully."
  422. } Catch {
  423.     Write-Debug "Failed to add printer port. $_"
  424.     [System.Windows.MessageBox]::Show("Failed to add printer port. $_", "Error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) | Out-Null
  425.     Exit
  426. }
  427.  
  428. Write-Debug "Adding printer with the following details:"
  429. Write-Debug "Printer Name  : $printerName"
  430. Write-Debug "Driver Name   : $($inputResult.Driver)"
  431. Write-Debug "Port Name     : $portName"
  432. Write-Debug "Server addr   : $($inputResult.ServerAddress)"
  433. Write-Debug "Queue         : $($inputResult.QueueName)"
  434.  
  435. Write-Host "Adding printer : $printerName
  436.        driver : $($inputResult.Driver)
  437.   server addr : $($inputResult.ServerAddress)
  438.         queue : $($inputResult.QueueName)"
  439.  
  440. Try {
  441.     Add-Printer -Name           $printerName `
  442.                 -PortName       $portName `
  443.                 -DriverName     $inputResult.Driver `
  444.                 -ErrorAction    Stop
  445.     [System.Windows.MessageBox]::Show("Printer '$printerName' added successfully.", "Success", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Information) | Out-Null
  446. } Catch {
  447.     [System.Windows.MessageBox]::Show("Failed to add printer. $_", "Error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error) | Out-Null
  448. }
  449.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement