Search found 70 matches

by Elesar
11 May 2021, 10:22
Forum: KeySharp
Topic: Keysharp - the resurrection of IronAHK
Replies: 216
Views: 92442

Re: Keysharp - the resurrection of IronAHK

Just found this, very interested in helping with testing & possibly code when publicly available. I've been a long time AHK user, but haven't really used it much in the ~2 years since I changed to Linux as my primary OS. Still used a bit at work (Network Eng. & Server Admin), but haven't really writ...
by Elesar
08 Sep 2017, 12:10
Forum: Ask for Help (v1)
Topic: Where is built-in script recorder Topic is solved
Replies: 3
Views: 28124

Re: Where is built-in script recorder Topic is solved

I believe the last time that was included was in version 1.0.48 from about 8 years ago. This will not fully work with the current version of AHK, and support for any scripts made with it will be limited as that version is missing quite a bit of the recent features and optimizations. The previously m...
by Elesar
31 Aug 2017, 09:13
Forum: Ask for Help (v1)
Topic: Best way to get the path to an executable Topic is solved
Replies: 13
Views: 8617

Re: Best way to get the path to an executable Topic is solved

I haven't looked into that DLL specifically, but is there a reason you are calling it instead of AHK's built in commands for file version (FileGetVersion) and file size (FileGetSize)? Does it return more information than AHK's functions?
by Elesar
30 Aug 2017, 16:03
Forum: Ask for Help (v1)
Topic: Best way to get the path to an executable Topic is solved
Replies: 13
Views: 8617

Re: Best way to get the path to an executable Topic is solved

Some items that ship with Windows will be on the PATH, making them easy to access. For Calculator, you can simply have a line in AHK that says "run calc" and that will start Calculator. Doesn't work with Mail, but you can locate the directory via Registry in this case: HKLM\SOFTWARE\WOW6432Node\Micr...
by Elesar
30 Aug 2017, 14:45
Forum: Ask for Help (v1)
Topic: Best way to get the path to an executable Topic is solved
Replies: 13
Views: 8617

Re: Best way to get the path to an executable Topic is solved

If you are looking for a installed application, you can read the registry entry related to the program and find it's location. Normally you could look for the uninstall string then cut that down to the root folder of the application and build your paths from there.
by Elesar
22 Oct 2016, 12:02
Forum: Scripts and Functions (v1)
Topic: [game] poek - a random adventure
Replies: 21
Views: 9564

Re: [game] poek - a random adventure

tidbit wrote:What OS/IE version do you have? getElementsByClassName() was added in ie9. It won't work in anything less (windows xp)
I get the same thing :(

Win 10 Pro v1607
IE v11.321.14393.0
by Elesar
14 Oct 2016, 12:34
Forum: Off-topic Discussion
Topic: Windows 10 can't handle big windows...?
Replies: 17
Views: 7130

Re: Windows 10 can't handle big windows...?

Windows 10 Pro v1607 here. Confirmed that this crashes my system as well. I don't get kicked to login screen, but it does crash my drivers and kicks me down to a single monitor. I don't have any issue with windows at my total resolution, or even a few hundred pixels over my total res. Currently runn...
by Elesar
14 Oct 2016, 09:43
Forum: Scripts and Functions (v1)
Topic: Server Monitor (GUI Ping Tool with RDP and TRACERT)
Replies: 41
Views: 18819

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

just me & jNizM: Thanks for the replies. Super busy at work the last couple of days, but I'll look at everything this weekend.
by Elesar
12 Oct 2016, 09:11
Forum: Scripts and Functions (v1)
Topic: Server Monitor (GUI Ping Tool with RDP and TRACERT)
Replies: 41
Views: 18819

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

I am considering adding my ReverseLookup script into this too. e.g. 8.8.8.8 -> google-public-dns-a.google.com jNizm: I would appreciate a reverse lookup option, as the PingMsg script is also used in another script I am writing, and it relies on that functionality. That script is currently still usi...
by Elesar
11 Oct 2016, 08:50
Forum: Scripts and Functions (v1)
Topic: Server Monitor (GUI Ping Tool with RDP and TRACERT)
Replies: 41
Views: 18819

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

jNizM, the issue is with more than just external websites. Computers on my LAN that I CAN ping in console will randomly not resolve their names, or not return. I have tested this quite extensively now and am confident that the Ping4 function is where the issue is, now its just a matter of trying to ...
by Elesar
11 Oct 2016, 08:19
Forum: Scripts and Functions (v1)
Topic: Ping4 - IPv4 ping function (2015-07-16)
Replies: 14
Views: 14524

Re: Ping4 - IPv4 ping function (2015-07-16)

I'm using this function in my Host Monitor script (https://github.com/DThomas44/Host-Monitor), and we are noticing that there are issues with name resolution compared to just doing ping or nslookup in the console, and several hosts will randomly give a bad return even if we have a running ping -t ag...
by Elesar
11 Oct 2016, 08:02
Forum: Scripts and Functions (v1)
Topic: Server Monitor (GUI Ping Tool with RDP and TRACERT)
Replies: 41
Views: 18819

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

Yes, I've noticed the same name resolution issues since changing to the Ping4 function. I'm trying to find how to improve it's reliability, as it is quite a bit faster. If anybody know anything about Winsock and cares to take a look, please do. I'll post in the thread for that function as well to se...
by Elesar
10 Oct 2016, 16:50
Forum: Scripts and Functions (v1)
Topic: Server Monitor (GUI Ping Tool with RDP and TRACERT)
Replies: 41
Views: 18819

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

A couple questions, as I can't decide on how I want to do a few things: Should logging be per session, per host, or per host & per session? Only warnings & errors will be logged for the normal window. On the graph window, if logging is enabled, should it be a full log, or only warnings/errors? I'm t...
by Elesar
10 Oct 2016, 11:35
Forum: Scripts and Functions (v1)
Topic: Server Monitor (GUI Ping Tool with RDP and TRACERT)
Replies: 41
Views: 18819

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

repo updated:
Finished implementing Ping4() as well as put in FlushDNS()
Removed reload requirement for a couple of settings
Added screenshots to the README.md
by Elesar
10 Oct 2016, 09:08
Forum: Scripts and Functions (v1)
Topic: Server Monitor (GUI Ping Tool with RDP and TRACERT)
Replies: 41
Views: 18819

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

jNizM: Thanks, I'll work on getting that changed out. I did change over to the Ping4 function yesterday in my test branch, but am having some issues with IP -> Name resolution. It isn't really used in this script, but I have another script that uses the same PingMsg.ahk file that relies heavily on i...
by Elesar
07 Oct 2016, 17:11
Forum: Scripts and Functions (v1)
Topic: Server Monitor (GUI Ping Tool with RDP and TRACERT)
Replies: 41
Views: 18819

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

Ok, I think I have the whole github thing figured out. I'll update with a link when I get home. I re-worked some stuff in receiving messages that looks to have improved reliability quite a bit, though I haven't tested very in depth yet. Still getting a few missed messages. Changed the yellow box to ...
by Elesar
07 Oct 2016, 08:14
Forum: Scripts and Functions (v1)
Topic: Server Monitor (GUI Ping Tool with RDP and TRACERT)
Replies: 41
Views: 18819

Re: Server Monitor (GUI Ping Tool with RDP and TRACERT)

This is maybe interesting for you guys -> Ping4 - IPv4 ping function How about host on github? Thanks, I'll look into that function. As for github...if I can manage to wrap my head around the workflow this time, sure. I've tried source code management systems in the past and it always ends up with ...

Go to advanced search