PC Review


Reply
Thread Tools Rate Thread

disable the Print Screen function

 
 
Figo
Guest
Posts: n/a
 
      22nd Jan 2008
for the security reason, we want disable the Print Screen function to
prevent users from copying images to the clipboard in Windows, Is there a
register key or any method that we can do for disabling print screen
function ?

Thank you very much


 
Reply With Quote
 
 
 
 
Shenan Stanley
Guest
Posts: n/a
 
      22nd Jan 2008
Figo wrote:
> for the security reason, we want disable the Print Screen function
> to prevent users from copying images to the clipboard in Windows,
> Is there a register key or any method that we can do for disabling
> print screen function ?
>
> Thank you very much


You might remap the key(s)...

Beyond that... Not really and anything you do - there is a work-around
dependent on what other security measures surround the system.

--
Shenan Stanley
MS-MVP
--
How To Ask Questions The Smart Way
http://www.catb.org/~esr/faqs/smart-questions.html


 
Reply With Quote
 
Figo
Guest
Posts: n/a
 
      22nd Jan 2008
Thanks a lot, but How can I remap the key ? Where can I find the reference ?
Thanks again...

"Shenan Stanley" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Figo wrote:
>> for the security reason, we want disable the Print Screen function
>> to prevent users from copying images to the clipboard in Windows,
>> Is there a register key or any method that we can do for disabling
>> print screen function ?
>>
>> Thank you very much

>
> You might remap the key(s)...
>
> Beyond that... Not really and anything you do - there is a work-around
> dependent on what other security measures surround the system.
>
> --
> Shenan Stanley
> MS-MVP
> --
> How To Ask Questions The Smart Way
> http://www.catb.org/~esr/faqs/smart-questions.html
>



 
Reply With Quote
 
Anteaus
Guest
Posts: n/a
 
      24th Jan 2008

http://www.autoitscript.com/autoit3/.../HotKeySet.htm

Not sure if PrtSc might be one of those keystrokes like Ctrl-alt-Del that
can't be trapped, though. If so, this would likely apply to all programming
languages. Easiest way to find out is try and see.

"Figo" wrote:

> Thanks a lot, but How can I remap the key ? Where can I find the reference ?
> Thanks again...


 
Reply With Quote
 
Anteaus
Guest
Posts: n/a
 
      24th Jan 2008
This seems to work OK:

