Jump to content

Does this program exist, and if not, who can code it?

Hey all! 

 

I am a computer tech for a company, and the majority of people who drop off computers need a virus scan. Now, we use MalwareBytes, Adaware, and CCLeaner to hit most of the junk that would be on a homeowners PC. 

 

My question to you all is, is there a program that can wrap all 3 of these programs into one, so I can install and run all of them by either just plugging in the flash drive, or by maybe clicking an EXE file? 

 

If not, is it possible to code? 

 

Thanks!

Link to post
Share on other sites

3 minutes ago, GuyGalaxy said:

Hey all! 

 

I am a computer tech for a company, and the majority of people who drop off computers need a virus scan. Now, we use MalwareBytes, Adaware, and CCLeaner to hit most of the junk that would be on a homeowners PC. 

 

My question to you all is, is there a program that can wrap all 3 of these programs into one, so I can install and run all of them by either just plugging in the flash drive, or by maybe clicking an EXE file? 

 

If not, is it possible to code? 

 

Thanks!

Yess its possible!!

I mean ninite does it

Desktop - Corsair 300r i7 4770k H100i MSI 780ti 16GB Vengeance Pro 2400mhz Crucial MX100 512gb Samsung Evo 250gb 2 TB WD Green, AOC Q2770PQU 1440p 27" monitor Laptop Clevo W110er - 11.6" 768p, i5 3230m, 650m GT 2gb, OCZ vertex 4 256gb,  4gb ram, Server: Fractal Define Mini, MSI Z78-G43, Intel G3220, 8GB Corsair Vengeance, 4x 3tb WD Reds in Raid 10, Phone Oppo Reno 10x 256gb , Camera Sony A7iii

Link to post
Share on other sites

9 minutes ago, GuyGalaxy said:

Hey all! 

 

I am a computer tech for a company, and the majority of people who drop off computers need a virus scan. Now, we use MalwareBytes, Adaware, and CCLeaner to hit most of the junk that would be on a homeowners PC. 

 

My question to you all is, is there a program that can wrap all 3 of these programs into one, so I can install and run all of them by either just plugging in the flash drive, or by maybe clicking an EXE file? 

 

If not, is it possible to code? 

 

Thanks!

Don't have access to a computer so I can't write it for you, but a batch script would work. You should be able to write a simple script that would run all tree of those programs. 

******If you paste in text into your post, please click the "remove formatting" button for night theme users.******

CPU- Intel 6700k OC to 4.69 Ghz GPU- NVidia Geforce GTX 970 (MSI) RAM- 16gb DDR4 2400 SSD-2x500gb samsung 850 EVO(SATA) Raid 0 HDD- 2tb Seagate Case- H440 Red w/ custom lighting Motherboard - MSI Z170 Gaming A OS- Windows 10 Mouse- Razer Naga Epic Chroma, Final Mouse 2016 turney proKeyboard- Corsair k70 Cherry MX brown

Link to post
Share on other sites

Installing and running are 2 different things. Ninite will let you install all 3 programs at once, but to execute them needs to be coded manually. The other thing is some of them conflicts each other so when one is done scanning, it can automatically kick out the other scanner. Adwcleaner closes off Malwarebytes.

 

 

 

Link to post
Share on other sites

1 hour ago, SSL said:

Probably a batch script.

batch with a loop to check if the EXE is still running maybe? that way we only get only going at a time. 

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to post
Share on other sites

Thanks for showing me Ninite, its a cool little tool! 

 

However, It doenst have CCleaner as a program option. 

 

If anyone can put together a file that automatically runs something as powerful as ccleaner, malwarebtes, and adaware all at once, you would be the real MVP. 

Link to post
Share on other sites

18 hours ago, GuyGalaxy said:

Thanks for showing me Ninite, its a cool little tool! 

 

However, It doenst have CCleaner as a program option. 

 

If anyone can put together a file that automatically runs something as powerful as ccleaner, malwarebtes, and adaware all at once, you would be the real MVP. 

as @SSL said you can use a batch script to start programs.

@echo off
start "C:\Program Files\CCleaner\CCleaner64.exe"
exit

save as name.bat and run it. just add all the programs you want to run. I will say that this will open all the programs at one time. Ideally you would want it to wait then move onto the next one this saves on CPU useage and should make it all run faster.

 

@echo off 
CD "C:\Program File\Program"
NameOfExe.exe
CD "C:\Program File\Program2"
Exe2.exe
exit

This second script will wait for the first program to be closed before moving onto the second one.

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to post
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now

×