Advice Request Which Apps Updater do you use?

Please provide comments and solutions that are helpful to the author of this topic.

Sorrento

Level 9
Verified
Well-known
Dec 7, 2021
402
Tried Patch My PC, (again) it found 3 programs to update, two were redistributable that were the same as on but numbered differently & SM Player I already know about - Sumo detects 40 programs - Patch 18 programs, worth keeping as it uses little space.
 

Attachments

  • Sumo.png
    Sumo.png
    265.8 KB · Views: 180
Last edited:

eXDj

Level 12
Verified
Aug 2, 2015
573
for portable why when scan result it is 508 softwares ?
why not scan only install apps ?
latest portable version 5.14.10 !!!
...
i need to delet portable and re-download,portable update it is not specific tutorial on kcsoftwares site !
...
when it is new discount for SUMo ?
 
Last edited:

TairikuOkami

Level 35
Verified
Top Poster
Content Creator
Well-known
May 13, 2017
2,487
I started to use winget, it seems to include way more apps now. It is as simple as running:
Code:
winget upgrade --all

capture_02192022_162125.jpg

It can be even used to automatically install all apps on the fresh install as long as you have exported them before.
Code:
winget export -o D:\OneDrive\Setup\winget.txt
winget import -i D:\OneDrive\Setup\winget.txt
Code:
{
    "$schema" : "https://aka.ms/winget-packages.schema.2.0.json",
    "CreationDate" : "2022-02-17T00:07:36.153-00:00",
    "Sources" :
    [
        {
            "Packages" :
            [
                {
                    "PackageIdentifier" : "M2Team.NanaZip"
                },
                {
                    "PackageIdentifier" : "Discord.Discord"
                },
                {
                    "PackageIdentifier" : "Microsoft.Edge"
                },
                {
                    "PackageIdentifier" : "Microsoft.EdgeWebView2Runtime"
                },
                {
                    "PackageIdentifier" : "Microsoft.OneDrive"
                },
                {
                    "PackageIdentifier" : "ShiningLight.OpenSSL.Light"
                },
                {
                    "PackageIdentifier" : "Daum.PotPlayer"
                },
                {
                    "PackageIdentifier" : "CreativeTechnology.SoundBlasterCommand"
                },
                {
                    "PackageIdentifier" : "SumatraPDF.SumatraPDF"
                },
                {
                    "PackageIdentifier" : "BiniSoft.WindowsFirewallControl"
                },
                {
                    "PackageIdentifier" : "WiseCleaner.WiseDiskCleaner"
                },
                {
                    "PackageIdentifier" : "WiseCleaner.WiseRegistryCleaner"
                },
                {
                    "PackageIdentifier" : "XnSoft.XnView.Classic"
                },
                {
                    "PackageIdentifier" : "qBittorrent.qBittorrent"
                },
                {
                    "PackageIdentifier" : "Microsoft.VC++2010Redist-x64"
                },
                {
                    "PackageIdentifier" : "Microsoft.VC++2015-2022Redist-x64"
                },
                {
                    "PackageIdentifier" : "Microsoft.VC++2008Redist-x64"
                },
                {
                    "PackageIdentifier" : "Microsoft.VC++2005Redist-x86"
                },
                {
                    "PackageIdentifier" : "ShiningLight.OpenSSL.Light"
                },
                {
                    "PackageIdentifier" : "TheDocumentFoundation.LibreOffice"
                },
                {
                    "PackageIdentifier" : "Microsoft.VC++2008Redist-x86"
                },
                {
                    "PackageIdentifier" : "AOMEI.Backupper"
                },
                {
                    "PackageIdentifier" : "Microsoft.VC++2010Redist-x86"
                },
                {
                    "PackageIdentifier" : "Microsoft.VC++2005Redist-x64"
                }
            ],
            "SourceDetails" :
            {
                "Argument" : "https://winget.azureedge.net/cache",
                "Identifier" : "Microsoft.Winget.Source_8wekyb3d8bbwe",
                "Name" : "winget",
                "Type" : "Microsoft.PreIndexed.Package"
            }
        }
    ],
    "WinGetVersion" : "1.2.3411-preview"
}
 
