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
None
Returns
Nothing
Scope
Client
Code Examples
Example #1
# 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()