How to clone Notification Subscription in SCSM 2012 Sp1

Hi Team,
Do we have any method to clone/duplicate subscriptions in Service manager 2012.
Thanks
Dinesh
Thanks & Regards, Dinesh

Necromancy is generally frowned upon.
A notification is just a special form of a workflow, and is stored entirely in the MP XML. If you wanted to make an exact duplicate of a notification, you could create the notification in a new MP, export that MP, edit the XML to change all the identifiers,
and re-insert it into the MP so you had two copies of it. A notification consists of 4 or 5 XML Elements that refer to eachother, and those identifiers would need to be unique, and then new display strings would need to be created to support those
new identifiers.
That being said, you would spend far longer fixing up the IDs then it would take to recreate the notification rules through the UI. On top of that, it wouldn't do you any good to have two notifications with the same rules, targets, and template, because
that would just send the same notice twice, you'd still have to edit the target, rules or template to do what you wanted to do, and the easiest way to do that is to go back into the UI to edit the rules.
So, yes, there is a way to copy a notification, but you're going to spend far more time fixing the copy and making it do what you want afterwards then you would creating a new notification using the UI.

Similar Messages

  • Exporting Recipients details from all the Notification Subscriptions in SCSM 2012 Sp1

    Hi Team,
    Do we have any powershell script to export the recipients details from all the notification subscriptions from SCSM 2012 SP1. I have tried usind ChildEnumeration, but it didn't return any data. Sooner response would be highly appreciated.
    Thanks,
    Dinesh
    Thanks & Regards, Dinesh

    Subaru, your solution is not sending the email from different domains though.  And it is initiated manually through the console.
    We are looking for the ability to have subscriptions send emails from different domains or email addresses depending on queues or similar.  In my research, I think the only viable option is to use orchestrator as mentioned above and have it monitor
    tickets for criteria specified.  Its a pain and a huge limitation in my opinion.
    I think the bottom line is to not use subscriptions for a full loop email system.  only use it for emails that will not be replied to.

  • IN SCSM 2012 SP1 email notification duplicating

    We use SCSM 2012 SP1 in our environment. We create mail notification's for incident assignment. But a mail notification for an incident under same template going 2 times.
    How can we configure it like for an incident same mail go for single time not twice.
    Please help me ASAP. 
    Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

    Dear Mithun,
    if email notifications are duplicated, it means that 2 workflows that send emails are running on the same incident, kindly check your workflows and their criterias.
    Best Regards
    Jreij12

  • How to generate Incident Report with incident description field? in SCSM 2012 sp1

    Can incident description field be displayed in reports? in SCSM 2012 SP1
    Regards
    Shujjat
    Metalsoft

    ALTER PROCEDURE [dbo].[ServiceManager_Report_Incidents]
    @Classification nvarchar(max) = '-1',@SupportGroup nvarchar(max) = '-1',@ID  nvarchar(max) = null,@IncludeDeleted bit = 0,@LanguageCode nvarchar(max)= 'ENU'
    AS
      DECLARE @tableClassification TABLE (value nvarchar(256)) 
      INSERT @tableClassification (value)
      SELECT * FROM dbo.fn_CSVToTableInt(@Classification)
      DECLARE @tableSupportGroup TABLE (value nvarchar(256)) 
      INSERT @tableSupportGroup (value)
      SELECT * FROM dbo.fn_CSVToTableInt(@SupportGroup)
      DECLARE @tableID TABLE(value nvarchar(256))
      INSERT @tableID (value)
      Select * FROM dbo.fn_CSVToTableString(ISNULL(@ID, ''))
    SELECT DISTINCT
    I.Id,
    I.Title,
    Classification = ISNULL(ClassDS.DisplayName,ClassEnum.IncidentClassificationValue),
    ClassEnum.IncidentClassificationId AS ClassificationId,
    ClassEnum.ParentId,
    Support = ISNULL(SupportDS.DisplayName,SupportEnum.IncidentTierQueuesValue),
    SupportEnum.IncidentTierQueuesId AS SupportId,
    Status = ISNULL(StatusDS.DisplayName, StatusEnum.IncidentStatusValue) ,
    StatusEnum.IncidentStatusId AS StatusId,
    AssignedTo.DisplayName AssignedToUserName,
    AssignedTo.UserDimKey AssignedToUserId
    FROM dbo.IncidentDimvw I
    INNER JOIN dbo.WorkItemDimvw WI  ON I.EntityDimKey = WI.EntityDimKey
    LEFT OUTER JOIN  dbo.WorkItemAboutConfigItemFactvw ON  dbo.WorkItemAboutConfigItemFactvw.WorkItemDimKey = WI.WorkItemDimKey   AND (@IncludeDeleted = 1 OR dbo.WorkItemAboutConfigItemFactvw.DeletedDate IS NULL)
    LEFT OUTER JOIN  dbo.WorkItemAboutConfigItemFactvw CIFctForFilter ON  CIFctForFilter.WorkItemDimKey = WI.WorkItemDimKey      AND (@IncludeDeleted = 1 OR CIFctForFilter.DeletedDate IS NULL)
    LEFT OUTER JOIN  dbo.IncidentClassificationvw AS ClassEnum ON I.Classification_IncidentClassificationId = ClassEnum.IncidentClassificationId 
    LEFT OUTER JOIN  dbo.DisplayStringDimvw ClassDS  ON ClassEnum.EnumTypeId=ClassDS.BaseManagedEntityId                           
    AND ClassDS.LanguageCode = @LanguageCode
    LEFT OUTER JOIN  dbo.IncidentTierQueuesvw AS SupportEnum ON I.TierQueue_IncidentTierQueuesId = SupportEnum.IncidentTierQueuesId 
    LEFT OUTER JOIN  dbo.DisplayStringDimvw SupportDS  ON SupportEnum.EnumTypeId=SupportDS.BaseManagedEntityId                    AND ClassDS.LanguageCode =
    @LanguageCode
    LEFT OUTER JOIN  dbo.IncidentStatusvw AS StatusEnum  ON StatusEnum.IncidentStatusId = I.Status_IncidentStatusId 
    LEFT OUTER JOIN  dbo.DisplayStringDimvw StatusDS  ON StatusEnum.EnumTypeId=StatusDS.BaseManagedEntityId                      AND StatusDS.LanguageCode
    = @LanguageCode
    LEFT OUTER JOIN  dbo.WorkItemAssignedToUserFactvw  ON dbo.WorkItemAssignedToUserFactvw.WorkItemDimKey = WI.WorkItemDimKey     AND (@IncludeDeleted = 1 OR dbo.WorkItemAssignedToUserFactvw.DeletedDate IS NULL)
    LEFT OUTER JOIN dbo.UserDimvw AS AssignedTo ON dbo.WorkItemAssignedToUserFactvw.WorkItemAssignedToUser_UserDimKey = AssignedTo.UserDimKey
    WHERE
    ((-1 IN (Select value from @tableClassification)) OR (I.Classification_IncidentClassificationId IN (Select value from @tableClassification)))
    AND
    ((-1 IN (Select value from @tableSupportGroup)) OR (I.TierQueue_IncidentTierQueuesId IN (Select value from @tableSupportGroup)))
    AND
    ((@ID IS NULL) OR (I.Id IN (Select value from @tableID)))
    -- exec ServiceManager_Report_Incidents @Classification=N'281,415,9,135',@SupportGroup=N'72,-1,69,43',@ID=N'IR55145'

  • Error while creating SCSM 2012 sp1 self-portal on SP2013

    Hell to everyone
    today dive into SCSM installation and self-service portal setup. the environment i use is as following:
    Windows 2008 R2 Datacenter x64 SP1
    SQL 2012 BI Edition
    Sharepoint server 2013 Enterprise Edition
    SCSM 2012 SP1
    i have successfuly set up SCSM 2012. everything is workig fine.
    but when i go to sel-service portal setup (all components on one server - both Web-Content server and SP WebParts) i face with an error
    _CreateSharePointWebSite.F175D191_81C3_4A7D_A05B_6A250575B468
    the error is related to Site creation and SP webparts installation.
    i tried to setup just Web-Content Server and installation was finished successfully.
    Please help me with the issue! very urgently
    there is no honda without racing

    Hi Pavel,
    According to your description, my understanding is that you got an error when you set up Service Manager 2012 SP1 running on SharePoint 2013.
    Please check whether you have configured SCSM and SharePoint 2013 correctly. You can check as the following link:
    http://blogs.technet.com/b/thomase/archive/2013/08/19/how-to-get-service-manager-2012-self-service-portal-running-on-sharepoint-2013.aspx
    Please make sure you used the same account to instal SharePoint and Service manager.
    If this issue still exists, please do as the followings:
    Open Central Administration\Monitoring\Review job defintions, select the servers in the farm one-by-one , then click Application Server Administration Service Timer Job, click Disable.
    Restart "Sharepoint 2010 Timer " in services.msc on all servers in the farm.
    Try to install the SCSM portal.
    Click Central Administration\Monitoring\Review job defintions\Application Server Administration Service Timer Job, click Enable.
    Restart "Sharepoint 2010 Timer " in services.msc on all servers in the farm
    Here are some similar links for your reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/47d43d25-6e14-464a-b899-c13dcbad880f/error-while-installing-service-manager-selfservice-portal?forum=sharepointcustomizationprevious
    http://scug.be/valerie/2011/12/01/scsm-2012-self-service-portal-setup-can-t-create-a-new-site/
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Options for monitoring health of SCSM 2012 SP1 using SCOM 2012 SP1

    Hi,
    I've done some research on how to monitor SCSM using SCOM (version 2012 SP1 for both) and found two options:
    Option 1 - Agent-based monitoring. With SCSM2012 SP1, it looks as though the agent is
    already present (for upgrades and also for fresh installs). So it follows that SCOM will be able to monitor the health of SCSM.
    Option 2 - Agentless monitoring. On the Technet
    download page, 'System Requirements' section indicates compatibility with SCOM 2012 and above, and SCSM 2012 and above. Details tab says the following (emphasis mine):
    This System Center Management Pack for System Center 2012 - Service Manager should be used to monitor
    System Center 2012 - Service Manager, System Center 2012 R2 - Service Manager
    and includes monitors for the management server as well as the Data Warehouse server. In this release of the management pack, the Data Access Service, Health Service, Configuration Service, and workflows are monitored.
    So it looks like both options are viable, but I'd be interested in hearing other people's experiences of using one vs. the other. Is there any major difference in the information that's provided by agentless vs. agent-based monitoring, or are they just two
    different ways of pulling the exact same information into SCOM?
    Edit: Just occurred to me that SP1 isn't explicitly mentioned in the Technet article linked above under option 2. Has anyone successfully used agentless monitoring on SP1?

    Hi,
    Here is a related blog for your reference.
    SCSM 2012 SP1 (Beta) – Monitoring Management Servers with SCOM 2012
    http://marcelzehner.ch/2012/09/29/scsm-2012-sp1-beta-monitoring-management-servers-with-scom-2012/
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Reporting Tab is not showing in SCSM 2012 SP1 Console

    I'm working with SCSM 2012 SP1. But after installing data ware house only "DataWareHouse" tab appares no "Reporting" tab. And it shows below MSG:
    And only the below reporting management pack are available in the Data Ware House >> Management pack area.
    I already check data warehouse server 'System Center Data Access Service' and 'SQL Server reporting Service', borth are running. But still 'Reporting' tab is not there.
    Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

    At last I solve the problem. THere is 2 solution for resolve the issue.
    Force start all warehouse job.
    Un register and reregistared DataWareHouse againg.
    In my case I do the borth after reregister datawarehouse I wait 1hr after that I manualy start the warehouse jobs. And it works for me.
    Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

  • Trying to Perform an install of SCSM 2012 SP1 - SQL Analysis Services Not Installed

    I'm performing a clean install of System Center Service Manager 2012 on a Windows 2012 server.   The prerequisite checker told me the Analysis Objects were not installed.   I clicked the link and downloaded the SQL Server 2008 R2 Analysis
    Management Objects.   I restarted the install and it still says it's not installed.  I also tried installing the 2012 version of the objects and still no luck.  
    I also tried installing both the x86 and x64 versions of these tools.
    I have also tried the same install on a Windows 2008 R2 server and had the same error.  I'm convinced this is a bug in the setup.
    Has anyone else seen this?  Is it a known issue?

    Try to check the log file SCSMSetupWizardxy.log under C:\Users\<username>\AppData\Local\Temp
    perhaps it could not load Microsoft.AnalysisServices.dll assembly.
    12:23:55:**************************************************
    12:23:55:CheckPrerequisites: Checking Microsoft SQL Server Analysis Management Objects prereq.
    12:23:55:Entered RequiredAMO
    12:24:08:Trying alternate method of detection using Assembly.Load
    12:24:08:Error occured while loading Microsoft.AnalysisServices.dll: Could not load file or assembly 'Microsoft.AnalysisServices, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
    12:24:08:CheckPrerequisites: Logic Type:and AMO-err: 2
    12:24:08:
    12:24:08:CheckPrerequisites: Microsoft SQL Server Analysis Management Objects: Failed
    12:24:08:
    12:24:08:**************************************************
    can you confirm if that assembly exists in the Assembly folder.
    on a side note: SCSM 2012 SP1 supports 2008 R2 SP1 or above, and double check that the account you are using to install the SM is a local admin.
     

  • "back submit cancel " not show in ssp scsm 2012 sp1

    hello  
    which  may be the reason  that my SSP in SCSM 2012 sp1 does
    not show the buttons to submit my request to serve
    rmanager?
    <- Back   Submit  ->
      Cancel  
      button
    are not displayed ... can someone help me?
    Thanks 

    Resolved :  Stamped   "create request button"   in  sharepoint  web part 
    A glaring oversight on my part
    Sorry. 

  • Reinstalling SCSM 2012 SP1 -- installation fails on Finalize step "while executing a custom action:RollbackCleanup" -- absolutely stumped!

    I uninstalled a previous installation of SCSM 2012 in our lab environment because the person who installed it is didn't give anyone else permissions and they weren't available to make the change.  Since then, I've tried to install SCSM 2012 multiple
    times and it fails every time during the Finalize step with the error shown in the picture below.
    Things I've tried and double checked:
    I am running the install with a domain admin account
    I'm specifying a domain user service account during install which is local administrator on the machine
    I rebuilt the performance counters
    I'm running SQL 2k8 R2 SP2
    .Net 3.5.1 is installed
    I see the following message in the System Event Log during setup:
    Event 7036 - The System Center Data Access Service service entered the running state.
    Event 7031 - The System Center Data Access Service service terminated unexpectedly. 
    It has done this 1 time(s).  The following corrective action will be taken in 60000 milliseconds: Restart the service.
    It appears as though this happens 18 times before the service is no longer restarted and is left terminated.
    Any thoughts or help on how to get this to work would be greatly appreciated!  Log excerpts are below as well as a link to the full log file at the end.
    Chris
    Errors in the log that make me go "hmm…" 
    I changed my domain and username in the logs to "DOMAIN" and "user" respectively. 
    MSI (s) (74!94) [10:29:06:718]: Note: 1: 2711 2: MOMServer
    Action start 10:29:06: _SetHealthServiceConfig.80B659D9_F758_4E7D_B4FA_E53FC737DCC9.
    GetMsiFeatureState: Failed to get feature state. Error Code: 0x80070646. MOMServer
    MSI (s) (74!94) [10:29:06:719]: Note: 1: 2711 2: MOMGateway
    SetHealthServiceConfig: Failed to get Feature State.. Error Code: 0x80070646. MOMServer
    GetMsiFeatureState: Failed to get feature state. Error Code: 0x80070646. MOMGateway
    MSI (s) (74:04) [10:49:58:011]: Executing op: ActionStart(Name=_ExecuteSqlScripts,Description=Configuring Database,Template=[1])
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2769. The arguments are: _MPProcessorDeferred, 9923,
    Calling custom action CAManaged!Microsoft.MOMv3.Setup.MOMv3ManagedCAs.RegisterSdkSCP
    RegisterSdkSCP: Old serviceConnectionPoint found
    RegisterSdkSCP: Deleting existing serviceConnectionPoint
    RegisterSdkSCP: Warning: Dont have access to delete existing serviceConnectionPoint
    RegisterSdkSCP: Creating New serviceConnectionPoint
    RegisterSdkSCP: Adding ACL for current user: DOMAIN\account
    RegisterSdkSCP: Adding ACL for SM Admini: DOMAIN\SCSM Admins
    RegisterSdkSCP: Error: The object already exists.
    Calling custom action CAManaged!Microsoft.MOMv3.Setup.MOMv3ManagedCAs.WaitForSDKServiceStart
    WaitForSDKServiceStart:Entering
    WaitForSDKServiceStart:Sleeping for SDK to start 0 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 10 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 20 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 30 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 40 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 50 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 60 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 70 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 80 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 90 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 100 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 110 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 120 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 130 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 140 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 150 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 160 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 170 seconds
    WaitForSDKServiceStart: SDK Service connect error, after 3 mins, fail this function
    MSI (s) (74:40) [10:56:20:397]: NOTE: custom action _WaitForSDKServiceStart unexpectedly closed the hInstall handle (type MSIHANDLE) provided to it. The custom action should be fixed to not close that
    handle.
    CustomAction _WaitForSDKServiceStart returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    MSI (s) (74:04) [10:56:40:799]: Executing op: CustomActionRollback(Action=_RollBack_UninstallHealthServicePerfCountersForUpgrade.80B659D9_F758_4E7D_B4FA_E53FC737DCC9,ActionType=3393,Source=BinaryData,Target=InstallHSPerfCounters,CustomActionData=C:\Program
    Files\Microsoft System Center 2012\Service Manager\)
    MSI (s) (74:38) [10:56:40:801]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI62BF.tmp, Entrypoint: InstallHSPerfCounters
    InstallHSPerfCounters: Custom Action Data. C:\Program Files\Microsoft System Center 2012\Service Manager\
    InstallHSPerfCounters: Installing agent perf counters.
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallHSPerfCounters: Failed to install agent perf counters. Error Code: 0x80070057.
    MSI (s) (74:04) [10:57:10:844]: I/O on thread 2752 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:844]: I/O on thread 4796 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:844]: I/O on thread 4928 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 4612 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 884 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 2600 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 1884 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 4872 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 3084 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 4920 could not be cancelled. Error: 1168
    MSI (s) (74!E0) [10:57:10:846]: Product: Microsoft System Center 2012 - Service Manager -- The installer has encountered an unexpected error installing this package. This may indicate a problem with
    this package. The error code is 25211. The arguments are: -2147024809, The parameter is incorrect.,
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 25211. The arguments are: -2147024809, The parameter is incorrect.,
    CustomAction _RollBack_UninstallHealthServicePerfCountersForUpgrade.80B659D9_F758_4E7D_B4FA_E53FC737DCC9 returned actual error code 1603 but will be translated to success due to continue marking
    MSI (s) (74:04) [10:57:17:154]: Note: 1: 1708
    MSI (s) (74:04) [10:57:17:154]: Product: Microsoft System Center 2012 - Service Manager -- Installation failed.
    MSI (s) (74:04) [10:57:17:155]: Windows Installer installed the product. Product Name: Microsoft System Center 2012 - Service Manager. Product Version: 7.5.2905.0. Product Language: 0. Manufacturer:
    Microsoft Corporation. Installation success or error status: 1603.
    Full log file:
    https://skydrive.live.com/redir?resid=F723C571E9E6D51F!1414&authkey=!ACisfvqIpGO_i7A

    Hello Christopher,
    I have recently worked in a case that had mostly the same errors:
    InstallHSPerfCounters: Installing agent perf counters.
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallHSPerfCounters: Failed to install agent perf counters. Error Code: 0x80070057.
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 8152 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 9580 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 6008 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 2112 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 8252 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 12504 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 9548 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 11464 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:587]: I/O on thread 10616 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:587]: I/O on thread 8120 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:587]: I/O on thread 2424 could not be cancelled. Error: 1168
    MSI (s) (A8!D4) [10:29:51:587]: Product: Microsoft System Center 2012 R2 Service Manager -- The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 25211. The arguments are:
    -2147024809, The parameter is incorrect.,
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 25211. The arguments are: -2147024809, The parameter is incorrect.,
    CustomAction _RollBack_UninstallHealthServicePerfCountersForUpgrade.80B659D9_F758_4E7D_B4FA_E53FC737DCC9 returned actual error code 1603 but will be translated to success due to continue marking
    MSI (s) (A8:3C) [10:29:51:599]: Executing op: ActionStart(Name=_StopNamedServices_HealthService.80B659D9_F758_4E7D_B4FA_E53FC737DCC9,Description=Stopping Health services,)
    MSI (s) (A8:3C) [10:29:51:603]: Executing op: ActionStart(Name=StopServices,Description=Stopping services,Template=[1])
    MSI (s) (A8:3C) [10:29:51:605]: Executing op: ServiceControl(,Name=W3SVC,Action=1,,)
    MSI (s) (A8:3C) [10:29:52:621]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,).
    - I was able to resolve it using the command  line LOTCTR /R
    - And restarting the IIS service using the command line tool IISRESET
    - After this command was successfully applied I have tried to install the Service Manager Portal without any errors.
    http://technet.microsoft.com/en-us/library/bb490926.aspx
    http://technet.microsoft.com/en-us/library/hh875560.aspx
    http://support.microsoft.com/kb/300956
    https://blogs.technet.com/b/yongrhee/archive/2009/10/06/how-to-rebuild-performance-counters-on-windows-vista-server2008-7-server2008r2.aspx
    Thank you very much
    Renato Pacheco

  • Install error SCSM 2012 SP1 _PopulateUserRoles

    I currently have SCSM 2012 in production and working however when adding a secondary Management Server the installation fails at the Install Services, returning a
    An error occurred while executing a custom action:_PopulateUserRoles. I am using the same system account that works on the primary Management server, verified that its a local admin on the new server, and the firewalls are opened on each
    server. The account I am installing the software from is a domain admin and a local admin on the server. I have even elevated the privileges when launching the executable to no avail.
    any help would greatly be appreciated!

    Perhaps this Cireson blog could help you?
    http://cireson.com/blog/scsm-an-error-occurred/

  • Install of SCSM 2012 SP1 DataWarehouse Fails with PreRegisterExtensionsDeferred

    Hi,
    Trying to install System Center Service Manager 2012 SP1 DataWarehouse on Server 2012 and it's failing on Configuring Reporting with "An error occurred while executing a custom action:_PreRegisterExtensionsDeferred".
    Looking in the logfile SCSMInstall01 we get these lines:
    Calling custom action CAManaged!Microsoft.MOMv3.Setup.PreExtensionRegistration.PreRegisterExtensions
    PreRegisterExtensions: Begin
    PreRegisterExtensions: Starting in deferred mode
    PreRegisterExtensions: 20 extension records decoded
    PreRegisterExtensions: Connecting via InProc SDK
    PreRegisterExtensions: Loading management pack C:\Program Files\Microsoft System Center 2012\Service Manager\System.Library.mp
    PreRegisterExtensions: Importing management pack C:\Program Files\Microsoft System Center 2012\Service Manager\System.Library.mp
    PreRegisterExtensions: System.ArgumentException: The requested management pack is not valid. See inner exception for details.
    PreRegisterExtensions: Parameter name: managementPack ---> : Database error. MPInfra_p_ManagementPackInstall failed with exception:
    PreRegisterExtensions: Database error. MPInfra_p_ManagementPackInstall failed with exception:
    PreRegisterExtensions: XML parsing: line 9590, character 93, end tag does not match start tag
    PreRegisterExtensions:
    PreRegisterExtensions:    --- End of inner exception stack trace ---
    PreRegisterExtensions:    at Microsoft.EnterpriseManagement.ManagementPackManagement.TryImportManagementPack(ManagementPack managementPack, IDictionary`2 resources)
    PreRegisterExtensions:    at Microsoft.EnterpriseManagement.ManagementPackManagement.ImportManagementPack(ManagementPack managementPack, IDictionary`2 resources)
    PreRegisterExtensions:    at Microsoft.MOMv3.Setup.PreExtensionRegistration.PreRegisterExtensions(Session session)
    PreRegisterExtensions: End (fail)
    Databases being installed on SQL 2012 (11.0.3128).
    Any pointers to where I'm going wrong?
    Thanks,
    Niall.

    Did some searching about this error. Some people say it's because SQL permission issue. Does the service account you are using have permission to the SCSM database-server and on the database-server where you are placeing the data warehouse (unless you are
    placeing it on the same server)
    Have a look at this post: https://social.technet.microsoft.com/Forums/systemcenter/en-US/63518cc4-089e-4d70-8bb1-a6e305c3db84/an-error-occurred-while-executing-a-custom-actionpreregisterextensionsdeferred?forum=systemcenterservicemanager
    www.zgc.se - Sysadmin blog.

  • Reports empty SCSM 2012 SP1

    Hello
    i have integrated  the component of datawahrehouse SCSM 2012 with my management server.
    But when i try to generate a report of list of inccident for example , it display me an empty report , i have tried to change some parameter (date , timezone ....) but no result !!!!
    prince

    Hello , 
    I have tried to process all the jobs manualy but no result !!!!!
    i cannot found the the 
    DWMaintenance job !!!!!!
    the some things when i try the powershell script (Windows 2012)
    in the event log of my data warehouse server i found this error : 
    ETL Module Execution failed:
     ETL process type: Extract
     Batch ID: 255
     Module name: Extract_System.ExtensionType_GEISER
     Message: L'ID '1033' des paramètres régionaux de la colonne source 'DisplayName' ne correspond pas à l'ID '1036' des paramètres régionaux de la colonne de destination 'System.Entity!DisplayName'.
     Stack:    à System.Data.SqlClient.SqlBulkCopy.AnalyzeTargetAndCreateUpdateBulkCommand(BulkCopySimpleResultSet internalResults)
       à System.Data.SqlClient.SqlBulkCopy.WriteToServerInternalRestContinuedAsync(BulkCopySimpleResultSet internalResults, CancellationToken cts, TaskCompletionSource`1 source)
       à System.Data.SqlClient.SqlBulkCopy.WriteToServerInternalRestAsync(CancellationToken cts, TaskCompletionSource`1 source)
       à System.Data.SqlClient.SqlBulkCopy.WriteToServerInternalAsync(CancellationToken ctoken)
       à System.Data.SqlClient.SqlBulkCopy.WriteRowSourceToServerAsync(Int32 columnCount, CancellationToken ctoken)
       à System.Data.SqlClient.SqlBulkCopy.WriteToServer(IDataReader reader)
       à Microsoft.SystemCenter.Warehouse.Utility.SqlBulkOperation.Insert(String sourceConnStrg, String sourceQuery, String destinationTable, Dictionary`2 mapping, String sqlConnectionStrg, Boolean& readerHasRows, DomainUser sourceSecureUser, DomainUser
    destSecureUser)
       à Microsoft.SystemCenter.Warehouse.Etl.ADOInterface.Insert(DomainUser sourceConnectionUser, DomainUser destinationConnectionUser)
       à Microsoft.SystemCenter.Warehouse.Etl.ADOInterface.Execute(IXPathNavigable config, Watermark wm, DomainUser sourceConnectionUser, DomainUser destinationConnectionUser)
       à Microsoft.SystemCenter.Warehouse.Etl.ExtractModule.Execute(IXPathNavigable config, Watermark wm, DomainUser sourceConnectionUser, DomainUser destinationConnectionUser, Int32 batchSize)
       à Microsoft.SystemCenter.Warehouse.Etl.ExtractModule.Execute(IXPathNavigable config, Watermark wm, DomainUser sourceConnectionUser, DomainUser destinationConnectionUser)
       à Microsoft.SystemCenter.Etl.ETLModule.OnDataItem(DataItemBase dataItem, DataItemAcknowledgementCallback acknowledgedCallback, Object acknowledgedState, DataItemProcessingCompleteCallback completionCallback, Object completionState)
    i think that this error appear when my management server try to sychronize and extract the data with the the data warehouse server .
    prince

  • How to exclude an OU using SCSM 2012 R2?

    Hello,
    I have large Active Directory and need to limit users in Service Manager.  How can I use the AD connector to exclude one OU or multiple OUs?
    I tried using ldap query filter  (!ou=students)  But that doesn't seem to work.
    Thanks in advance

    you can exclude items, but that filter will not work because of the vagaries of LDAP and LDAP filter syntax. There isn't a property "OU" like your filter is looking for. the Organizational Unit of the account is represented as part of the DistinguishedName
    property, which is one of the few properties that can not be wildcard filtered.  
    the easiest way to do this is to delete your existing connector and give it 24-48 hours to allow it to remove those objects, then create new connectors that do not include that OU. for instance, if your AD structure looks like this:
    Domain.com
    OU=Admin
    OU=Students
    OU=Teachers
    then you would create two connectors, one for OU admin and one for OU teachers, by using the "let me choose and OU" from the second step in http://technet.microsoft.com/en-us/library/hh519597.aspx. 

  • Streaming App-V App to VMware Linked Clone VDI Pool via SCCM 2012 SP1

    I have a few different App-V 5.0 applications that will work when deployed to a regular Windows 7 PC but when deployed to a VMware Linked Clone VDI I get a failure.
    The primary error message appears to be: Windows Error: 0x11A - The mounted file system does not support extended attributes
    Any suggestions are appreciated.
    Here is the full details of this part of the log file:
    <![LOG[+++ Starting Install enforcement for App DT "Adobe Acrobat X Standard - Microsoft Application Virtualization 5" ApplicationDeliveryType - ScopeId_B51FF007-E1D6-47B2-B4FE-656997855C16/DeploymentType_427a1d36-aa7e-4fc0-856c-0495b9214883,
    Revision - 2, ContentPath - C:\Windows\ccmcache\2, Execution Context - Any]LOG]!><time="10:35:25.201+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168" file="appprovider.cpp:1643">
    <![LOG[    A user is logged on to the system.]LOG]!><time="10:35:25.201+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168" file="appprovider.cpp:2014">
    <![LOG[    Performing detection of app deployment type Adobe Acrobat X Standard - Microsoft Application Virtualization 5(ScopeId_B51FF007-E1D6-47B2-B4FE-656997855C16/DeploymentType_427a1d36-aa7e-4fc0-856c-0495b9214883, revision 2) for user.]LOG]!><time="10:35:25.203+300"
    date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168" file="appprovider.cpp:2079">
    <![LOG[    Installing App-V 5.X package Adobe Acrobat X Standard (DTId = ScopeId_B51FF007-E1D6-47B2-B4FE-656997855C16/DeploymentType_427a1d36-aa7e-4fc0-856c-0495b9214883, Revision = 2)]LOG]!><time="10:35:25.294+300" date="12-14-2013"
    component="AppEnforce" context="" type="1" thread="6168" file="appv5xhandler.cpp:422">
    <![LOG[Running App-V command ["C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1'; Get-AppVPublishingServer
    | Remove-AppVPublishingServer ] for the  machine]LOG]!><time="10:35:25.295+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168" file="appvcommandutil.cpp:117">
    <![LOG[    Executing Command line: "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1'; Get-AppVPublishingServer
    | Remove-AppVPublishingServer  with system context]LOG]!><time="10:35:25.295+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168" file="appexcnlib.cpp:345">
    <![LOG[    Process 1820 terminated with exitcode: 0]LOG]!><time="10:35:25.991+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168" file="appexcnlib.cpp:431">
    <![LOG[The AppV 5X client is configured for use with ConfigMgr.]LOG]!><time="10:35:25.991+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168" file="appvclientconfig5x.cpp:64">
    <![LOG[   Opened config file C:\Windows\ccmcache\2\AdobeAcrobat10_UserConfig.xml for package [Id = 6fbce927-29b1-452e-b274-c1b381f7a5ed] [Xml namespace=http://schemas.microsoft.com/appv/2010/userconfiguration].]LOG]!><time="10:35:26.072+300"
    date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168" file="appv5xconfigfile.cpp:76">
    <![LOG[Running App-V command ["C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1';  Publish-AppvClientPackage
    -PackageID 6fbce927-29b1-452e-b274-c1b381f7a5ed -VersionID 9fac3712-20e5-42d4-be67-4d3a8c2e19d3  -DynamicUserConfigurationPath 'C:\Windows\CCM\SystemTemp\AppVTempData\6fbce927-29b1-452e-b274-c1b381f7a5ed_UserConfig.xml' -ev err; if(($err -ne $null) -and
    ($error[0].Exception.AppvWarningCode -eq 8589935887)) {$host.SetShouldExit(4736)}] for the  user]LOG]!><time="10:35:26.090+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168"
    file="appvcommandutil.cpp:117">
    <![LOG[    Executing Command line: "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1';  Publish-AppvClientPackage
    -PackageID 6fbce927-29b1-452e-b274-c1b381f7a5ed -VersionID 9fac3712-20e5-42d4-be67-4d3a8c2e19d3  -DynamicUserConfigurationPath 'C:\Windows\CCM\SystemTemp\AppVTempData\6fbce927-29b1-452e-b274-c1b381f7a5ed_UserConfig.xml' -ev err; if(($err -ne $null) -and
    ($error[0].Exception.AppvWarningCode -eq 8589935887)) {$host.SetShouldExit(4736)} with user context]LOG]!><time="10:35:26.091+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168"
    file="appexcnlib.cpp:345">
    <![LOG[    Process 7052 terminated with exitcode: 1]LOG]!><time="10:35:27.555+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168" file="appexcnlib.cpp:431">
    <![LOG[Here is the error message generated by the process:
    Publish-AppvClientPackage : Application Virtualization Service failed to 
    complete requested operation. 
    Operation attempted: Publish AppV Package. 
    Windows Error: 0x11A - The mounted file system does not support extended 
    attributes
    Error module: Integration Manager. Internal error detail: 9BE013210000011A. 
    Please consult AppV Client Event Log for more details.
    At line:1 char:106
    + import-module 'C:\Program Files\Microsoft Application 
    Virtualization\Client\Appv ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidResult: (:) [Publish-AppvClientPackage],  
       ClientException
        + FullyQualifiedErrorId : PublishPackageError,Microsoft.AppV.AppvClientPow 
       erShell.PublishAppvPackage
    ]LOG]!><time="10:35:27.555+300" date="12-14-2013" component="AppEnforce" context="" type="3" thread="6168" file="appexcnlib.cpp:441">
    <![LOG[AppV command ["C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1';  Publish-AppvClientPackage
    -PackageID 6fbce927-29b1-452e-b274-c1b381f7a5ed -VersionID 9fac3712-20e5-42d4-be67-4d3a8c2e19d3  -DynamicUserConfigurationPath 'C:\Windows\CCM\SystemTemp\AppVTempData\6fbce927-29b1-452e-b274-c1b381f7a5ed_UserConfig.xml' -ev err; if(($err -ne $null) -and
    ($error[0].Exception.AppvWarningCode -eq 8589935887)) {$host.SetShouldExit(4736)}] failed with return code 1.]LOG]!><time="10:35:27.555+300" date="12-14-2013" component="AppEnforce" context="" type="3"
    thread="6168" file="appvcommandutil.cpp:128">
    <![LOG[AppVCommandUtil::RunAppVCommand() failed. (0x87d0128f)]LOG]!><time="10:35:27.555+300" date="12-14-2013" component="AppEnforce" context="" type="3" thread="6168" file="appvcommandutil.cpp:154">
    <![LOG[AppVManageClient5X::PublishAppVPackage() failed for package [6fbce927-29b1-452e-b274-c1b381f7a5ed]. (0x87d0128f)]LOG]!><time="10:35:27.555+300" date="12-14-2013" component="AppEnforce" context="" type="3"
    thread="6168" file="appvmanage5x.cpp:148">
    <![LOG[CAppV5XHandler::PublishSpecifiedAppVComponents() failed. (0x87d0128f)]LOG]!><time="10:35:27.555+300" date="12-14-2013" component="AppEnforce" context="" type="3" thread="6168" file="appv5xhandler.cpp:1810">
    <![LOG[CAppV5XHandler::PublishAppVComponentsForDT() failed. (0x87d0128f)]LOG]!><time="10:35:27.555+300" date="12-14-2013" component="AppEnforce" context="" type="3" thread="6168" file="appv5xhandler.cpp:1745">
    <![LOG[    CAppV5XHandler::InstallApp() failed. (0x87d0128f)]LOG]!><time="10:35:27.555+300" date="12-14-2013" component="AppEnforce" context="" type="3" thread="6168" file="appv5xhandler.cpp:646">
    <![LOG[++++++ App enforcement completed (2 seconds) for App DT "Adobe Acrobat X Standard - Microsoft Application Virtualization 5" [ScopeId_B51FF007-E1D6-47B2-B4FE-656997855C16/DeploymentType_427a1d36-aa7e-4fc0-856c-0495b9214883],
    Revision: 2, User SID: S-1-5-21-2088122422-771453202-631647523-30201] ++++++]LOG]!><time="10:35:27.556+300" date="12-14-2013" component="AppEnforce" context="" type="1" thread="6168"
    file="appprovider.cpp:2366">

    Hello,
    See these topics;
    http://blogs.msdn.com/b/vsnetsetup/archive/2013/05/06/the-mounted-file-system-does-not-support-extended-attributes.aspx
    http://technet.microsoft.com/en-us/library/cc978803.aspx
    I would assume that the file-system you are attempting to place the app is not supported. The above articles could give you a hint on what to verify why that is the case.
    Nicke Källén | The Knack| Twitter:
    @Znackattack

Maybe you are looking for

  • Managed Content Folder Pagelet: Can Sub-folder list be sorted?

    Greetings, It seems that even prefixing the names of folders with numbers cannot influence the random arrangement of folder names. Is it possible to sort these for Interaction Hub 9.1 ? The image below is of a homepage pagelet that was generated with

  • Does anyone know plug in for cutting a vinyl in Illustrator CS4, Free?

    Does anyone know plug in for cutting a vinyl in Illustrator CS4, Free?

  • In transit problem

    Dear Guru,      some quantity is in the stock in transit at plant level. I couldn't clear this quantity because no document reference and split valuation type. i try to use mvt 557 to remove but the system ask me to input valuation. actually no valua

  • Anonymous user tracking between EAR's

    We have a requirement where we need to use Anonymous user tracking(AUT) across two EARS in the same domain. Currently AUT generates seperate user id as the user navigates between the two EARS. Is there any way to restrict creation of multiple user id

  • Rejection of Shopping Cart created in SRM ?

    Hi SRM GURUS, We have an issue regarding shop on behalf in SRM. A shopping cart is created as shop on behalf and needs approval from a manager. If the manager rejects it, then the shopping cart is returned to the user that has been shopped on behalf