system.security.unlockScreen
This function is used in Python Scripting.
Description​
Unlocks the client, if it is currently in lock-screen mode.
Client Permission Restrictions​
This scripting function has no Client Permission restrictions.
Syntax​
system.security.unlockScreen()
Parameters​
Nothing
Returns​
Nothing
Scope​
Vision Client
Code Example​
Code Snippet
# This code would go in a global script to automatically unlock the screen on a specific computer
comp = system.net.getHostName()
if comp == 'Line 1':
system.security.unlockScreen()