Here is a script to cycle through all required application deployments which have the UI Experience set to True (so all apps that will display something in Software Center) and gives you the opportunity to change the setting to hide all notifications. It requires the powershell modules so if you have the cmdlets installed somewhere else, change the path.
$SiteCode = "SITE CODE"
$Server = "SERVER"
Import-Module 'C:\Program Files (x86)\Microsoft Configuration
Manager\AdminConsole\bin\ConfigurationManager.psd1'
$CDTo = "$SiteCode" + ":\"
CD $CDTo
Get-WmiObject -Namespace "root\sms\site_$sitecode" -ComputerName $Server
-Query "Select CollectionName,ApplicationName from
SMS_ApplicationAssignment where EnforcementDeadline > 1 and
UserUIExperience <> 'False'" | ForEach-Object {
$AppName = $_.ApplicationName
$ColName = $_.CollectionName
$Answer = Read-Host "Do you want to change the User Experience to HideAll
for $AppName deployed to $ColName (y/n)"
If ($Answer.ToLower() -eq "y") {Set-CMApplicationDeployment
-ApplicationName $AppName -CollectionName $ColName -UserNotification
HideAll}
}
On Wed, Apr 2, 2014 at 7:21 PM, Corkill, Daniel <
[email protected]> wrote:
> I feared you'd say this. In my lab testing even if you have a deployment
> set to 'Display in Software Center and only show notifications for computer
> restarts' the Software Centre is displaying a notification for new software.
>
>
>
> Daniel.
>
>
>
> *From:* [email protected] [mailto:
> [email protected]] *On Behalf Of *Schwan, Phil
> *Sent:* Thursday, 3 April 2014 10:08 AM
> *To:* [email protected]
> *Subject:* [mssms] RE: Application deployment notification behaviour
>
>
>
> The Computer Agent Client Setting is an on/off deal; it is basically
> enabling the ability to show notifications. What you are experiencing is
> precisely why I tell clients not to turn that off...because if you want to
> turn it back on later, you have to check the settings for all of your
> deployments or risk users suddenly getting a lot of notifications.
>
>
>
> The Client Setting enables or disables the functionality, but the
> notifications are set per deployment, so you'll have to review all of your
> current deployments and modify any you don't want to display notifications.
>
>
>
> -Phil
>
> _________________________________________________________________
>
> Phil Schwan | Technical Architect, Enterprise Windows Services
>
> *Project Leadership Associates* | 2000 Town Center, Suite 1900,
> Southfield, MI 48075
>
> Lync: 312.756.1626 Mobile: 419.262.5133
>
> www.projectleadership.net
>
> *[image: Description: Description: Description: Arrow email]**Lead with
> Strategy. Leverage Technology. Deliver Results.*
>
> [image: linkedin_logo-19x20] <http://www.linkedin.com/in/philschwan>[image:
> Twitter-Logo1-20x20] <https://twitter.com/philschwan> [image:
> wordpress-logo3] <http://myitforum.com/myitforumwp/author/philschwan>
>
>
>
>
>
>
>
>
>
> *From:* [email protected] [
> mailto:[email protected] <[email protected]>] *On
> Behalf Of *Corkill, Daniel
> *Sent:* Wednesday, April 2, 2014 6:59 PM
> *To:* [email protected]
> *Subject:* [mssms] Application deployment notification behaviour
>
>
>
> Hi,
>
>
>
> Just after some clarification on the behaviour of the user notification
> setting in application deployments. I currently have this set to 'Display
> in Software Centre and show all notifications' for a deployment, yet I see
> nothing. The only way to start seeing notifications is if I set the
> Computer Agent client setting 'Show notifications for new deployments' to
> yes. However after doing this I'm getting notifications for all new
> deployments and this is undesirable.
>
>
>
> Daniel.
>
>
>
>
>
> *********************************************************************
>
> This email, including any attachment, is confidential to the intended
> recipient. It may also be privileged and may be subject to copyright. If
> you have received this email in error, please notify the sender immediately
> and delete all copies of the email. Any confidentiality or privilege is not
> waived. Neither the Council nor the sender warrant that this email does not
> contain any viruses or other unsolicited items.
>
>
>
> This email is an informal Council communication. The Council only accepts
> responsibility for information sent under official letterhead and duly signed
> by, or on behalf of, the Chief Executive Officer.
>
>
>
> Privacy Collection Notice
>
> Logan City Council may collect your personal information, e.g. name,
> residential address, phone number etc, in order to conduct its business
> and/or meet its statutory obligations. The information will only be accessed
> by employees and/or Councillors of Logan City Council for Council business
> related activities only. If your personal information will be passed onto a
> third party, Council will advise you of this disclosure, the purpose of the
> disclosure and reason why. Your information will not be given to any other
> person or agency unless you have given us permission or we are required by
> law.
>
>
>
>
>
>
> ------------------------------
>
>
> PRIVILEGED AND CONFIDENTIAL. This email and any files transmitted with it
> are privileged and confidential and intended solely for the use of the
> individual or entity to whom they are addressed. If you have received this
> email in error please notify the sender. If you are not the named addressee
> you should not disseminate, distribute or copy this e-mail or any of its
> attachments.
>
>
>
>
>
>
> *********************************************************************
> This email, including any attachment, is confidential to the intended
> recipient. It may also be privileged and may be subject to copyright. If
> you have received this email in error, please notify the sender immediately
> and delete all copies of the email. Any confidentiality or privilege is not
> waived. Neither the Council nor the sender warrant that this email does not
> contain any viruses or other unsolicited items.
>
> This email is an informal Council communication. The Council only accepts
> responsibility for information sent under official letterhead and duly signed
> by, or on behalf of, the Chief Executive Officer.
>
> Privacy Collection Notice
> Logan City Council may collect your personal information, e.g. name,
> residential address, phone number etc, in order to conduct its business
> and/or meet its statutory obligations. The information will only be accessed
> by employees and/or Councillors of Logan City Council for Council business
> related activities only. If your personal information will be passed onto a
> third party, Council will advise you of this disclosure, the purpose of the
> disclosure and reason why. Your information will not be given to any other
> person or agency unless you have given us permission or we are required by
> law.
>
>
>
>
>
<<inline: image001.jpg>>
<<inline: image002.jpg>>
<<inline: image004.jpg>>
<<inline: image003.jpg>>

