Maintenance is being performed on Zoom's support site on November 4 that may cause support impact. For more information, please click here.
Everything you need to work together, all in one place.
Explore Zoom One's Collaboration ToolsConnect virtually from anywhere with Zoom Meetings
Collaborate together with Zoom Chat
Call the world with Zoom Phone
Create and brainstorm with Zoom Whiteboard
Rich conversation analytics to improve sales
Send and receive messages and calendar invitations
Bring fluid interactions to hybrid teams with Zoom Huddles
Remove the hassle of traditional scheduling with Zoom Scheduler
Innovative video solutions for every meeting space.
Bring meeting spaces online with Zoom Rooms
Conference Room Connector links existing rooms to Zoom
Innovative solutions for every space
Solutions to host impactful virtual and hybrid experiences.
Find a Solution for Every EventHost hybrid and virtual events with Zoom Events
Elevate your brand with single session events powered by Zoom Sessions
Broadcast at scale with Zoom Webinars
Host and attend classes, group events, and more OnZoom
An omnichannel cloud solution optimized for video.
Engage customers with Zoom Contact Center
Deliver intelligent support with conversational AI
Optimize contact center agent performance and engagement
Zoom solutions elevate collaboration across vertical use cases.
Discover Zoom Industry SolutionsEnabling exciting new ways to teach, learn, and connect globally
Transforming client engagement and employee experiences
Improving collaboration between agencies, ministries and constituents
Connecting care, collaboration, and medical innovation
Real-time communication, anywhere in the world
Bridging the in-store and online experiences
Expert support and services for all your design, strategy, implementation, event, and hardware needs.
Global Services
Hardware purchase and subscription options
Flexible subscription plans for hardware
Protect certain data at rest with your own encryption keys
An open platform that allows developers to build Zoom apps and integrations.
Explore thousands of apps that work with or within Zoom
Documentation for building with Zoom's technology using SDKs, APIs, and webhooks
Post your questions and get help from our developer community
Zoom Partners bring Zoom's communications platform to market through alliance, sales, and service partnerships.
Explore Zoom's technology ecosystem
Find a trusted Partner
Learn about Zoom's Partner Programs
Access marketing & sales resources
Login to the Partner Portal and click 'Learn'
Discover new ways to use Zoom solutions to power your modern workforce.
Access expert-led tutorials on Zoom products and features.
Network with other Zoom users, and share your own product and industry insights.
Get documentation on deploying, managing, and using the Zoom platform.
Keep your Zoom client up to date to access the latest features.
Download CenterDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds2021-12-22 09:18 AM
Hi,
I have an Intune LOB MSI setup with:
/quiet /norestart ZoomAutoUpdate="true" ZConfig="EnableSilentAutoUpdate=1;ZoomAutoStart=1"
I added ZoomAutoStart after I first deployed though. I've since pushed a few updated MSIs and they deployed okay, but the ZoomAutoStart setting isn't taking effect. Zoom isn't starting on boot. Are the config options only applied if it's the first time installing?
Cheers.
Solved! Go to Solution.
2021-12-29 03:56 PM
So the solution is to pull AutoStart from ZConfig? The documentation says "To enable additional options, append the ZConfig parameter to the end of your install choice.". That's why I added it there - because I already have ZoomAutoUpdate as an option...
2021-12-29 11:00 AM
Hello @dfairley,
My name is Brandon. Thanks for joining the Zoom Community!
EnableAutoUpdate
For EXE, it is true by default
For MSI, it is false by default
The app will not auto-update if the current Zoom version is higher than the stable global version and lower than the latest version. Only if the user clicks “check for updates, “the app will update. If the Zoom version is lower than the global stable version, the user will see an updated banner on the Zoom app home tab. If the user doesn’t click update it, Zoom will auto-update to the stable version when the user restarts the Zoom app.
Try this script here
{ msiexec /i ZoomInstallerFull.msi ZoomAutoUpdate=true ZConfig="EnableSilentAutoUpdate=true }
Default policy is enabled.
This policy depends on EnableClientAutoUpdate, if EnableClientAutoUpdate is disabled, EnableSilentAutoUpdate will not work, even if it is enabled. (For msi package, EnableClientAutoUpdate is disabled by default. For exe, it is enabled)
If this policy is enabled, client will auto update itself silently.
If this policy is disabled, client will auto update itself and prompt users the update dialog.
If this policy is not set, client will use the default setting.
Let me know if the results are useful for your MSI needs for your users.
I hope that this is helpful.
B!
2021-12-29 11:03 AM
Sorry, I forgot about your AutoStart question as well. I assume that you know this but just want to be thorough.
Auto-start with Windows: Disabled by default. To enable, append ZoomAutoStart="true" to the end of your install choice.
Example: { msiexec /package ZoomInstallerFull.msi /lex zoommsi.log ZoomAutoStart="true" }
2021-12-29 03:56 PM
So the solution is to pull AutoStart from ZConfig? The documentation says "To enable additional options, append the ZConfig parameter to the end of your install choice.". That's why I added it there - because I already have ZoomAutoUpdate as an option...