-
Posts
59 -
Joined
-
Last visited
Profile Information
-
Location
Greater Chicago Area
-
WWW
https://onlineth.com
-
Interests
HTML5, CSS3, JavaScript, Node.js, WordPress, PHP, AutoIt, Python, AWS, CetntOS, Tennis, Chess, StackExchange, Computer Science, Particle Physics, Math, and much more and you don't care about.
onlineth's Achievements

Wayfarer (2/7)
0
Reputation
-
I’m wondering how to add a Windows Hello option to the additional PIN, Fingerprint, and Facial Recognition options? I'd like an interface that could be linked to the Windows Hello authentication system and AutoIt itself. I understand that this discussion did not meet the Forum Rules, I apologize about that. I'd like to point out that this post is asking for a way to attach into the Windows Hello service. I'd like to follow the same concept that YubiKey's interact with Windows Hello as seen here: https://www.yubico.com/2016/09/yubikey-works-windows-hello/.
-
Basically, I want to unlock a user account by executing a script (while a user see's their locked screen, if this script is executed in the background, it unlocks their account without having to type in any password). In a perfect world, I would have a service running that can automatically log specific users in whether their account is locked or they just turned their computer on and no users have been logged in yet. I don't want to have anything special enabled on the computer (like the remote desktop workaround). I can provide the actual password to the account and I would like this to be compatible on Windows 7. Has anyone come across any script that can do this? If there isn't a way to unlock the computer from startup, is there at least a way to unlock the account that's currently already logged into but just has the lock screen up?
-
Hi guys, wow, it's been awhile since I was last on this forum. Anyway, I've loaded up AutoIt and opened scite to a nice surprise, Any way to get those buttons under the menu a bit bigger? Thanks
-
onlineth changed their profile photo
-
Does anyone know why the other scripts I have created don't work? $o = _IECreate() _IENavigate($o, "http://test.onlineth.x10host.com/importbuddy.php") _IELoadWait($o, 2000) $step0 = _IEGetObjByName($o, "password") $form = _IEFormGetCollection($o, 0) _IEFormElementSetValue($step0, "pass") _IEFormSubmit($form) $o = _IECreate() _IENavigate($o, "http://test.onlineth.x10host.com/importbuddy.php") _IELoadWait($o, 2000) $step0 = _IEGetObjByName($o, "password") $form = _IEFormGetCollection($o, 0) _IEFormElementSetValue($step0, "pass") $step0name = _IEGetObjByName($o, "submit") _IEEx_JSMouseEventObjByName($o, $step0name, "mouseclick") _IELoadWait($o, 2000)
-
Hmm, again, I am using this script, $o = _IECreate() _IENavigate($o, "http://test.onlineth.x10host.com/importbuddy.php") _IELoadWait($o, 2000) $step0 = _IEGetObjByName($o, "password") $form = _IEFormGetCollection($o, 0) _IEFormElementSetValue($step0, "pass") $step0name = _IEGetObjByName($o, "submit") ;_IEEx_JSMouseEventObjByName($o, $step0name, "mouseclick") $btnSubmit = _IEGetObjByName($o, "submit") _IEAction($btnSubmit, 'click') _IELoadWait($o, 2000) _IENavigate($o, "http://test.onlineth.x10host.com/importbuddy.php") However when I use the _IENavigate it does nothing. Also, I added _IEQuit which also does nothing. What version of IE are you running? I'm only asking this because I've been reading about alternatives and it seems that the update from IE10 to 11 seems to have caused much conflict (I'm running IE11). Also, do you know why the other scripts I made don't work? Thanks for help on this:)
-
It goes to the next step without any problems EDIT That's why I was exploring the other ways to see if that would work
-
Yes, but the issue is when I use _IEAction and "click", it redirects me to the index.html page (when I use the correct password) and when I try to navigate back to the /importbuddy.php it keeps redirecting back to the index.html file. If you can, put the importbuddy.php file, http://bit.ly/1H9YZNb, on a server and when you use the correct password(pass), you will see what I'm talking about.
-
ok, I think I am going to take a different route on this. First I tried using the _IEFormSubmit but I keep getting an error of "2 ($_IEStatus_COMError) - COM Error in Object reference" $o = _IECreate() _IENavigate($o, "http://test.onlineth.x10host.com/importbuddy.php") _IELoadWait($o, 2000) $step0 = _IEGetObjByName($o, "password") $form = _IEFormGetCollection($o, 0) _IEFormElementSetValue($step0, "pass") _IEFormSubmit($form) So then I tried using the IE extended library but I can't get that to work either. Here is what I have for that, $o = _IECreate() _IENavigate($o, "http://test.onlineth.x10host.com/importbuddy.php") _IELoadWait($o, 2000) $step0 = _IEGetObjByName($o, "password") $form = _IEFormGetCollection($o, 0) _IEFormElementSetValue($step0, "pass") $step0name = _IEGetObjByName($o, "submit") _IEEx_JSMouseEventObjByName($o, $step0name, "mouseclick") _IELoadWait($o, 2000) I keep getting a "7 = No Match" error for that. I am running IE11 Also, the password for the http://test.onlineth.x10host.com/importbuddy.php is not "pass" but an extremely long string so no one will be albe to install anything malicious, it's just there so you can click on the button. If you click on it you should see this message, "Invalid password. Please enter the password you provided within BackupBuddy Settings. Attempt #." Again, thanks for your help
-
Hello, I believe I have come across a bug in the _IE library. I am trying to make a script that will automatically fill's in data for a restore script for a WP site. It's called Importbuddy by IThemes and it is one of the best, if not the best, backup restore plugins for WordPress. The problem that I am having is once it is on the first step of the script, filling in the password and clicking next, it redirects me to the index.php file and when I keep trying to return to the importbuddy.php file, it keeps redirecting back to the index file. Here is the code I am using, _$o = _IECreate() _IENavigate($o, [url of ImportBuddy]) _IELoadWait($o, 2000) $step0 = _IEGetObjByName($o, "password");Password feild _IEFormElementSetValue($step0, "pass");Password of Importbuddy $Step0submit = _IEGetObjByName($o, "submit") _IEAction($Step0submit, "click") _IELoadWait($o, 2000) ;Goes to index.html, not the next step of the importbuddy Here is a link to the importbuddy.php file, http://bit.ly/1H9YZNb Please only use this file for testing, it is part of a commercial product by IThemes To keep this simple, just install a program like XAMPP to view the file. Also, the password is "pass" Does anyone have any ideas why this isn't working? As always, Thanks for your help Thomas
-
onlineth reacted to a post in a topic: Autoit Wrappers
-
onlineth reacted to a post in a topic: Turn off Recursion level
-
Thank you to both BrewManNH and jdelaney!!
-
onlineth reacted to a post in a topic: Turn off Recursion level
-
onlineth reacted to a post in a topic: Turn off Recursion level
-
Hello, I did not know how to word the title but basically my script gives me this message after a few minutes, Recursion level has been exceeded - AutoIt will quit to prevent stack overflow. How do I turn off this feature and prevent this message? Here is my script, #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Icon=upload.ico #AutoIt3Wrapper_Res_Language=1033 #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** FileInstall("D:\upload2.ico", @ScriptDir & "\upload2.ico") FileInstall("D:\upload.ico", @ScriptDir & "\upload.ico") ;$set = 0 pingfunc() Func pingfunc() $ping = Ping("google.com") If $ping = 0 or $ping = 1 or $ping = 2 or $ping = 3 or $ping = 4 Then TraySetIcon(@ScriptDir & "\upload2.ico") ;If $set = 0 Then ; MsgBox(64, "Network Offline", "Your OFFLINE!") ; $set = 1 ;EndIf pingfunc() EndIf ;If $set = 1 Then ; $set = 0 ; MsgBox(64, "Network Online", "Your ONLINE!") ;EndIf TraySetIcon(@ScriptDir & "\upload.ico") pingfunc() EndFunc ;==>pingfunc
-
onlineth joined the community
-
onlineth reacted to a post in a topic: Gui to mail
-
onlineth reacted to a post in a topic: Is it possible to stop and restart a while loop?
-
onlineth reacted to a post in a topic: Gui to mail
-
onlineth reacted to a post in a topic: Gui to mail
-
onlineth reacted to a comment on a file: Welcome to Autoit 1-2-3
-
Thank you!!
-
onlineth reacted to a post in a topic: Progress Bar | Help
-
Hi, I'm trying to see if it is possible to get a task bar icon with a progress bar Here what kind of progress bar I am using, Func Example() ; Display a progress bar window. ProgressOn("Countdown Timer", "Countdown Timer", "0%",1,1,18) ; Update the progress value of the progress bar window every second. For $i = 1 To 100 Step 1 Sleep(1000) ProgressSet($i, $i & "%") Next ; Set the "subtext" and "maintext" of the progress bar window. ProgressSet(100, "Done", "Complete") Sleep(5000) ; Close the progress window. ProgressOff() EndFunc ;==>Example Thank you so much for your help and support!!
-
How to track internet history
onlineth replied to onlineth's topic in AutoIt General Help and Support
I did not know that and I won't do that again, thank you for the explanation. -
How to track internet history
onlineth replied to onlineth's topic in AutoIt General Help and Support
Hi, thanks for the link, just wondering, what does "bumping" mean?