Xander Posted February 25, 2016 Share Posted February 25, 2016 (edited) Starting to write a little script that will lock my PC when my phone is not on the wifi. Should be pretty simple: Opt("SendKeyDelay",0) Opt("SendKeyDownDelay",0) While 1 $ping=Ping("192.168.0.13") ;check for phone with static IP If $ping=0 then Send("#l") ; send Win+L to lock Sleep(60000) ;will adjust once working WEnd The first two lines were recommended by the Help file but don't seem to make any difference. If I change it to "#r", I do get the run box so I'm not sure why #l isn't working. Once I get this bit fixed, I'll pretty it up and maybe see if I can get it to unlock when I get home (suggestions welcome). Edited February 25, 2016 by Xander Link to comment Share on other sites More sharing options...
InunoTaishou Posted February 25, 2016 Share Posted February 25, 2016 (edited) If you can avoid using Send, do so #include <WinAPISys.au3> If (Not Ping("192.168.0.13")) Then _WinAPI_LockWorkStation() If ping does not respond, Lock Workstation. Edited February 25, 2016 by InunoTaishou Xander 1 Link to comment Share on other sites More sharing options...
Xander Posted February 25, 2016 Author Share Posted February 25, 2016 I knew there had to be a more elegant way to do it. Turns out my Autoit was behind by a bit and the WinAPI entries weren't in the Help file. Link to comment Share on other sites More sharing options...
TheDcoder Posted February 25, 2016 Share Posted February 25, 2016 They are located in Helpfile -> User Defined Functions -> WinAPIEx Reference TD EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time) DcodingTheWeb Forum - Follow for updates and Join for discussion Link to comment Share on other sites More sharing options...
InunoTaishou Posted February 25, 2016 Share Posted February 25, 2016 After doing some searching there doesn't look to be an easy way to unlock the workstation. http://stackoverflow.com/questions/12565878/c-sharp-unlock-workstation That stackoverflow post leads to this. Which looks complicated, using some classes I've never seen. Link to comment Share on other sites More sharing options...
BrewManNH Posted February 25, 2016 Share Posted February 25, 2016 I'd certainly hope that there wasn't an easy way to unlock a computer without the correct password/username. Otherwise, what would be the point of locking it in the first place? If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
Xander Posted February 28, 2016 Author Share Posted February 28, 2016 Well, IF it were possible, I'd be fine with popping my login information into my own script. This is all more of a "let's see how it works" experiment than anything else. Link to comment Share on other sites More sharing options...
JohnOne Posted February 28, 2016 Share Posted February 28, 2016 (edited) Here's a little known way to auto enter password in windows logon screen. Keep it to yourself, though. Spoiler http://www.youtube.com/watch?v=qExIeZtt8KA Edited February 28, 2016 by JohnOne AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
InunoTaishou Posted February 28, 2016 Share Posted February 28, 2016 All you need are some legos! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now