Reputation: 2475
Is there a way to disable printing in Internet Explorer without writing a shell around the browser API? A GPO would be the best method, but I'm certainly open for anything.
Upvotes: 0
Views: 9513
Reputation: 66112
What are you trying to prevent by disabling printing? If you're trying to stop them from printing stuff and taking it home, there's a couple different ways around that, without printing. Including
Upvotes: 2
Reputation: 10827
This is a difficult one, but in order to block printing, at least the content but not the paper, on a previous project of mine, I used the following:
<style type="text/css" media="print">
body {
display:none;
}
</style>
When they print the page, it is blank.
Upvotes: 3