Search found 32 matches

by shadad
07 Mar 2022, 13:01
Forum: Ask for Help (v1)
Topic: Need help with Loop (registry)! Topic is solved
Replies: 6
Views: 790

Re: Need help with Loop (registry)! Topic is solved

Hi, the snippet can't be run as is and contains at least one error. You should be able to run this version: #NoEnv SetBatchLines, -1 RegKey := "HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall" FoundApps := "" Loop, Reg, %RegKey%, K ; <<<< changed { DisplayName := DisplayVersion := InstallD...
by shadad
07 Mar 2022, 04:02
Forum: Ask for Help (v1)
Topic: Need help with Loop (registry)! Topic is solved
Replies: 6
Views: 790

Re: Need help with Loop (registry)! Topic is solved

Edit by boiler: shadad -- Sorry, I accidentally edited your post instead of replying to it and can't restore it, but here's your question and answer: can you edit the loop part and share it with me? reg loop is still i need to take time to understand it. :( just me showed how to do it in his code.
by shadad
07 Mar 2022, 03:58
Forum: Ask for Help (v1)
Topic: Need help with Loop (registry)! Topic is solved
Replies: 6
Views: 790

Re: Need help with Loop (registry)! Topic is solved

It might be more reliable to only loop over the subkeys and read the requierd values directly: RegKey := "HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall" FoundApps := "" Loop, Reg, %RegKey %, K { DisplayName := DisplayVersion := InstallDate := Publisher := "" KeyName := RegKey . "\" . A_L...
by shadad
06 Mar 2022, 01:37
Forum: Ask for Help (v1)
Topic: Need help with Loop (registry)! Topic is solved
Replies: 6
Views: 790

Need help with Loop (registry)! Topic is solved

Dear All, I finally manage to write simple script to read the software installed on the computer or remotely from the registry. it will read DisplayName , DisplayVersion, Publisher and InstallDate . however the entries are only correct at the first few lines then it get mixed up. like some times the...
by shadad
27 Feb 2022, 01:22
Forum: Ask for Help (v1)
Topic: COM - IEnumInstalledApps Remotly!
Replies: 0
Views: 313

COM - IEnumInstalledApps Remotly!

Hi there :) I have a GUI long script of granting Admin on remote systems which i need to include ability to retrieve a list of installed application on the target system. i have played with Powershell and i have one command which is working fine but taking time to give the feedback beside i need to ...
by shadad
28 Jul 2021, 05:31
Forum: Ask for Help (v1)
Topic: need help to download one link among many links on a Http site Topic is solved
Replies: 5
Views: 520

Re: need help to download one link among many links on a Http site Topic is solved

[/quote] here is a solution, made it real quick but it will give you the idea. file := "core3sdssepv5i64" html := URLDownloadToVar("https://definitions.symantec.com/defs/download/symantec_enterprise/index.html") document := ComObjCreate("HTMLfile") document.write("<meta http-equiv=""X-UA-Compatible"...
by shadad
28 Jul 2021, 04:47
Forum: Ask for Help (v1)
Topic: need help to download one link among many links on a Http site Topic is solved
Replies: 5
Views: 520

Re: need help to download one link among many links on a Http site Topic is solved

a better solution is probably a regex that matches the name and returns the full url. file := "core3sdssepv5i64" html := URLDownloadToVar("https://definitions.symantec.com/defs/download/symantec_enterprise/index.html") document := ComObjCreate("HTMLfile") document.write("<meta http-equiv=""X-UA-Com...
by shadad
28 Jul 2021, 02:06
Forum: Ask for Help (v1)
Topic: need help to download one link among many links on a Http site Topic is solved
Replies: 5
Views: 520

Re: need help to download one link among many links on a Http site Topic is solved

a better solution is probably a regex that matches the name and returns the full url. file := "core3sdssepv5i64" html := URLDownloadToVar("https://definitions.symantec.com/defs/download/symantec_enterprise/index.html") document := ComObjCreate("HTMLfile") document.write("<meta http-equiv=""X-UA-Com...
by shadad
28 Jul 2021, 00:48
Forum: Ask for Help (v1)
Topic: need help to download one link among many links on a Http site Topic is solved
Replies: 5
Views: 520

need help to download one link among many links on a Http site Topic is solved

Hi there :) I made a simple Powershell script allow me to Download the latest definition file from Symantec. its basically search about the newest/ recent file that contain the name "core3sdssepv5i64.exe" then get its link and start download it. simple and easy as below : # Find latest installer $ur...
by shadad
18 Feb 2019, 05:54
Forum: Off-topic Discussion
Topic: Tools for PC Technicians / Network Administrators
Replies: 13
Views: 6948

Re: Tools for PC Technicians / Network Administrators

the link is down.

any new link for this amazing tool?
by shadad
04 Dec 2018, 05:08
Forum: Ask for Help (v1)
Topic: Searching specific words inside dialog window!
Replies: 13
Views: 3072

Re: Searching specific words inside dialog window!

That last screenshot shows what I was looking for, it's in the top part of the Window Spy window, see if you can find what I mean. Here's some code (please note, if the window is running as admin, your script may need to run as admin to get information from it, if it's possible at all) Thanks man. ...
by shadad
04 Dec 2018, 02:12
Forum: Ask for Help (v1)
Topic: Searching specific words inside dialog window!
Replies: 13
Views: 3072

Re: Searching specific words inside dialog window!

I think the goal was to get the Window Spy to show information about the 'Windows Security' window, but you ended up checking the 'Accessible Info Viewer' window instead... I made sure the active window is the 'Windows Security' that time and included the 'Accessible Info Viewer' as add. but here i...
by shadad
04 Dec 2018, 01:08
Forum: Ask for Help (v1)
Topic: Searching specific words inside dialog window!
Replies: 13
Views: 3072

Re: Searching specific words inside dialog window!

Glad to hear it! :oops: Hmmmm, when you run the script, you should see a green square with a white H in it. Right-click it and select "Window Spy". Then make the "Windows Security" window active, and make a screen shot of the Window Spy window. Here you go. Thanks for your effort :oops: https://s1....
by shadad
03 Dec 2018, 06:58
Forum: Ask for Help (v1)
Topic: Searching specific words inside dialog window!
Replies: 13
Views: 3072

Re: Searching specific words inside dialog window!

Make a new script, add the following and run it. When it's running, press F8 when the Widows Security window is active: #persistent DetectHiddenWindows, On ; we need this to get the text that is not in the title of the window SetTitleMatchMode, 3 ; wintitle must match EXACTLY text_initial := "Windo...
by shadad
03 Dec 2018, 00:33
Forum: Ask for Help (v1)
Topic: Searching specific words inside dialog window!
Replies: 13
Views: 3072

Re: Searching specific words inside dialog window!

https://s1.gulfupload.com/i/00065/kqymxhc5h35q.png You are doing {raw} and then %pass%, that won't work.... unless your password is literally %pass% ;) In regard to only entering the details in that specific window, you should look for hidden text as well, make sure that is the same. Window spy is ...
by shadad
02 Dec 2018, 04:05
Forum: Ask for Help (v1)
Topic: Searching specific words inside dialog window!
Replies: 13
Views: 3072

Searching specific words inside dialog window!

Hi there, am writing a short script to look for specific window title before executing coping the user name and the password to the window. i manage to lock the window by using the "if WinActive( "Windows Security" )" and that fixed like 90% of my aim. however, i want to know if there is a way to se...
by shadad
20 Nov 2018, 23:52
Forum: Ask for Help (v1)
Topic: Combo box with input Topic is solved
Replies: 2
Views: 1490

Re: Combo box with input Topic is solved

You may want to do a sort on the combo box items to make the list easier to read. Gui, Add, Text,,Operator Name IniRead, cbList, list.ini, list, list ,name1|name2|name3|name4 Gui, Add, ComboBox, vCB, %cbList% Gui, Add, Button, Default, Save Gui, Add, Button, x+10, Close Gui, Show,,Operator Name ret...
by shadad
19 Nov 2018, 04:27
Forum: Ask for Help (v1)
Topic: Combo box with input Topic is solved
Replies: 2
Views: 1490

Combo box with input Topic is solved

Hi there, am trying to achieve a GUI with comboBox with Edit. just like the window below for the VNC Viewer app. saving only 5 records on the list and sending a msg box saying the selection i chose or i wrote. i want to be able either to select from the menu or input my record. also i want to be abl...
by shadad
21 Aug 2018, 13:15
Forum: Ask for Help (v1)
Topic: Compile_AHK II. where is the resource?! Topic is solved
Replies: 2
Views: 826

Re: Compile_AHK II. where is the resource?! Topic is solved

swagfag wrote:FileInstall
Simply, KickAss reply bro! looked the command above and found the rest myself. thank you.

Code: Select all

FileInstall, 123.gif, %TEMP%\123.gif, 1
then after i finish loading it and my work done with it, i deleted it later :

Code: Select all

FileDelete, %TEMP%\123.gif
Thanks man 8-) :bravo:
by shadad
21 Aug 2018, 08:10
Forum: Ask for Help (v1)
Topic: Compile_AHK II. where is the resource?! Topic is solved
Replies: 2
Views: 826

Compile_AHK II. where is the resource?! Topic is solved

Hi there, I have put my hand on this valuable AHK to EXE conversion. its great! https://autohotkey.com/boards/viewtopic.php?f=6&t=16061 but i have a GIF and sound file that i want to know how to call it if i attach it on the resources. i searched every where but i couldn't found the answer. i tried ...

Go to advanced search