[Autoit 3.2.8.1 code]
Opt("TrayIconHide", 1)
HotKeySet("{PRINTSCREEN}","NoChanceMatey")
do
sleep(1000)
until 0
func NoChanceMatey()
MsgBox(0,"Your devious skuduggery has been detected","You can fool some of
the IT guys some of the time...",5)
endfunc
[/code]


 
Reply With Quote
 
Lanwench [MVP - Exchange]
Guest
Posts: n/a
 
      6th Sep 2008
sb1920alk <(E-Mail Removed)> wrote:
> Anteaus;3481247 Wrote:
>> This seems to work OK:
>>
>> [Autoit 3.2.8.1 code]
>> Opt("TrayIconHide", 1)
>> HotKeySet("{PRINTSCREEN}","NoChanceMatey")
>> do
>> sleep(1000)
>> until 0
>> func NoChanceMatey()
>> MsgBox(0,"Your devious skuduggery has been detected","You can fool
>> some of
>> the IT guys some of the time...",5)
>> endfunc
>>

> --------------------
>
>
> This is a good start, but it doesn't stop Alt-Print Screen. Also, if
> Task Manager is used to end the process, Print Screen works again.
>
> Can the script be altered to prevent one of both of these workarounds?


Get keyboards without Print Screen buttons? Break off the keys? Seriously,
as the wise Mr. Ed Crowley says, "there are seldom good technological
solutions to behavioral problems". What's to stop someone with a digital
camera from taking a photo?


 
Reply With Quote
 
Jim
Guest
Posts: n/a
 
      6th Sep 2008

"sb1920alk" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> Anteaus;3481247 Wrote:
>> This seems to work OK:
>>
>> [Autoit 3.2.8.1 code]
>> Opt("TrayIconHide", 1)
>> HotKeySet("{PRINTSCREEN}","NoChanceMatey")
>> do
>> sleep(1000)
>> until 0
>> func NoChanceMatey()
>> MsgBox(0,"Your devious skuduggery has been detected","You can fool some
>> of
>> the IT guys some of the time...",5)
>> endfunc
>>

> --------------------
>
>
> This is a good start, but it doesn't stop Alt-Print Screen. Also, if Task
> Manager is used to end the process, Print Screen works again.
>
> Can the script be altered to prevent one of both of these workarounds?
>
>
> --
> sb1920alk
> ------------------------------------------------------------------------
> sb1920alk's Profile: http://forums.techarena.in/members/sb1920alk.htm
> View this thread: http://forums.techarena.in/windows-security/897979.htm
>
> http://forums.techarena.in
>

A search of Help & Support for "disable print screen" shows a Basic program
which disables/enables print screen and its other forms.
Jim


 
Reply With Quote
 
Mihir
Guest
Posts: n/a
 
      13th Oct 2008
Request if you can share stepwise procedure to compile this exe.

"sb1920alk" wrote:

>
> sb1920alk;3959255 Wrote:
> > This is a good start, but it doesn't stop Alt-Print Screen. Also, if
> > Task Manager is used to end the process, Print Screen works again.
> >
> > Can the script be altered to prevent one of both of these workarounds?

>
> Got it, you just set another hot key for Alt-PrintScreen as well.
>
> The script can be compiled into an exe file that can be launched with
> the user's login script. As long as the program is running, PrintScreen
> and Alt-PrintScreen will do nothing. The program will show up on the
> Task Manager list, so you should name it something that blends in, like
> svchost.exe. Not perfect, but a step in the right direction.
>
>
> Code:
> --------------------
> Opt("TrayIconHide",1)
>
> HotKeySet("{PRINTSCREEN}", "DisablePrintScreen")
> HotKeySet("!{PRINTSCREEN}", "DisablePrintScreen")
>
> While 1
> WEnd
>
> Func DisablePrintScreen()
> EndFunc
> --------------------
>
>
> --
> sb1920alk
> ------------------------------------------------------------------------
> sb1920alk's Profile: http://forums.techarena.in/members/sb1920alk.htm
> View this thread: http://forums.techarena.in/windows-security/897979.htm
>
> http://forums.techarena.in
>
>

 
Reply With Quote
 
Mihir
Guest
Posts: n/a
 
      13th Oct 2008
Hey, Thanx.

Its working.

Will write in observations (if any)

"sb1920alk" wrote:

>
> Mihir;4022246 Wrote:
> > Request if you can share stepwise procedure to compile this exe.

>
> 1) Downloand and install AutoIT
> 2) Open a new AutoIT script
> 3) Copy and paste the previously mentioned code into the new script and
> save it.
> 4) Right-click on the script and choose Compile Script. An exe file
> will be created.
>
>
> --
> sb1920alk
> ------------------------------------------------------------------------
> sb1920alk's Profile: http://forums.techarena.in/members/sb1920alk.htm
> View this thread: http://forums.techarena.in/windows-security/897979.htm
>
> http://forums.techarena.in
>
>

 
Reply With Quote
 
Mihir
Guest
Posts: n/a
 
      14th Oct 2008
One observation to share,

To block Printscreen, Alt+Printscreen this works fine.

But it doesn't work for combinations of other keys + Printscreen.

Combination of other keys with Printscreen also needs to be blocked.
Fn+Ctrl+Printscreen
Ctrl+Printscreen
Ctrl+A+Printscreen
Ctrl+Alt+P+Printscreen
Ctrl+Q+Printscreen

We need to disable all other key combination with Printscreen.


"Mihir" wrote:

> Hey, Thanx.
>
> Its working.
>
> Will write in observations (if any)
>
> "sb1920alk" wrote:
>
> >
> > Mihir;4022246 Wrote:
> > > Request if you can share stepwise procedure to compile this exe.

> >
> > 1) Downloand and install AutoIT
> > 2) Open a new AutoIT script
> > 3) Copy and paste the previously mentioned code into the new script and
> > save it.
> > 4) Right-click on the script and choose Compile Script. An exe file
> > will be created.
> >
> >
> > --
> > sb1920alk
> > ------------------------------------------------------------------------
> > sb1920alk's Profile: http://forums.techarena.in/members/sb1920alk.htm
> > View this thread: http://forums.techarena.in/windows-security/897979.htm
> >
> > http://forums.techarena.in
> >
> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Disable Print Screen ( capture screen function ) Figo Windows XP General 2 22nd Jan 2008 06:30 PM
How to disable Shortcut key (e.g Alt+Print Screen ,Ctrl+Print Scre =?Utf-8?B?Q2hlb25n?= Windows XP General 3 1st Mar 2006 02:43 AM
Disable Print Screen Key =?Utf-8?B?U3VuUmFjZQ==?= Windows XP Security 2 18th Jun 2005 01:01 PM
disable the print screen key Vicente Nicolau Microsoft C# .NET 0 30th Apr 2004 08:40 AM
disable the print screen key Vicente Nicolau Microsoft Dot NET 0 30th Apr 2004 08:40 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:10 PM.