X-Spam-Check-By: sourceware.org Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Subject: Can't print because .lnk makes printer name invalid Date: Thu, 20 Apr 2006 08:51:20 -0500 Message-ID: From: "Rockefeller, Harry" To: X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id k3KDpGUU016766 I had our UNIX administrator work on this for a couple of days. He totally reinstalled Cygwin. The problem still exists. However, I created a workaround which may be of benefit to others. With a postscript file or output from a2ps use this command cat $i.ps | $HOME/bin/print.pl and this perl file #!/usr/bin/perl -w # print.pl: Cygwin print workaround use IO::Socket::INET; $socket = IO::Socket::INET->new("10.30.16.51:9100") or die "Couldn't Connect to 10.30.16.51 port 9100: $!"; while (<>) { print $socket "$_\n"; } print "\n"; exit; -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/