次の方法で共有


方法: プリンターを複製する

ほとんどの企業は、ある時点で、同じモデルの複数のプリンターを購入します。 通常、これらはすべて、ほぼ同じ構成設定でインストールされます。 各プリンターのインストールには時間がかかり、エラーが発生しやすくなります。 microsoft .NET Framework で公開されている System.Printing.IndexedProperties 名前空間と InstallPrintQueue クラスを使用すると、既存の印刷キューから複製された任意の数の追加の印刷キューをすぐにインストールできます。

次の例では、2 つ目の印刷キューが既存の印刷キューから複製されています。 2つ目は、名前、場所、ポート、共有状態のみが最初のものと異なります。 これを行うための主な手順は次のとおりです。

  1. 複製する既存のプリンターの PrintQueue オブジェクトを作成します。

  2. PrintQueuePropertiesCollection から PrintPropertyDictionary を作成します。 このディクショナリ内の各エントリの Value プロパティは、PrintPropertyから派生した型の 1 つのオブジェクトです。 このディクショナリ内のエントリの値を設定するには、2 つの方法があります。

    • ディクショナリの Remove メソッドと Add メソッドを使用してエントリを削除し、目的の値で再度追加します。

    • ディクショナリの SetProperty メソッドを使用します。

    次の例は、両方の方法を示しています。

  3. PrintBooleanProperty オブジェクトを作成し、その Name を "IsShared" に設定し、その Valuetrueに設定します。

  4. PrintPropertyDictionaryの "IsShared" エントリの値には、PrintBooleanProperty オブジェクトを使用します。

  5. PrintStringProperty オブジェクトを作成し、その Name を "ShareName" に設定し、その Value を適切な Stringに設定します。

  6. PrintPropertyDictionaryの "ShareName" エントリの値には、PrintStringProperty オブジェクトを使用します。

  7. 別の PrintStringProperty オブジェクトを作成し、その Name を "Location" に設定し、その Value を適切な Stringに設定します。

  8. 2 番目の PrintStringProperty オブジェクトを、PrintPropertyDictionaryの "Location" エントリの値として使用します。

  9. Stringの配列を作成します。 各項目は、サーバー上のポートの名前です。

  10. InstallPrintQueue を使用して、新しい値で新しいプリンターをインストールします。

例を次に示します。

LocalPrintServer myLocalPrintServer = new LocalPrintServer(PrintSystemDesiredAccess.AdministrateServer);
PrintQueue sourcePrintQueue = myLocalPrintServer.DefaultPrintQueue;
PrintPropertyDictionary myPrintProperties = sourcePrintQueue.PropertiesCollection;

// Share the new printer using Remove/Add methods
PrintBooleanProperty shared = new PrintBooleanProperty("IsShared", true);
myPrintProperties.Remove("IsShared");
myPrintProperties.Add("IsShared", shared);

// Give the new printer its share name using SetProperty method
PrintStringProperty theShareName = new PrintStringProperty("ShareName", "\"Son of " + sourcePrintQueue.Name +"\"");
myPrintProperties.SetProperty("ShareName", theShareName);

// Specify the physical location of the new printer using Remove/Add methods
PrintStringProperty theLocation = new PrintStringProperty("Location", "the supply room");
myPrintProperties.Remove("Location");
myPrintProperties.Add("Location", theLocation);

// Specify the port for the new printer
String[] port = new String[] { "COM1:" };

// Install the new printer on the local print server
PrintQueue clonedPrinter = myLocalPrintServer.InstallPrintQueue("My clone of " + sourcePrintQueue.Name, "Xerox WCP 35 PS", port, "WinPrint", myPrintProperties);
myLocalPrintServer.Commit();

// Report outcome
Console.WriteLine("{0} in {1} has been installed and shared as {2}", clonedPrinter.Name, clonedPrinter.Location, clonedPrinter.ShareName);
Console.WriteLine("Press Return to continue ...");
Console.ReadLine();
Dim myLocalPrintServer As New LocalPrintServer(PrintSystemDesiredAccess.AdministrateServer)
Dim sourcePrintQueue As PrintQueue = myLocalPrintServer.DefaultPrintQueue
Dim myPrintProperties As PrintPropertyDictionary = sourcePrintQueue.PropertiesCollection

' Share the new printer using Remove/Add methods
Dim [shared] As New PrintBooleanProperty("IsShared", True)
myPrintProperties.Remove("IsShared")
myPrintProperties.Add("IsShared", [shared])

' Give the new printer its share name using SetProperty method
Dim theShareName As New PrintStringProperty("ShareName", """Son of " & sourcePrintQueue.Name & """")
myPrintProperties.SetProperty("ShareName", theShareName)

' Specify the physical location of the new printer using Remove/Add methods
Dim theLocation As New PrintStringProperty("Location", "the supply room")
myPrintProperties.Remove("Location")
myPrintProperties.Add("Location", theLocation)

' Specify the port for the new printer
Dim port() As String = { "COM1:" }


' Install the new printer on the local print server
Dim clonedPrinter As PrintQueue = myLocalPrintServer.InstallPrintQueue("My clone of " & sourcePrintQueue.Name, "Xerox WCP 35 PS", port, "WinPrint", myPrintProperties)
myLocalPrintServer.Commit()

' Report outcome
Console.WriteLine("{0} in {1} has been installed and shared as {2}", clonedPrinter.Name, clonedPrinter.Location, clonedPrinter.ShareName)
Console.WriteLine("Press Return to continue ...")
Console.ReadLine()

関連項目