簡體   English   中英

從XML文件安裝打印機

[英]Install Printers from XML Files

我將打印機從Windows 10系統備份到XML文件。 我正在嘗試使用Set-Printconfiguration CMDLET添加它們,但似乎不接受變量嗎?

我到處都看過,但找不到任何提示我的語法錯誤的信息。

#get list of printers in backup folder
$printerNames = (Get-ChildItem -Path c:\temp\printers\*.xml -Recurse | select name).name
    foreach ($printer in $printerNames)
        {
        Set-PrintConfiguration -PrinterName $printer -PrintTicketXml c:\temp\printers\$printer
        }

這是我用來獲取打印機XML文件的代碼:

$TARGETDIR = "c:\temp\printers"
if(!(Test-Path -Path $TARGETDIR )){
    New-Item -ItemType directory -Path $TARGETDIR
}

# Get all the printers:
    $PN = (get-printer | select name).name

# Foreach loop to create XML file for each printer configuration
    Foreach ($P in $PN){
    $GPC = get-printconfiguration -PrinterName $P
    mkdir c:\temp\printers\$P 
    $GPC.PrintTicketXML | out-file C:\Temp\printers\$P.xml
# $p|select *|out-file -Path c:\temp\$p.xml -NoTypeInformation
    }

編輯:這是我得到的錯誤:

Set-PrintConfiguration : The specified printer was not found.
At U:\PowerShell\Scripts\backup\newRestorePrinters.ps1:15 char:9
+         Set-PrintConfiguration -PrinterName $printer -PrintTicketXml  ...
+         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (MSFT_PrinterConfiguration:ROOT/StandardCi...erConfiguration) [Set-PrintConfiguration], CimException
    + FullyQualifiedErrorId : HRESULT 0x80070709,Set-PrintConfiguration

編輯我添加了更多變量以獲取名稱末尾帶有.XML的打印機列表。 它仍然給我相同的錯誤輸出。 好像沒有將我的變量傳遞給set-printconfiguration命令嗎?

新的還原腳本代碼:

$printerShortNameList = (Get-ChildItem -Path c:\temp\printers\*.xml -Recurse | select name).name
    foreach ($shortName in $printerShortNameList)
        {
        $shortName.Replace('.xml', "x")
        }

#get list of printers in backup folder
$printerNames = (Get-ChildItem -Path c:\temp\printers\*.xml -Recurse | select name).name
    foreach ($printer in $printerNames)
        {
        Set-PrintConfiguration -PrinterName $shortName -PrintTicketXml c:\temp\printers\$printer
        }

錯誤消息是什么? 您是否不應該從$ printer末尾刪除'.xml'作為打印機名稱? 我認為您必須先使用添加打印機。 我不相信Set-PrintConfiguration會創建打印機。

制作xml文件時,為什么在底部創建c:\\ temp \\ printers \\ $ p目錄?

Set-PrintConfiguration

您需要管理員憑據才能使用Set-PrintConfiguration。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM