Software Distribution & Patching Design Issues - Migration of Packages SCCM 2007 to Application or Conventional Packages in SCCM 2012

Hi All
I am starting in discussion to deep root on Software Distribution & Patching model in large environments from SCCM 2007 migrating to SCCM 2012.
Below are certain assertions i am putting forward for your expert views or you may in a similar situation
1- I have migrated the packages from SCCM 2007 to SCCM 2012 as conventional methods, now i am deploying them [ not migrated the advertisements and collections ], so while deploying i am facing a peculiar situation that the deployment when created is of the
name "<<Package name>>(program)". I am not able to rename the deployment for the conventional packages. is there a way out to that??
2- Will the collection queries work the same in SCCM 2012 as was in SCCM 2007??
3- In SCCM 2012 Primary site there is default role called Site System role in that there is tab for proxy settings. I have observed that if do not check the proxy tab there and punch in proxy IP and port then after some time in the WSUS server the update
source and proxy server tab the proxy option gets unchecked and hence the sync in software update point status appears failed. Is that anyone else also has observed !!!!!
Regards Sushain KApoor

This is a duplicate of
https://social.technet.microsoft.com/Forums/en-US/2ddb8170-529b-4652-830e-fd0ade384b98/software-distribution-patching?forum=configmanagermigration
Please do not double post.
Jason | http://blog.configmgrftw.com | @jasonsandys

Similar Messages

  • Issue on Creating RFx in webdynpro ABAP application - SRM Business Package

    Hi
    We are in to SRM 7.0 with the same version of Business Package in SAP Portal also.
    I am trying to create a RFx from Portal which in turn calls the webdynpro ABAP application (Strategic Purchasing->Strategic Sourcing->Create Documents->RFx)
    sap/bc/webdynpro/sapsrm/wda_l_fpm_oif.
    This Application has some button called "Tech RFx", "Permissions" etc., When I click on those buttons it throws the error as below :
    "There is no iView available for system "SAP_SRM": object "TechResp". For more information, contact your administrator."
    Please let me know where we are missing. I have checked all the Portal permissions. Even I can able to access all other iviews except this two buttons.
    Any settings or parameters required on webdynpro ABAP side.
    Regards,
    Raja.J

    Dear Raja,
    this behavior occurs if the IView com.sap.pct.srm.gp.iv_tech_resp
    is not assigned to the role which is assigned to the user.
    Please assign this IView to the desired user.
    Here are the steps to follow in your systems:
    STEP 1: Login to the Portal with Content Admin Authorization.
    STEP 2: Navigate to Portal Content -> Content Provided by SAP ->
    specialist -> SRM7.0 -> Core -> Roles -> Open the desired role and
    choose Navigation Folder.
    STEP 3: Now navigate to Portal Content -> Content Provided by SAP ->
    specialist -> SRM7.0 -> PPS -> iViews -> Tendering -> Select Tech
    Responses (Technical name is iView com.sap.pct.srm.gp.iv_tech_resp) and
    right click and choose 'Add iView to Role' -> Delta Link and save.
    STEP 4: Log off and login with the user and check the issue.
    Best regards,
    Tamas

  • Distribution-Point sharing (SCCM 2007 - SCCM 2012)

    I've some problems by gathering data from a SCCM 2007 Hierarchy, into the SCCM 2012 environment.
    Gathering Data without enable Distribution Point sharing is successful, enabling Distribution Point Sharing the Process always fail.
    In migmctrl.log i recogniced that the process alway stucks on the following Row for about one hour:
     [Worker]:                                 Query against Legacy Site , @SourceSiteCode=KR1,
    @LastID=KR10001B:                       WITH Block AS                     
    (                          SELECT TOP 2500 ID FROM PkgStatus WHERE ID > @LastID ORDER BY ID                     
    )                      SELECT                         
    ps.ID COLLATE SQL_Latin1_General_CP1_CI_AS AS ID,                          ps.Type AS Type,                         
    ps.SiteCode COLLATE SQL_Latin1_General_CP1_CI_AS AS SiteCode,                          ps.PkgServer COLLATE SQL_Latin1_General_CP1_CI_AS
    AS PkgServer,                          ps.Personality AS Personality,                         
    ps.Status AS Status,                          ps.SourceVersion AS SourceVersion,                         
    ps.UpdateTime AS UpdateTime,                          ps.Location COLLATE SQL_Latin1_General_CP1_CI_AS AS Location,                         
    ps.SigLocation COLLATE SQL_Latin1_General_CP1_CI_AS AS SigLocation,                          ps.ShareName COLLATE SQL_Latin1_General_CP1_CI_AS
    AS ShareName,                          ps.HTTPUrl COLLATE SQL_Latin1_General_CP1_CI_AS AS HTTPUrl,                         
    ps.State AS State,                          ps.SigURL COLLATE SQL_Latin1_General_CP1_CI_AS AS SigURL                      
    FROM dbo.PkgStatus ps                      JOIN (                         
    SELECT d.ThisSiteCode COLLATE SQL_Latin1_General_CP1_CI_AS AS SiteCode FROM SMSData d                           UNION ALL                         
    SELECT s.SiteCode FROM Sites s JOIN SMSData d ON s.ReportToSite = d.ThisSiteCode AND s.SiteType = 1) s2                      ON s2.SiteCode = ps.SiteCode                     
    JOIN DistributionPoints dp ON ps.SiteCode = dp.SMSSiteCode                          AND ps.PkgServer = dp.NALPath collate SQL_Latin1_General_CP1_CI_AS                     
    WHERE ps.Type != 1 AND dp.Action != 3                          AND ps.ID > @LastID                         
    AND ps.ID <= (SELECT MAX(ID) FROM Block)
    And after that this Errormessage appear:
    ERROR: [Worker]:                                 Failed to execute:                      
    WHILE (1 = 1)                      BEGIN                         
    MERGE TOP (1000) PkgStatus AS target                          USING   (                             
    SELECT                                ps.ID, ps.Type, SiteCode = @CurrentSiteCode, PkgServer = dps.PkgServerFQDN,
    ps.Personality, ps.Status, ps.SourceVersion, ps.UpdateTime,                                ps.Location,
    ps.SigLocation, ps.ShareName, ps.HTTPUrl, ps.State, ps.SigURL, SiteCode as SourceSiteCode                             
    FROM #MIG_PkgStatus ps                              JOIN #MIG_DistributionPointSource dps ON ps.PkgServer = dps.PkgServer                             
    WHERE ID in (SELECT PkgID collate SQL_Latin1_General_CP1_CI_AS from dbo.SMSPackages_L)                             )
    AS src                          ON                           
    (target.ID = src.ID AND target.Type = src.Type AND target.SiteCode = src.SiteCode AND target.PkgServer = src.PkgServer AND target.Personality = src.Personality) -- TODO: Ensure we match an index                         
    WHEN NOT MATCHED THEN                              INSERT  (ID, Type, SiteCode, PkgServer, Personality, Status,
    SourceVersion, UpdateTime,                                      Location,
    SigLocation, ShareName, HTTPUrl, State, SigURL)                              VALUES (src.ID, src.Type, src.SiteCode,
    src.PkgServer, src.Personality, src.Status, src.SourceVersion, src.UpdateTime,                                     
    src.Location, src.SigLocation, src.ShareName, src.HTTPUrl, src.State, src.SigURL)                          WHEN MATCHED AND (                             
    target.Status != src.Status                              OR target.SourceVersion != src.SourceVersion                             
    OR target.UpdateTime != src.UpdateTime                              OR target.Location != src.Location                             
    OR target.SigLocation != src.SigLocation                              OR target.ShareName != src.ShareName                             
    OR target.HTTPUrl != src.HTTPUrl                              OR target.State != src.State                             
    OR target.SigURL != src.SigURL                              ) THEN                             
    UPDATE SET                                  target.Status = src.Status,                                 
    target.SourceVersion = src.SourceVersion,                                  target.UpdateTime
    = src.UpdateTime,                                  target.Location = src.Location,                                 
    target.SigLocation = src.SigLocation,                                  target.ShareName = src.ShareName,                                 
    target.HTTPUrl = src.HTTPUrl,                                  target.State = src.State,                                 
    target.SigURL = src.SigURL                          WHEN NOT MATCHED BY SOURCE AND EXISTS(                                 
    SELECT * FROM MIG_Entity me WHERE me.Type = 2 AND me.ObjectKey = target.ID)                              AND EXISTS
    (                                  SELECT * FROM MIG_DistributionPointSource dpsrc                                 
    WHERE dpsrc.PkgServerFQDN = target.PkgServer AND dpsrc.SourceSiteCode = @SourceSiteCode                             
    )                              AND NOT EXISTS (                                 
    SELECT * FROM MIG_Job job                                  WHERE Type = 3 AND dbo.fn_GetNALPathFromMIGJobConfiguration(job.AdditionalConfiguration)
    = target.PkgServer                              )                             
    THEN DELETE ;                            IF @@ROWCOUNT = 0 BREAK                     
    END SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]:                 End syncing Distribution Points related tables. SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]:         ========== End syncing distribution points ========== SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    ERROR: [Worker]:         System.Data.SqlClient.SqlException: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.     at System.Data.SqlClient.SqlConnection.OnError(SqlException
    exception, Boolean breakConnection)     at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)     at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler,
    SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)     at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)    
    at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)     at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior
    runBehavior, Boolean returnStream, String method, DbAsyncResult result)     at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)     at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()    
    at Microsoft.ConfigurationManagement.MigrationManager.MigrationRepository.BulkCopyData[T](Snapshot snapshot, LegacyRepository legacyRepository, IntlSqlFormatter formatter, Func`2 watermarkFunc, T lastMaxId, Boolean doNotDrop)     at Microsoft.ConfigurationManagement.MigrationManager.MigrationRepository.BulkCopyData[T](Snapshot
    snapshot, LegacyRepository legacyRepository, IntlSqlFormatter formatter, Func`2 watermarkFunc, T lastMaxId)     at Microsoft.ConfigurationManagement.MigrationManager.SyncAgentJob.<SyncDPSettings>d__5f.MoveNext()    
    at Microsoft.ConfigurationManagement.MigrationManager.ExtensionMethods.<AttachErrorHandler>d__6`1.MoveNext() SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    STATMSG: ID=8610 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_MIGRATION_MANAGER" SYS="<SourceSITESERVER>" SITE=CA1 PID=2348 TID=4516 GMTDATE=Do Nov 07 11:28:33.390 2013 ISTR0=""<SourceSITESERVER>" (CA1)"
    ISTR1="<DestinationSITESERVER>" ISTR2="-2146232060" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33
    4516 (0x11A4)
    STATMSG: ID=8605 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_MIGRATION_MANAGER" SYS="<SourceSITESERVER>" SITE=CA1 PID=2348 TID=4516 GMTDATE=Do Nov 07 11:28:33.416 2013 ISTR0=""<SourceSITESERVER>" (CA1)"
    ISTR1="<DestinationSITESERVER>" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516
    (0x11A4)
    [Worker]: ==================== Sync Agent Job 16 Ended ==================== SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    ERROR: [Worker]: Microsoft.ConfigurationManagement.Migration.MigrationException: 1 exceptions occurred during syncing.     at Microsoft.ConfigurationManagement.MigrationManager.SyncAgentJob.<get_ExecutionPlan>d__7.MoveNext()    
    at Microsoft.ConfigurationManagement.MigrationManager.Job`1.ExecuteNext() SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Start processing status changed event for MIG_SiteMapping.ID=16 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]:         Set the schedule item 16 end time SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]:         Set the schedule item 16 status to Failed SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: End processing status changed event for MIG_SiteMapping.ID=16 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Disposing Job 16 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Removing Job 16 from job manager. SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Removing the Job with Id 16. SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Disposing worker SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Disposing current site connection SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    ERROR: [MigMCtrl]: FAILED to EXECUTE job. error = Unknown error 0x80131500, 80131500 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    ERROR: [MigMCtrl]: FAILED to EXECUTE job. error = Unknown error 0x80131500, 80131500 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    In the StatusMessages of Migration_Manager there are the following Errormessage:
    The Migration Manager on Configuration Manager site server "<SourceSITESERVER>" was unable to complete the SQL operation on the SQL Server "<DestinationSITESERVER>" of Configuration Manager 2007 due to error "-2146232060".
    Thanks in advance

    Hi,
    1.Please examine reports “All active package distributions” on SCCM 2007 to check whether have package is currently being installed or removed. Then refresh all DPs on SCCM 2007.
    After completing these actions above, try to re-gather data.
    2.If fail, please check the transaction log both on SCCM 2012 and SCCM 2007 SQL Server. Then, a SQL engineer should be involved in this case.(This forum do not support database issue)
    Best Regards,
    Joyce Li
    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.

  • Spikes on network during software distribution or site Migration eventhough throttling enabled

    Hello,
    Maybe I am missing something here, but why am I getting Large Network traffic during site migration from sccm 2007 to 2012 and software distribution to Dps even when I have enabled Bandwidth throttling for the site/dps.  Networking is trying to throttle
    back the bandwidth, but said it is dynamic.  Anyway to make this port a specific port?
    Thanks,
    Mark

    Are you referring to the RPC traffic? If so, it uses the default dynamic RPC port range. That range can be shortened but that's an adjustment on operating system level and not in ConfigMgr.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Software packages are not distribution to a SCCM 2007 secondary site - not decompressing

    Hello,
    I have a secondary site in my SCCM 2007 which is not de-cpompressing packages.
    the packages are coming down to the 'SMSPKG' folder as .pkg files, but it is not de-compressing into the SMSPKGS$ folder.
    I updates one of the smaller packages to re-push the package down and this is what I have seen in the despool.log on the child site
    STATMSG: ID=4407 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DESPOOLER" SYS=P-DC-PKF-CMDP01 SITE=PKF PID=2304 TID=1260 GMTDATE=Wed Apr 23 13:58:49.908 2014 ISTR0="PR100155" ISTR1="162" ISTR2="" ISTR3=""
    ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="PR100155" SMS_DESPOOLER 23/04/2014 14:58:49 1260 (0x04EC)
    Received package PR100155 version 162 SMS_DESPOOLER 23/04/2014 14:58:49 1260 (0x04EC)
    Drive D is not a fixed drive on \\servername, therefore it cannot be used as the compressed package storage direcotry, use the default directory SMS_DESPOOLER 23/04/2014 14:58:49 1260 (0x04EC)
    Use drive S for storing the compressed package. SMS_DESPOOLER 23/04/2014 14:58:49 1260 (0x04EC)
    Package PR100155 (version 161) exists in the distribution source, save the newer version (version 162). SMS_DESPOOLER 23/04/2014 14:58:50 1260 (0x04EC)
    Waiting for ready instruction file.... SMS_DESPOOLER 23/04/2014 14:58:54 2952 (0x0B88)
    Stored Package PR100155. Stored Package Version = 162 SMS_DESPOOLER 23/04/2014 14:58:54 1260 (0x04EC)
    Forward package status for pkg PR100155 to site PR1 SMS_DESPOOLER 23/04/2014 14:58:54 1260 (0x04EC)
    STATMSG: ID=4400 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DESPOOLER" SYS=P-DC-PKF-CMDP01 SITE=PKF PID=2304 TID=1260 GMTDATE=Wed Apr 23 13:58:54.978 2014 ISTR0="PR100155" ISTR1="\\servername\S$\SMSPKG\PR100155.PCK"
    ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="PR100155" SMS_DESPOOLER 23/04/2014 14:58:54 1260 (0x04EC)
    This is happening for all packages on this child site so its not really package related, please could someone provide some insight to what I can do to fix this.
    thanks
    Nazir

    There should be  some more entries in the log file between use Drive and forward package status.
    did you check the status of the package from system status--SM_distribution manager ? any clue 
    can you try preloading one package and see what does it say ? instructions here
    http://blogs.technet.com/b/configurationmgr/archive/2009/05/07/configmgr-2007-the-preload-package-tool-preloadpkgonsite-exe-explained.aspx
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • Distribution patch not shown in control panel

    Hello everybody,
    I have following question:
    After installing a distribution patch it is not shown in the software applet of control panel either as separate product nor as an update to the existing one, even if the "show updates" checkbox is on.
    Is a problem of the patch or general problem of LabWindows/CVI 2010?
    Regards,
    Marek

    Hi,
    Some packages don't show their exact version in MAX or in The Windows Control Panel. For example  LabVIEW 2010 with the F1 patch (2010F1).
    In MAX : Open Max. Look at the software versions. 
    Some packages show their exact version 
    One way to view the version :
    Please keep in mind the patches are typically released on a per issue basis and the primiary intent is to provide a fix that typically needs immediate attention.
    Houssam Kassri
    NI Germany

  • Adaptiva Software Distribution not working with Cisco APs in Local Mode

    A worldwide customer would like to use a new Software distribution system called Adaptiva to replace SCCM within Windows environment. As far as I understand, Adaptiva is designed to work like a snowball system. A single PC at a remote side can be "infected" with new Software and will distribute the package to other PCs within the same IP-subnet, saving WAN bandwidth.
    First tests are showing that it is working well with Cisco WLAN solution as long as we are using Flexconnect WLAN APs.
    Customer locations with Local WLAN AP design create problems for this new software distribution method.
    The WLAN-PCs can be reached from outside, but the establishment of the Client/Server-model between the WLAN Clients is not working. The Port used by this software for communication between clients in each WLAN subnet is UDP Port 34329.
    Our WLCs are running at  7.4.130.0. The problem is appearing independently of AP Multicast settings or Broadcast Forwarding.  Enabling Broadcast forwarding without Reboot did not improve the situation.
    Global Multicast Mode and IGMP Snooping are also of no influence.
    P2P Blocking Action is "Disabled" within the WLAN setup.
    Who has any idea what might cause this communication problem between WLAN clients in Local Mode of APs ?
    Thank You for answers
    Wini

    I can think of two solutions. You could 1: turn the "auto-lock" to never, so that your phone never sleeps. Or, you could 2: jailbreak your iPhone and install "insomnia". I wish we had the Cisco Mobile app. I usually use wifi/insomnia and turn data off at work since we have wireless pretty much everywhere...
    Sent from Cisco Technical Support iPad App

  • Error found in Software Distribution log

    I found below error in my software distribution log. I think it is related to WSUS and many comptuers are not getting proper patches. Any resolution is really appriciated
    2014-11-24 15:27:26.773 UTC    Warning    w3wp.325    SoapUtilities.CreateException    ThrowException: actor = http://xxxx.xxxx.xxxx.com:8530/ClientWebService/client.asmx, ID=e5cd4691-63d8-4740-b5a6-f732027896db,
    ErrorCode=ConfigChanged, Message=, Client=e78cd58f-cb87-4829-945d-d5ab39d8486d

    What do you mean of "not getting proper patches"?
    Did these clients fail to update with any error code?
    Almost certainly the above log entry is occurring in combination with an 0x8024400D error code ... a very common manifestation of duplicated SusClientIDs.
    The log snippet on the client side would look something like this:
    2012-02-09 10:02:34:595  948 1994 PT WARNING: SyncUpdates failure, error = 0x8024400D, soap client error = 7, soap error code = 300, HTTP status code = 200
    2012-02-09 10:02:34:595  948 1994 PT WARNING: SOAP Fault: 0x00012c
    2012-02-09 10:02:34:595  948 1994 PT WARNING:     faultstring:Fault occurred
    2012-02-09 10:02:34:595  948 1994 PT WARNING:    
    ErrorCode:ConfigChanged(2)
    2012-02-09 10:02:34:596  948 1994 PT WARNING:     Message:(null)
    2012-02-09 10:02:34:596  948 1994 PT WARNING:     Method:"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/SyncUpdates"
    2012-02-09 10:02:34:596  948 1994 PT WARNING:     ID:6b1c0796-e40b-4800-a3c9-d75624d59acf
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • DISM Command to retrieve updates from software distribution and apply to wim file

    I'm following
    this guide about slipstreaming updates into a wim file. What im attempting to is what the author outlines in step 2, namely pulling updates from the software distribution folder on a pc that has had the image applied to it and then patched to current. The
    trouble I'm running into is around the command. namely this section DISM
    /image:C:\Mount
    /add-package /packagepath:”%U” Running this command produces a invalid path message. What should be happening is the previous commands
    are telling it to pull in any files name .cab from all of the directories, but this doesn't seem to be working. I can't define this as a static path as there are tons of sub-folders in this directory with the cab files. Am I just doing something wrong? how
    can I accomplish this?

    I'm still having trouble with this. For some reason, it is stripping the % sign. So I am seeing this when I run my batch file:
    /add-package /packagepath:"u"
    or
    /add-package /packagepath:"f"
    Any ideas?

  • Software Distribution - Problem with 1921 Routers

    Hello everybody,
    we are having some weird troubles in our Cisco LMS 4.2
    A Software Distribution works fine for all kinds of our Routers, except the 1921 models. We are using SCP and SSH for the Image distribution and the exactly same configuration on a 1841 and a 1921 works on the 1841 Router but on the 1921 not.
    I didn't found any Bugs related to this, maybe it's a problem with the lms settings?
    Done so far:
    - Deleted the device in LMS, added it via discovery and manually, no change here
    - Tried with different IOS versions, no change here, no one will work
    - Set the credentials after adding the device again, to make sure they are valid
    When creating a new distribution job, we get this error at Step 3 of 5 only at the 1921 Router, so I guess this might be the problem:
    Warning
    -           SWIM1056: The method to update the software on the selected storage device is unknown.
    Select a different Flash partition, if available.
    I attached a SWIM_debug logfile from a failed job. (changed all the DNS names do XXXDNSNAMEXXX).
    Thanks for your help

    More than USB it could be SCP. There is a know bug for SCP on 19xx router :
    CSCuc98074    LMS 4.2.2 Software Image Distribution fails with SCP on 1921 routers
    Just try to change SCP to other protocol and see it that works. Make sure you have all device packages updated for LMS.
    -Thanks
    Vinod
    **Rating Encourages contributors, and its really free. **

  • SCCM 2012 software distribution not able to distribute content for chrome

    Hi I am using sccm 2012, need some advice, thanks! I tried to deploy chrome exe to a xp pc but the PC software centre shows downloading for very long time, more than a few hours. I created a 64bit chrome for a win7 pc and deployment also not working, it
    just failed. Then I downloaded a msi installer to deploy to an xp pc, the downloading also takes forever, I checked the distribution content, it's failed. I then created a DP group and add the single DP into it. but still not working. I did the work before
    for firefox and it did work before. Not sure what happened. Not sure where to check the log for software distribution, any advice please?thanks!
    Thanks and best regards, -- KF

    Thanks, Narcoticoo!your advice is helpful!
    So, does it mean I can use xxxx.exe /install /silent for all other exe installers? And to find out the detection method, do I have to install the exe on a local pc to find out the actual directory it will install it (Then uninstall it)? and xxx.exe /uninstall
    is for uninstallation? Can I create a  bat file like chrome-install.bat to have one line like "ChromeSetupStandAloneSetup.exe
    /silent /install " as the the actual installer? Why there is a package option below application? it confused me ....
    Thanks!
    Thanks and best regards, -- KF

  • SCCM 2012 patch compliance issue

    Hi All,
    In my organization we are facing patch compliance issue.
    in my clients all patches are installed and sent the state messages to MP.however most of the clients are having 0% compliance are showing in report.
    in overall compliance report it is showing "compliance sate unknown" for most of the clients.
    done the software update scan cycle, no errors in WUAhandler.log and windowsupdate.log
    updatestore.log etc.files. however same location only few machines are showing 100% compliance and most of the machines are showing non-compliance (0% compliance)
    please help us to resolve the issue.
    Note: all machines are patches installed successfully. only report is showing "compliance state unknown"

    How much time are you allowing? State messages are only submitted every 15 minutes by the client and information in the console is summarized every 1 hour (both by default); i.e., none of this is instantaneous.
    Reports will reflect the up to info though. Have you directly examined WMI on a target system to verify it's patch compliance state?
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Headstart Designer 10g Migration Guide?

    Is there a Headstart Designer 10g Migration Guide?
    We are migrating our forms application generated from Designer2K 2.1, Forms 5, Headstart 212 with repository in database Oracle 8 to the latest releases Designer 10g (10.1.2.0.2), Forms 10g (10.1.2.0.2) with repository in Database 10g R2 (10.2.0.2).
    If we follow the migration path for designer and the repository database to 6i then to 10g, recompile the object library and form templates, regenrerate our modules, then will it still work? Do we need to do anything to the Headstart Designer Template Package? Hope you can help with a road map.

    Hi Nathan,
    there are several possibilities for a migration path. It depends on the expected life-span of the application(s), wether or not you want to use new Headstart functionality, etc.
    A description of these possibilities can be found in the migration guide which is included in the Headstart 9i/10g documentation. Do you have the latest version of Headstart available?
    Because you currently use an older version of Headstart, a migration will take a bit more work than described in this documentation because Headstart code has changed. So you will have to replace Headstart function calls or create a wrapper library.
    Further, regeneration of (the more complex) Forms is not that simple as you will probably have to modify the lay-out. If you use client-side functionality (open MS Word/Excel, write to the local file system, etc), you will have to use Oracle's Webutil-package.
    So it can be done. But it will take some planning and programming. Succes.
    p.s. if you (temporarily) publish your e-mail address, i can provide you with some additional info.

  • Uninstalling Corrupt Software Update Patch

    Hi,
    I was checking for the method to uninstall any software update patch in case need be. I came across one of the switch to use with the task sequence as below to uninstall any specific patch from systems :
    C:\Windows\System32\wusa.exe /uninstall /kb:2781197 /quiet /norestart
    where KB number is any patch which we would like to remove. The task sequence gave up the below error in TSAGENT.log but execmgr.log is clean without any errors :
    Task sequence launcher advertisement failed!. Code 0x80070480
    TSAgent 6/26/2014 3:08:12 PM
    2448 (0x0990)
    Failed to delete registry value HKLM\Software\Microsoft\SMS\Task Sequence\Active Request Handle. Error code 0x80070002
    TSAgent 6/26/2014 3:08:12 PM
    2448 (0x0990)
    Failed to delete registry value HKLM\Software\Microsoft\SMS\Task Sequence\Package. Error code 0x80070002
    TSAgent 6/26/2014 3:08:12 PM
    2448 (0x0990)
    CTSAgent::Execute - Failed to launch Task Sequence manager.
    TSAgent 6/26/2014 3:08:12 PM
    2448 (0x0990)
    I tried creating a package just to check if that works, however several users have reported that task sequence is the only method that works but as that was not working in my case, so tried the package with a batch file using the same script as mentioned
    above but that came up with the below error :
    EnterRsRuningState failed to run script PatchRemoval.bat 0x87d01106
    If i try to run the same script using the CMD prompt manually on client machine, it successfully removes the patch silently.
    Not sure why this is not working as a task sequence.

    Thanks Garth,
    I am just wondering if i have used the command right (i believe i have), because one of the errors says
    On another system where this patch was already installed, there were not eventviewer logs generated for today. There were old logs and one of them was as below :
    Windows update  could not be installed because of error 2147942487 "The parameter is incorrect." (Command line: ""C:\Windows\system32\wusa.exe"  uninstall KB2914218 quiet norestart ")
    Any idea about the below ? What does this mean ?
    Failed to delete registry value HKLM\Software\Microsoft\SMS\Task Sequence\Package. Error
    code 0x80070002
    If there are no defined answers to this, i think the last resort will be to open a case with Microsoft.

  • Software Distribution wrong link

    Hello
    I recieved a approvation mail for my Software Distribution Request / Acrobat Reader
    the download link on that mail seems plain wrong !
    - I don't copy the link here since Adobe advises in the mail not to share it...-
    this link hops to a choice form where I'm redirected ...
    to the standard 2-step download process ( 1st download a 950KB loader, then loader takes forever to download the real package in some hidden place )
    - I don't copy the link here since Adobe advises in the mail not to do that-
    this is precisely what we want to avoid : 35 people waiting for 35 * 60MB downloads
    We'd like to store the big package on our LAN to upgrade 35 PCs, is that possible ?
    Is there a way to download a real full install package for Reader 10.3 / Windows XP + W7/ French ?
    Thanks in advance

    Thanks, Dave
    The link you give *is* the link I recieved by mail
    Strange enough : I made the 3 choices again on that page,
    and now I can download the full package we need ...instead of hoppin' to a consumer page, as it happened yesterday
    problem solved, though I don't know how !
    thanks again.

Maybe you are looking for

  • In Multimapping how can we configure the Receiver , Interface Deter for BPM

    Hi Friends , I am trying the the BPM scenario using Integration Process BpmPatternCollectTime from SAP BASIS ® SAP BASIS 7.00 in the namespace http://sap.com/xi/XI/System/Patterns I have done the scenario like the above . I have followed all the Step

  • Error connecting multiple BW systems to one OLTP system

    Hi BW Gurus, As part of a major project we had to create a copy of our production BW system and thus have two BW systems connected to one production R/3 system. Before we proceed with the production systems, we decided to try it out with our staging

  • Data1.cab error

    I cannot install Acrobat Pro ver 6.0 as I keep getting a data1.cab error. It says the cab is corrupt. I have tried to extract the files and indeed there is a corrupt file in the cab. Can I download a cab file for this version or is there something el

  • Adobe Acrobat 8.0 Professional

    Why is there is requirement to renew my license and make payment, in other words I thought when I bought the program, I was free to use it for as long as I wished, have Abode decided to backdate their recent license changes to include such dated prog

  • Upgrading to Studio 8

    Hi, I have a Web site that uses a dreamweaver template. In this template, I've inserted 10 swf files. These files were created with Studio MX and the swfs don't play correctly in IE 7 beta (they show up with that grey border and I have to click them