Documentation Center

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Support Portal
  • Home
  • Imported

Third-Party Patch Management with Ninite

Contact Us

If you have questions or want help, please Submit a Request.

Updated at Nov 22, 2024
By Dee Zepf

Related Docs

  • CloudRadial Integration
  • Domotz Integration
  • FreePBX / PBX Integrations
  • Hudu Integration
  • Huntress Integration

Note: This document has been imported from the former KB and has not yet been verified.

 

We're going to setup a simple script to do patch management with Ninite Pro Classic (their command line tool).

First, download your .exe and stick it in the "Script Shared Files" in your account.

Now create a new script and make it a PowerShell, run as system, and make sure there is a "required file" for the ninite .exe file:

https://ninite.com/help/features/selection.html

Now we can select the options we want. Ninite lets you do installs or just updates.

Example command to do installs (and this also updates the apps):

NinitePro.exe /select Firefox Skype Flash "Flash (IE)" /silent

Example command to just do an update based on a list of apps:

NinitePro.exe /list /silent apps.txt

Here is a working version in our system in PowerShell:

Script Body

Import-Module $env:SyncroModule
$Params = "/select,Firefox,Skype,Flash,Flash (IE),/silent"
$ParsedParams = $Params.Split(",")
& "C:\temp\ninite-classic.exe" $ParsedParams

Was this article helpful?

Yes
No
Give feedback about this article

The integrated platform for running a profitable MSP business

Syncro All-in-one MSP Software Facebook Syncro All-in-one MSP Software Twitter Syncro All-in-one MSP Software LinkedIn Syncro All-in-one MSP Software YouTube Syncro All-in-one MSP Software Reddit
  • Compliance
  • Privacy Policy
  • Website Terms
  • Service Terms
Knowledge Base Software powered by Helpjuice

© 2017-2024 Servably, Inc. All rights reserved.

Expand