Is it possible to apply patch updates for third-party applications?Solved

Participant
Discussion
3 days ago

Hey folks! Any ideas on how to apply patch updates for third-party applications? Right now, my team manually uploads new packages for updates, so it’s a pretty challenging and hands-on process.

Replies (12)

Marked SolutionPending Review
Participant
3 days ago
Marked SolutionPending Review

Hi, have you tried using Windows Package Managers, such as winget to handle the third-party app updates?

Marked SolutionPending Review
Participant
3 days ago
Marked SolutionPending Review

No, I don’t think we have used any such tools.

Marked SolutionPending Review
Participant
3 days ago
Marked SolutionPending Review

winget is a command-line tool provided by Microsoft that supports installing, updating, and managing software. It’s a solid option if you prefer a straightforward command-line approach.

Marked SolutionPending Review
Participant
3 days ago
Marked SolutionPending Review

This could help us out. How exactly does this work?

Marked SolutionPending Review
Participant
2 days ago
Marked SolutionPending Review

First, you’ll need to check if winget is installed on your device. You can do this by running the winget –version command in PowerShell. Once you have ensured that winget is installed, you can start using it to update your apps. You can run the command winget upgrade –all to update all the apps with available patches.

winget cmdlet running in Powershell on Windows device.

Marked SolutionPending Review
Participant
2 days ago
Marked SolutionPending Review

Thanks! I was wondering, can I use it to update specific apps too, or is it just all at once? Also, is it possible to upgrade all apps except one?

Marked SolutionPending Review
Participant
1 day ago
Marked SolutionPending Review

Yeah, you can update individual apps as well. First, run winget list to see all your installed apps and their application IDs. Then, to update a specific app, just use the command winget upgrade or if it’s not installed yet, winget install . Similarly for uninstalling, you can use winget uninstall . Before running the upgrade, use winget pin to exclude the app you don’t want to upgrade.

Marked SolutionPending Review
Participant
1 day ago
Marked SolutionPending Review

One more thing, I don’t need the notifications to pop up every time I install anything, is there any way to install application in silent mode?

Marked SolutionPending Review
Participant
18 hours ago
Marked SolutionPending Review

You can use –h or — silent with winget install command to suppress all UI and run the installer in silent mode.

Marked SolutionPending Review
Participant
16 hours ago
Marked SolutionPending Review

Got it, that makes sense. I’ll give it a try and see how it works with our setup! Thanks for the help.

Marked SolutionPending Review
Participant
14 hours ago
Marked SolutionPending Review

Anytime! Let me know if you run into any issues. It’s a great tool once you get the hang of it.

Marked SolutionPending Review
Participant
12 hours ago
Marked SolutionPending Review

By the way, if you run winget show command against the app ID, you can view the download URL along with the metadata associated with the application. It’s highly recommended to check this out so you can verify it’s the proper source and not some untrustworthy download. This way, you can ensure that the application update is coming from the right place and avoid any potential security risks.