|
|
disable the Print Screen function
microsoft.public.windowsxp.security_admin
|
|

01-22-2008, 03:15 PM
|
|
|
|
disable the Print Screen function
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
|
|

01-22-2008, 03:27 PM
|
|
|
|
Re: disable the Print Screen function
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
|
|

01-22-2008, 04:08 PM
|
|
|
|
Re: disable the Print Screen function
Thanks a lot, but How can I remap the key ? Where can I find the reference ?
Thanks again...
"Shenan Stanley" <newshelper@gmail.com> wrote in message
news:%23r7xGtQXIHA.2000@TK2MSFTNGP05.phx.gbl...
> 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
>
|
|

01-24-2008, 08:48 AM
|
|
|
|
Re: disable the Print Screen function
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...
|
|

01-24-2008, 03:44 PM
|
|
|
|
Re: disable the Print Screen function
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]
|
|

09-05-2008, 10:44 PM
|
|
|
|
Re: disable the Print Screen function
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
|
|

09-06-2008, 05:09 PM
|
|
|
|
Re: disable the Print Screen function
sb1920alk <sb1920alk.3faf7d@DoNotSpam.com> 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?
|
|

09-06-2008, 06:16 PM
|
|
|
|
Re: disable the Print Screen function
'Lanwench [MVP - Exchange Wrote:
> ']
> 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?
So just because there are ways to steal my car that I cannot prevent, I
should leave it unlocked all of the time?
If there is a simple script that will stop most of the problems, why
not use it? It's not always a security issue...maybe they're pasting
screen shots into emails directly and clogging the email server. Even if
it is a security issue, the behavioral problem can be more easily
addressed if the car is locked.
--
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
|
|

09-06-2008, 06:41 PM
|
|
|
|
Re: disable the Print Screen function
"sb1920alk" <sb1920alk.3faf7d@DoNotSpam.com> wrote in message
news:sb1920alk.3faf7d@DoNotSpam.com...
>
> 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
|
|

09-26-2008, 03:51 PM
|
|
|
|
Re: disable the Print Screen function
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
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT. The time now is 01:01 PM.
|
|