
n1kobg
Members-
Posts
13 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
n1kobg's Achievements

Seeker (1/7)
1
Reputation
-
n1kobg reacted to a post in a topic: How can i close all apps that are running with autoit?
-
n1kobg reacted to a post in a topic: How can i close all apps that are running with autoit?
-
How can i close all apps that are running with autoit?
n1kobg replied to Starstar's topic in AutoIt General Help and Support
Oh, I see. So it has to be exe. I tried with .au3 before compile it. Thank You, man -
How can i close all apps that are running with autoit?
n1kobg replied to Starstar's topic in AutoIt General Help and Support
Thank you. Although it leaves the tray, its better than nothing. How to exclude my program here? -
argumentum reacted to a post in a topic: How can i close all apps that are running with autoit?
-
How can i close all apps that are running with autoit?
n1kobg replied to Starstar's topic in AutoIt General Help and Support
Why I just tried it i dont want to insult u -
How can i close all apps that are running with autoit?
n1kobg replied to Starstar's topic in AutoIt General Help and Support
Thanks. I use Au3Info.exe & gpuview. The script doesnt work though. Ill look into it. -
How can i close all apps that are running with autoit?
n1kobg replied to Starstar's topic in AutoIt General Help and Support
Ok, thanx. I used a different file and had to delete some lines, i missed the Endif. The thing is even without them and no syntaxed error it still doesnt work. Also if I could "help myslef" i wouldnt made the post in the first place. Its obvious Im missing something but cant figure out what it is. Sadly Im that advanced. I mean its just my 2nd program. I want to be able to stop all apps but exclude my program. im pretty sure WinGetHandle is the better way to do it but this works too. Well, almost works... I can do it with cmd but its an external tool I want to avoid. -
How can i close all apps that are running with autoit?
n1kobg replied to Starstar's topic in AutoIt General Help and Support
You just reapeat yourself. You gave me the hint & I already know its the Program Manager. My problem is idk how to exclude it. this gives me a syntax error. I use WinGetHandle to remove but its not a good solution. Also it doesnt kill programs in the tray. I think WinGetHandle is better option but have hard time on it as well. Local $var = WinList() For $i = 1 To $var[0][0] if $var[$i][0] <> "Program Manager" then WinKill($var[$i][1]) Then EndIf Next Local $hWnd = WinGetHandle("[CLASS:#32770]", "") WinClose($hWnd) Func IsVisible($handle) If BitAND(WinGetState($handle), 2) Then Return 1 Else Return 0 EndIf EndFunc ;==>IsVisible -
How can i close all apps that are running with autoit?
n1kobg replied to Starstar's topic in AutoIt General Help and Support
Yes, I understand that and assumed its progman but I guess I dont know how exactly to exclude it from WinKill () if $var[$i][0] <> "Program Manager" then WinKill($var[$i][1]) gives me error and If $var[$i][0] <> "Program Manager" And IsVisible($var[$i][1]) Then doesnt change anything What am I missing here? -
How can i close all apps that are running with autoit?
n1kobg replied to Starstar's topic in AutoIt General Help and Support
No, I havent changed anything in the script. Its what you posted. Also i dont know what you mean. Maybe Progman? How to exclude it? -
How can i close all apps that are running with autoit?
n1kobg replied to Starstar's topic in AutoIt General Help and Support
Why the old Windows Shutdown Menu apears (in the middle of the screen) with this? Any idea how not to start it. I can remove it afterwards but its not ideal. -
is there a way to add dynamic Ip?
- 432 replies
-
- encryption
- metacode
-
(and 3 more)
Tagged with:
-
The scan lasts 27 seconds and gives me a lot of potential issues (Number of *potential* issues: 165) while there should be 3 max. I tried what you suggested but same thing happens. If its not permissions what else can it be? Does it needs a certain Service or Task to work (because i have disabled a lot of them, but it works on one of my old Windows installations whith the same tweaks but its a pain to switch them constantly). Im using the latest BETA but I dont think thats the issue since it doesnt needs to work for that. I also have other problem. Debugging programs shows command promt & other Windows commands despite the encryption. I need some sort of Anti-Debugging.
- 432 replies
-
- encryption
- metacode
-
(and 3 more)
Tagged with:
-
I have a problem with CodeScannerCrypter. When I run Codescanner it usually opens directly in the current folder. That way I know its working. With the latest Windows updates it opens in This PC and when i navigate and find my file it doesnt work properly. It still do some calsulations but its way faster and it incomplete and it doesnt work. Now It doesnt even show the files in the folder. I downloaded v3.3.d from here (although it says its submitted 27 of February, this is the official link. Old versions doesnt work as well. I believe that have something to do with Windows Permissions. They started to make things difficult to run scripts since v1709 and up. And when new version comes out they implement it in lower versions Windows Updates. I have a tweaked WIndows but I try to remove the restrictions so I dont think its from that since on default Windows its the same. Anyone else with similar problem?
- 432 replies
-
- encryption
- metacode
-
(and 3 more)
Tagged with:
-
Bert reacted to a post in a topic: Hiding processes
-
n1kobg reacted to a post in a topic: Hiding processes
-
OMG why everyone is assuming that you want to hide a process for a virus?! I want to use it to hide an external exe that i start with my program, i dont want some pleb to use my files (virtualization doesnt work the way its written, or maybe idk how). I wont start with why i use external exe instead of using the script. There are a number of benefits. Now im forced not to include a window and limit it to just brief commands & AntiVirs to mark this as trojan. NICE !!!