Last edited:

shukla44

Level 13
Verified
Top Poster
Well-known
Jan 14, 2016
601
I used PatchMyPC till it broke and stopped updating apps properly. So I just use Softpedia's email notifications and downloads.
Softpedia email notifications & SUMo free for me.
Softpedia updates are automatic (in notification :sneaky:) & SUMo is manual.
Both these cover every software on my PC. ;)

EDIT: SUMo is incompatible with kaspersky, Still i ignore Kaspersky recommendation for deletion.

Screenshot000119.jpg
 
Last edited:

Kyle_Katarn

From KC Softwares
Verified
Developer
Sep 28, 2013
585
for portable why when scan result it is 508 softwares ?
why not scan only install apps ?
latest portable version 5.14.10 !!!
...
i need to delet portable and re-download,portable update it is not specific tutorial on kcsoftwares site !
...
when it is new discount for SUMo ?

I'll send a discount by PM to you.
 
  • Like
Reactions: Sorrento

HarborFront

Level 71
Verified
Top Poster
Content Creator
Oct 9, 2016
6,033
1645712438235.png


@Kyle_Katarn

Your latest version (and previous versions) of SUMo has some issues identifying some programs

1) Portable Librewolf of mine is already 97.0.1 version but SUMo reports as 96.x.x
2) ExpressVPN is still at 10.17.0.28 but SUMo reports a newer version 10.19.0.7 available
 
Last edited:

n8chavez

Level 17
Well-known
Feb 26, 2021
818
I started to use winget, it seems to include way more apps now. It is as simple as running:
Code:
winget upgrade --all

View attachment 264473

Yuuuup. I just read about this somewhere else, and it seems awesome. Just create a script that calls "winget upgrade --all" (run as admin) and you're done. Updating couldn't be easier. How long has this been around?

Code:
@echo off
 
powershell.exe -ExecutionPolicy Unrestricted -Command ". 'C:\SCRIPT.ps1'"
 
TIMEOUT /T 5

.bat file to call powershell

Code:
winget upgrade --all

exit

.ps1 file referrenced in above .bat file. Just execute the bat and you're done!
 
Last edited:

roger_m

Level 41
Verified
Top Poster
Content Creator
Dec 4, 2014
3,029
@n8chavez I made a batch file with just one line.
Code:
winget.exe upgrade --all
I named it winget.bat, so I had to change winget to winget.exe, otherwise it would just run my batch file again, rather than loading winget.exe.
 

n8chavez

Level 17
Well-known
Feb 26, 2021
818
@n8chavez I made a batch file with just one line.
Code:
winget.exe upgrade --all
I named it winget.bat, so I had to change winget to winget.exe, otherwise it would just run my batch file again, rather than loading winget.exe.

But using this method the powershell execution policy can be a problem, based on users' settings. That's why I needed the two. Thanks though.
 
  • +Reputation
Reactions: roger_m

Kyle_Katarn

From KC Softwares
Verified
Developer
Sep 28, 2013
585
View attachment 264596

@Kyle_Katarn

Your latest version (and previous versions) of SUMo has some issues identifying some programs

1) Portable Librewolf of mine is already 97.0.1 version but SUMo reports as 96.x.x
2) ExpressVPN is still at 10.17.0.28 but SUMo reports a newer version 10.19.0.7 available
1) Please contact me (email : contact [AT] kcsoftwares.com or PM) for analysis
2) 10.19.0.7 is indeed current :)
 
  • Like
Reactions: harlan4096

About us

  • MalwareTips is a community-driven platform providing the latest information and resources on malware and cyber threats. Our team of experienced professionals and passionate volunteers work to keep the internet safe and secure. We provide accurate, up-to-date information and strive to build a strong and supportive community dedicated to cybersecurity.

User Menu

Follow us

Follow us on Facebook or Twitter to know first about the latest cybersecurity incidents and malware threats.

Top