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.
+1
A:
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.
Tom Anderson
2009-04-09 19:31:43
Tricky, but could be easily circumvented.
Kibbee
2009-04-09 19:34:56
True, but most common users won't realize this.
Tom Anderson
2009-04-09 19:38:05
+2
A:
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
- Copy and paste to Word
- Screen Shots
- File -> Save As
- Look through the cache files and grab it from there.
Kibbee
2009-04-09 19:34:06
It's basically at a kiosk type of system where another application runs that has to support printing so anyone going through the above steps would probably get noticed. I think it's more of a simple prevention they need. If someone is going through that stuff, more power to them.
digitall
2009-04-10 12:17:59
Don't know why you got down voted, so i'm voting you back up, this is probably the most correct answer so far. Actually provides a way of blocking saving the file also.
Kibbee
2009-04-09 19:39:52
We will have control of the machine and this should work perfectly fine. Thanks!
digitall
2009-04-10 12:18:42