cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3233
Views
0
Helpful
3
Replies

Suppressing check for updates

faisalyali
Level 4
Level 4

Hi Team,

One of the issues we’ve identified with the Cisco Proximity app is the way that it checks for updates and nags the user to install—we would like a way to suppress these update checks so that we can deploy updates silently as needed. we have found that the .msi installer for the Windows app has been updated to allow suppression of auto-updates; has this ability also been added to the Mac app? is  there’s a way to do this?

 

For reference: https://supportforums.cisco.com/t5/mobile-applications-documents/windows-mass-deployment-guide-new-as-of-version-2-0-8/ta-p/3314009

 

Regards

Faisal

1 Accepted Solution

Accepted Solutions

mneergaa
Cisco Employee
Cisco Employee
There is a settings plist file under Library/Preferences where you can set the disableAutoUpgrade key. When deploying the app, use PlistBuddy to add the setting if the file exists, or deploy a plist file with only that setting if there isn't one.

View solution in original post

3 Replies 3

mneergaa
Cisco Employee
Cisco Employee
There is a settings plist file under Library/Preferences where you can set the disableAutoUpgrade key. When deploying the app, use PlistBuddy to add the setting if the file exists, or deploy a plist file with only that setting if there isn't one.

Perfect, thanks a lot

Thanks for your response, I found the plist file and the content is below, there is no setting for Autoupgrade, can you please modify it in your reply to suppress the auto upgrade? 

Thanks

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>EulaAccepted</key>
<true/>
<key>FirstTimeExperienceCompleted</key>
<true/>
<key>UpgradeChannel</key>
<string>Stable</string>
<key>autostart</key>
<false/>
<key>lastInfo</key>
<string>1540822705321</string>
<key>lastPresentationStart</key>
<string>1541427394969</string>
<key>recents</key>
<string>[{"name":"****","time":1541077236,"type":4,"uri":"*********"}]</string>
</dict>
</plist>