SCCM – SCUP Database with multiple users

Hey, here’s Martin again 🙂

When you use System Center Update Publisher together with System Center Configuration Manager (even 2007 or 2012), you will get to the Trouble, that when multiple Users want use SCUP, they all got their own Database in their Profile Directory.  This means, that other users don’t see, which Updates are already been published by another user.

There is a possibility to share the database:
Modify the Scup2011.exe.config file, which resides inside the SCUP Installation Folder the following way:
Original:
<applicationSettings>
  <Scup.Properties.Settings>
    <setting name="SSCEDataFile" serializeAs="String">
      <value />
    </setting>
  </Scup.Properties.Settings>
</applicationSettings>

To this, where the Folder should be your designated place for the SCUP DB:
<applicationSettings>
  <Scup.Properties.Settings>
    <setting name="SSCEDataFile" serializeAs="String">
      <value>D:\Program Files\SCUP2011\Database\scupdb.sdf</value>
    </setting>
  </Scup.Properties.Settings>
</applicationSettings>

Hope this helps.

/Edit: Credits to Zander Roger who discovered this about 2 years ago… (http://myitforum.com/cs2/blogs/rzander/archive/2011/05/30/scup-2011-with-shared-database.aspx)

2 thoughts on “SCCM – SCUP Database with multiple users

  1. Where is the file for SCUP 2017?I found the database SCUPDB.SDF but could not get the SCUP2017.exe.config file?
    Thanks,
    Dom

Leave a Reply to Martin Wüthrich Cancel reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.