Disable the print screen
Created: 08 Mar 2010 | Updated: 02 Nov 2010 | 4 comments
Hi All,
Any way to revoke print screen option through SEP. For example is it posible to find the print screen related files running in the OS and disable the same through application and device control policies.
Regards,
Sanoj
+91 9739499487
Idea Filed Under:
Comments 4 Comments • Jump to latest comment
Is it possible to integrate the below in SEP
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.
by compiling two files with seperate codes as below:
File 1
------------------------------------
Opt("TrayIconHide",1)
HotKeySet("{PRINTSCREEN}", "DisablePrintScreen")
HotKeySet("!{PRINTSCREEN}", "DisablePrintScreen")
HotKeySet("+{PRINTSCREEN}", "DisablePrintScreen")
While 1
WEnd
Func DisablePrintScreen()
EndFunc
------------------------------------
File 2
***********************
Opt("TrayIconHide",1)
HotKeySet("^{PRINTSCREEN}", "DisablePrintScreen")
While 1
WEnd
Func DisablePrintScreen()
EndFunc
*****************************
it works cheerssssssssssssssssss...............................................
Refer to my below forum
https://www-secure.symantec.com/connect/forums/how-block-print-screen-application-device-contrl
Regrds,
SAM
Hey Sanoj,
It perfectly works. Thanks for the Idea :D
But what if we have to disable the same, can you provide with its reversal as well.
Thanks in advance.
Would you like to reply?
Login or Register to post your comment.