HP ProLiant Smart Array configuration during deployment with SCCM 2012 with ACU problem

Hello
I am making a OSD from HP ProLiant Gen 8 microservers.
I made an ACU script for making Smart array and logical disks, I made a capture of the existing configuration using hpssascripting -c:
Action= Configure
Method= Custom
Controller= SLOT 0
RebuildPriority= Medium
SurfaceScanMode= Idle
SurfaceScanDelay= 3
DriveWriteCache= Disabled
PredictiveSpareActivation= Disable
Array= A
Drive= 1I:0:1, 2I:0:2
OnlineSpare= No
LogicalDrive= 1
RAID= 1
Size= 953837
Sectors= 32
StripSize= 256
Caching= Enabled
When I put this script in the task sequence, it executes, but when it fails when getting to the step Apply Operating System.
Error log will say it has no bootable partition. 
When I do diskpart, I can see the disk and the partitions.
The weird thing is when I manually make the array in the Smart Array Administrator, it works fine.

Fixed, a reboot was required.

Similar Messages

  • Lync 2013 x64 silent client deployment via SCCM 2012 SP1

    Greetings everyone!
    I ran into a problem with Lync 2013 x64 silent deployment.
    I need to provide every workstation with Lync 2013 client, so i decided to use deployment via SCCM 2012 sp1.
    I created 2 msp files with OCT, one based on x86 Office 2013 Proplus, and other based on x64 Office 2013 Proplus.
    Added them as applications to sccm software library.
    Deployment of Lync 2013 x86 application was a success with over than 80% compliance. 
    But all Lync 2013 x64 automatic installations finish with different errors.
    I created special device collection for workstations with office 2010 x64 and 2013 x64, because i can't install other architecture products once it has x64 product installed.
    My membership query-rules for this collection:
    Office 2013 x64
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceId
    = SMS_R_System.ResourceId where UPPER(SMS_G_System_INSTALLED_SOFTWARE.SoftwareCode) = "{90150000-0011-0000-1000-0000000FF1CE}"
    Office 2010 x64
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceId
    = SMS_R_System.ResourceId where UPPER(SMS_G_System_INSTALLED_SOFTWARE.SoftwareCode) = "{90140000-0011-0000-1000-0000000FF1CE}"
    My application deployment type points to setup.exe in office 2013 x64 installation folder, where i created msp file in updates folder via OCT and edited config.xml file in proplus.ww folder.
    So my installation program looks like this setup.exe /adminfile updates\1lync.msp /config proplus.ww\config.xml
    The same configuration works with Lync 2013 x86 deployment, except other setup folders.
    When i try running installation program setup.exe with /adminfile and /config parameters locally, it installs successfully without errors or warnings.
    I'm trying to find out problem source, does anyone have ideas what I am doing wrong?
    Also i'm trying to reduce office 2013 installation folder size, what subfolders are necessary for Office 2013 proplus installation (still installing only lync with common files and tools)? Because now 3.5 GB package is quite hard to distribute to sccm secondary
    sites with deployment point.
    Thanks in advance.

    Hi,
    Here are some tips and tricks for your reference.
    Tips and Tricks: Deploying Lync 2013 client using SCCM 2012 | Lync 2013 Client Customization for SCCM 2012 Deployment Package
    http://zahirshahblog.com/2014/01/08/tips-and-tricks-deploying-lync-2013-client-using-sccm-2012-lync-2013-client-customization-for-sccm-2012-deployment-package/
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    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.

  • Is MDT must have for OS deployment in SCCM 2012

    I know that existing MDT could be integrated to a new SCCM.
    Is MDT must have for OS deployment in SCCM 2012 or SCCM has its own engine for OS deployment?
    --- When you hit a wrong note its the next note that makes it good or bad. --- Miles Davis

    Thanks for the answers.
    one more question...
    I am going to start SCCM deployment in test environment.
    For OS deployment part:
    if MDT is planned for integration with SCCM should I configure OS deployment in SCCM before adding MDT.
    Or in this scenario OS deployment in SCCM could not be touched.
    After all previous answers I understand that OS deployment module is part of SCCM installation and is independent from MDT.
    --- When you hit a wrong note its the next note that makes it good or bad. --- Miles Davis

  • How to find who modified Software Update deployment in sccm 2012

    Hi,
    How to find who modified(Date & Time) software update deployment in SCCM 2012 ?

    In the Console :
    Monitoring / System Status / Status Message Query
    Right Click : "Deployments Created, Modified, or Deleted" - Show Message and select your period.
    You'll have your information there.
    Benoit Lecours | Blog: System Center Dudes

  • ClassCastException during deployment with more than one used entity

    Hi,
    i am still trying to get into NW development and got one more time stuck. I have a CE 7.1 SR5 project containing a dictionary, a bean module, an EAR project and a web dynpro project.
    With the following two classes everything runs fine:
    [AT]Entity
    [AT]Table(name="TMP_USER")
    [AT]NamedQueries(value={[AT]NamedQuery(name="doLogin", query="SELECT u FROM User u WHERE u.login = :login AND u.password = :password")})
    public class User implements Serializable {
         [AT]Id
         private int id;
         private String login;
         private String password;
         private static final long serialVersionUID = 1L;
         public User() {
              super();
    // Omitted Accessors
    [AT]Stateless(name="UserSessionBean")
    [AT]WebService
    public class UserSessionBean implements UserSessionLocal
         [AT]PersistenceContext(unitName="DBAccess")
         private EntityManager em;
         public User doLogin(String login, String password)
              Query query = em.createNamedQuery("doLogin");
              query.setParameter("login", login);
              query.setParameter("password", password);
              try
                   return (User) query.getSingleResult();               
              catch(NoResultException e)
                   return null;
    build, deploy, run in webservice navigator -> ok
    Then i created a new entity:
    [AT]Entity
    [AT]Table(name="TMP_PROJECT")
    [AT]NamedQueries(value={[AT]NamedQuery(name="findAllProjects", query="SELECT p FROM Project p")})
    public class Project implements Serializable {
         [AT]Id
         private int id;
         private int ownerid;
         private String name;
         private Timestamp creationtime;
         private String description;
         private int number;
         private short subnumber;
         private static final long serialVersionUID = 1L;
         public Project() {
              super();
      Omitted Accessors
    build, deploy, run in webservice navigator -> no problem.
    Then i changed  the UserSessionBean to:
    [AT]Stateless(name="UserSessionBean")
    [AT]WebService
    public class UserSessionBean implements UserSessionLocal
         [AT]PersistenceContext(unitName="DBAccess")
         private EntityManager em;
         public User doLogin(String login, String password)
              Query query = em.createNamedQuery("doLogin");
              query.setParameter("login", login);
              query.setParameter("password", password);
              try
                   return (User) query.getSingleResult();               
              catch(NoResultException e)
                   return null;
         public Projecet testfunc()
              return null;
    And now during deployment there is an warning (in reality it´s an exception) and the bean does not work any more.
    The exception is
              1. Exception has been returned while the 'testproject.testcorp.de/testprojectear' was starting. Warning/Exception :
    [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5030] Clusterwide exception: server ID 7707450:com.sap.engine.services.deploy.container.DeploymentException:
         at com.sap.engine.services.webservices.server.deploy.WebServicesDeployManager.makeStartInitially(WebServicesDeployManager.java:693)
         at com.sap.engine.services.deploy.server.application.StartInitiallyTransaction.makeStartInitially(StartInitiallyTransaction.java:184)
         at com.sap.engine.services.deploy.server.application.StartInitiallyTransaction.prepare(StartInitiallyTransaction.java:145)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:420)
         at com.sap.engine.services.deploy.server.application.StartTransaction.doStartInitiallyGlobal(StartTransaction.java:449)
         at com.sap.engine.services.deploy.server.application.StartTransaction.doStartInitially(StartTransaction.java:437)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:178)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:420)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:445)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.super_MakeAllPhases(ParallelAdapter.java:337)
         at com.sap.engine.services.deploy.server.application.StartTransaction.makeAllPhasesImpl(StartTransaction.java:550)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:251)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:392)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3389)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3375)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3278)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3251)
         at com.sap.engine.services.dc.lcm.impl.J2EELCMProcessor.doStart(J2EELCMProcessor.java:99)
         at com.sap.engine.services.dc.lcm.impl.LifeCycleManagerImpl.start(LifeCycleManagerImpl.java:62)
         at com.sap.engine.services.dc.cm.deploy.impl.LifeCycleManagerStartVisitor.visit(LifeCycleManagerStartVisitor.java:34)
         at com.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
         at com.sap.engine.services.dc.cm.deploy.impl.DefaultDeployPostProcessor.postProcessLCMDeplItem(DefaultDeployPostProcessor.java:80)
         at com.sap.engine.services.dc.cm.deploy.impl.DefaultDeployPostProcessor.postProcess(DefaultDeployPostProcessor.java:56)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.doPostProcessing(DeployerImpl.java:741)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.performDeploy(DeployerImpl.java:732)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.doDeploy(DeployerImpl.java:576)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.deploy(DeployerImpl.java:270)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.deploy(DeployerImpl.java:192)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImplp4_Skel.dispatch(DeployerImplp4_Skel.java:875)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:351)
         at com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:70)
         at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:62)
         at com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:37)
         at com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest(FCAConnectorImpl.java:877)
         at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:53)
         at com.sap.engine.services.cross.fca.MessageReader.run(MessageReader.java:58)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:108)
         at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:304)
    Caused by: com.sap.engine.interfaces.webservices.server.deploy.WSDeploymentException: Exception occured during web services deployment. Unable to generate serialization framework for web service UserSessionBeanService, application testproject.testcorp.de/testprojectear.
         at com.sap.engine.services.webservices.server.deploy.ws.WSInitialStartProcess.generateJAXWSFramework(WSInitialStartProcess.java:360)
         at com.sap.engine.services.webservices.server.deploy.ws.WSInitialStartProcess.generateJAXWSFramework(WSInitialStartProcess.java:220)
         at com.sap.engine.services.webservices.server.deploy.ws.WSInitialStartProcess.execute(WSInitialStartProcess.java:140)
         at com.sap.engine.services.webservices.server.deploy.WSBaseAbstractDProcess.makeProcess(WSBaseAbstractDProcess.java:316)
         at com.sap.engine.services.webservices.server.deploy.WebServicesDeployManager.makeStartInitially(WebServicesDeployManager.java:688)
         ... 37 more
    Caused by: java.lang.ClassCastException: class com.sun.xml.bind.v2.model.impl.RuntimeBuiltinLeafInfoImpl$5:library:jaxb20[AT]com.sap.engine.boot.loader.ResourceMultiParentClassLoader[AT]1489c06[AT]alive incompatible with class com.sun.xml.bind.v2.model.impl.ClassInfoImpl:library:jaxb20[AT]com.sap.engine.boot.loader.ResourceMultiParentClassLoader[AT]1489c06[AT]alive
         at com.sun.xml.bind.v2.model.impl.ClassInfoImpl.getBaseClass(ClassInfoImpl.java:170)
         at com.sun.xml.bind.v2.model.impl.RuntimeClassInfoImpl.getBaseClass(RuntimeClassInfoImpl.java:58)
         at com.sun.xml.bind.v2.model.impl.RuntimeClassInfoImpl.getBaseClass(RuntimeClassInfoImpl.java:38)
         at com.sun.xml.bind.v2.model.impl.ModelBuilder.getClassInfo(ModelBuilder.java:142)
         at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:48)
         at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:40)
         at com.sun.xml.bind.v2.model.impl.ModelBuilder.getTypeInfo(ModelBuilder.java:189)
         at com.sun.xml.bind.v2.model.impl.TypeRefImpl.calcRef(TypeRefImpl.java:56)
         at com.sun.xml.bind.v2.model.impl.TypeRefImpl.getTarget(TypeRefImpl.java:33)
         at com.sun.xml.bind.v2.model.impl.RuntimeTypeRefImpl.getTarget(RuntimeTypeRefImpl.java:22)
         at com.sun.xml.bind.v2.model.impl.RuntimeTypeRefImpl.getTarget(RuntimeTypeRefImpl.java:15)
         at com.sun.xml.bind.v2.model.impl.ElementPropertyInfoImpl$1.get(ElementPropertyInfoImpl.java:38)
         at com.sun.xml.bind.v2.model.impl.ElementPropertyInfoImpl$1.get(ElementPropertyInfoImpl.java:41)
         at java.util.AbstractList$Itr.next(AbstractList.java:422)
         at com.sun.xml.bind.v2.model.impl.ModelBuilder.getClassInfo(ModelBuilder.java:139)
         at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:48)
         at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:40)
         at com.sun.xml.bind.v2.model.impl.ModelBuilder.getTypeInfo(ModelBuilder.java:189)
         at com.sun.xml.bind.v2.model.impl.TypeRefImpl.calcRef(TypeRefImpl.java:56)
         at com.sun.xml.bind.v2.model.impl.TypeRefImpl.getTarget(TypeRefImpl.java:33)
         at com.sun.xml.bind.v2.model.impl.RuntimeTypeRefImpl.getTarget(RuntimeTypeRefImpl.java:22)
         at com.sun.xml.bind.v2.model.impl.RuntimeTypeRefImpl.getTarget(RuntimeTypeRefImpl.java:15)
         at com.sun.xml.bind.v2.model.impl.ElementPropertyInfoImpl$1.get(ElementPropertyInfoImpl.java:38)
         at com.sun.xml.bind.v2.model.impl.ElementPropertyInfoImpl$1.get(ElementPropertyInfoImpl.java:41)
         at java.util.AbstractList$Itr.next(AbstractList.java:422)
         at com.sun.xml.bind.v2.model.impl.ModelBuilder.getClassInfo(ModelBuilder.java:139)
         at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:48)
         at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.getClassInfo(RuntimeModelBuilder.java:40)
         at com.sun.xml.bind.v2.model.impl.ModelBuilder.getTypeInfo(ModelBuilder.java:189)
         at com.sun.xml.bind.v2.model.impl.ModelBuilder.getTypeInfo(ModelBuilder.java:204)
         at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:356)
         at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:217)
         at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:76)
         at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:55)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:210)
         at javax.xml.bind.ContextFinder.find(ContextFinder.java:368)
         at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:574)
         at com.sap.engine.services.webservices.jaxws.j2w.JaxWsSchemaGenerator.genJaxbMappings(JaxWsSchemaGenerator.java:274)
         at com.sap.engine.services.webservices.jaxws.j2w.JaxWsIMappingGenerator.generateWSDL(JaxWsIMappingGenerator.java:103)
         at com.sap.engine.services.webservices.server.deploy.ws.WSInitialStartProcess.generateJAXWSFramework(WSInitialStartProcess.java:286)
         ... 41 more
    I already downgraded my Java JRE/JDK to 1.5.0_15 as it was hinted here in the forum, but the problem persists. Any idea what is wrong?

    Thanks for the answer, but i am not using this wizard. Some how this project class must be flawed.
    public User testfunc()
    return null;
    works, but changing to
    public Project testfunc()
    return null;
    immediately leads to the above deployment error.
    This is the offending class, it compiles without warning
    package de.testcorp.testproject.beans;
    import java.io.Serializable;
    import java.sql.Timestamp;
    import javax.persistence.*;
    @Entity
    @Table(name="TMP_PROJECT")
    @NamedQueries(value={@NamedQuery(name="findAllProjects", query="SELECT p FROM Project p")})
    public class Project implements Serializable {
         @Id
         private int id;
         private int ownerid;
         private String name;
         private Timestamp creationtime;
         private String description;
         private int number;
         private short subnumber;
         private static final long serialVersionUID = 1L;
         public Project() {
              super();
         public int getId() {
              return this.id;
         public void setId(int id) {
              this.id = id;
         public int getOwnerid() {
              return this.ownerid;
         public void setOwnerid(int ownerid) {
              this.ownerid = ownerid;
         public String getName() {
              return this.name;
         public void setName(String name) {
              this.name = name;
         public Timestamp getCreationtime() {
              return this.creationtime;
         public void setCreationtime(Timestamp creationtime) {
              this.creationtime = creationtime;
         public String getDescription() {
              return this.description;
         public void setDescription(String description) {
              this.description = description;
         public int getNumber() {
              return this.number;
         public void setNumber(int number) {
              this.number = number;
         public short getSubnumber() {
              return this.subnumber;
         public void setSubnumber(short subnumber) {
              this.subnumber = subnumber;

  • Pre deploy applications sccm 2012

    Hey Everyone,
       I have a question regarding deployment of software. Current layout is as follows : 2200 machines ranging from always on desktops to about 400 only laptop users. We use SCCM 2012 to deploy applications etc. I am currently updating java and Imprivata
    Single Sign On. Regardless the process is to remove the old versions of JAVA , install a newer one , once that is complete lay down a newer version of Single Sign-On which requires a reboot. Since one depends on a another we decided that this is the best opportunity
    to update both. Anyway I push the software out to to machine collections as all machines need this regardless of users.
      I cant get the laptops that go home for the day , since I can't deploy during the day the machines are not getting this update. There is a setting within SCCM that allows a deployment to be " predeployed" to the users machine. Is there anyway
    I can utilize that to apply to the machines so that even when a laptop is offline the content is already pre-deployed to the machine so all that needs to happen is  ; a deadline to be set
    and the clients to be configured to automatically install required software after business hours ? I can push a script that would copy the installation files to the machines and kick of a script or a scheduled task to install the updates ,
    or many other ways. But I really wanted to use SCCM and since I noticed that check box for pre deplyment of content to the users machine seems like what I want. But since it targets users primary device and I am deploying to a device collection targeting machines
    not users  it doesn't seem to be working. Any ideas ? Is this possible ? 

    I have looked at Powershell deployment toolkit as it offers users the ability to snooze installs etc. But I don't have the time to adjust my deployment to this format as my deadline is coming up. But going back to your comment about packages having the ability
    to pre download content , wow that is awesome - huge limitation on application types in my opinion. Let me walk you through my mind set to see if I got the logic down please.
    1) I set the Scheduling on a deployment to a set deadline of 11/5/2014.
    2) On the User Experience tab I set the following 2 check boxes : When the installation deadline is reached , allow the following activities to be performed :
         a) Install Software
         b) System restart if required to complete the installation -  ( Do I need to set this if my deployment type : User Experience tab has the setting set of " Configuration manager client will force a mandatory device restart "
    3) With regards to Maintenance Window and Work Hours do I need to worry about anything here ? I know that if the deadline is set to a time where the maintenance window doesn't match it will be applied at the next maintenance window. But do I need to set
    anything else here to have this automatically get apply ?
    4 And last on the client side within the software center - options tab - computer maintenance " automatically install or uninstall required software and restart the computer only outside of the specified business hours " do I need to set this check
    box ? And do I need to specify logon hours to match up with the maintenance windows to have the software try and deploy prior to deadline but still offline ? 
    What I am trying to achieve is to get the software pre downloaded to the machines and then automatically get deployed during off hours but hopefully prior to the deadline. Meaning is there anyway using any of the mentioned steps above to have the system
    try and install the packages everyday between certain hours and once the deadline is reached to just install ? 

  • Windows 7 Deployment using SCCM 2012

    I am installing Windows 7 Enterprise 64bit on HP Desktops and Laptops using SCCM 2012 task sequence. I captured an image from the reference computer using capture media. The image works fine on Hp Desktops but when I install the same image on HP laptops,
    I get an error message right at the end "Windows Setup could not configure Windows to run on this computer's hardware". I captured another image with plain Windows 7 Enterprise without SP1, updates and drivers. it works perfectly fine on all desktops
    and laptops both. Below is the setupact and setuperr error logs. Much appreciated. 
    SETUPACT.LOG
    capisp.dll::CryptoSysPrep_Specialize: assigned CAPI machine guid "d01b5e9b-0af5-4b3c-a712-70977e79a177"
    2014-08-26 21:19:04, Info                         capisp.dll::SamConnect failed: c00000dc
    2014-08-26 21:19:04, Info                         capisp.dll::CryptoSysPrep_Specialize: DisableAdministratorIfApplicable failed
    2014-08-26 21:19:04, Info                         capisp.dll::CryptoSysPrep_Specialize: returning 65b
    2014-08-26 21:19:04, Error      [0x0f0082] SYSPRP LaunchDll:Failure occurred while executing 'C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize', returned error code 1627[gle=0x000003e5]
    2014-08-26 21:19:04, Info                  IBS    Callback_Specialize: Internal Providers Specialized Failed. System can't proceed to handle Internal Providers
    2014-08-26 21:19:04, Info                  IBS    Callback_Specialize: Specialize return: [1627]
    2014-08-26 21:19:04, Error      [0x060435] IBS    Callback_Specialize: An error occurred while either deciding if we need to specialize or while specializing; dwRet = 0x65b
    2014-08-26 21:19:04, Info       [0x0640ae] IBSLIB PublishMessage: Publishing message [Windows Setup could not configure Windows to run on this computer's hardware.]
    SETUPERR.LOG
    2014-08-26 21:16:24, Error                 SYSPRP SPPNP: Error 0x25 (CONFIGRET) occurred while determining the buffer size needed to hold the list of devices that are using service usbhub20.
    2014-08-26 21:16:24, Error                 SYSPRP SPPNP: Error 0x424 occurred while opening a handle to the service usbhub20.[gle=0x00000424]
    2014-08-26 21:19:04, Error      [0x0f0082] SYSPRP LaunchDll:Failure occurred while executing 'C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize', returned error code 1627[gle=0x000003e5]
    2014-08-26 21:19:04, Error      [0x060435] IBS    Callback_Specialize: An error occurred while either deciding if we need to specialize or while specializing; dwRet = 0x65b

    Hi,
    From your error log, we could see the root is the incorrect driver.
    How did you get the driver in your first image? If you enable "PersistAllDeviceInstalls" configuration when you capture the image, all Plug and Play devices in reference computer are uninstalled during the generalize pass and then reinstalled
    during the specialize pass.
    However, it‘s not always applied to your laptop.
    Thus I suggest you download the proper driver or change the BIOS hard disk drive setting to IDE to check the result.
    Warning: This procedure may involve changing your hard disk drive settings in the BIOS. Incorrect changes to the BIOS of your computer can result in serious problems. Microsoft cannot guarantee that problems that result from changes to the
    BIOS can be resolved. Change the BIOS settings at your own risk. Incorrect or corrupted BIOS settings can cause startup problems or shutdown problems.
    In addition, you could refer to the article below:
    “Windows Setup could not configure Windows on this computer’s hardware” installation error on a Windows 7-based or a Windows Server 2008 R2-based computer
    http://support.microsoft.com/kb/2466753/en-us
    Karen Hu
    TechNet Community Support

  • Office 365 ProPlus deployment from SCCM 2012

    hi, I am trying to deploy office 365 proplus using sccm 2012 , everything seems to good, setup.exe run with /configure (path for file). but it is only running nothing installed on systems.
    I used for reference 
    http://www.youtube.com/watch?v=-PNTdap9hwU
    https://sccmguru.wordpress.com/tag/office-365-proplus/
    please help .
    manish yadav

    Hi,
    Please refer to the links below:
    Using Office 365 ProPlus with the Office Deployment Tool
    http://www.petri.com/using-office-365-proplus-with-office-deployment-tool.htm
    How to deploy Office 365 with Click-to-Run and ConfigMgr
    http://www.configmgr.no/2013/06/09/how-to-deploy-office-365-with-click-to-run-and-configmgr/
    Getting started guide for deploying Office 365 ProPlus
    http://technet.microsoft.com/en-us/library/jj839718(v=office.15).aspx
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    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.

  • CRM2013 Silent deployment through SCCM 2012 R2

    Hello.
    First of all im sorry, if im posting in the wrong Forum - but this seemed as the correct one.
    I want to deploy CRM 2013 Outlook Client, through Software center - but i cant seem to get it working.
    I cant seem to find a way, to disable / accept the License Agreement automatically, so that our Domain Users can enjoy a completely silent CRM deployment.
    I have tried several guides, and i have also tried with SetupClient.exe /A - and the "guide" completes, but theCrmClient_32.msi dosent work.
    I would really appreciate, if some of you guys would help me out :)
    We are using SCCM 2012 R2
    Datatechnician

    Looks like you need the /Q switch for this
    http://msdn.microsoft.com/en-us/library/hh699665.aspx
    /Q              
    Quiet mode installation. This parameter requires a configuration file in XML format. The /i parameter contains the name of the XML configuration file. No dialog boxes or error messages will appear on the display screen. To capture error message information,
    include the log file parameter (/L or /LV).
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson
    Hello.
    Ive found the solution my self :)
    SetupClient.exe /quiet /passive /norestart
    I didnt thought that you could have a /q and /p at the same time
    Datatechnician

  • WinPE Error Capture and Deploy Win7 - SCCM 2012 R2 w/ CU1

    Hi Forum
    Deploy and Capture: Windows 7 x64
    SCCM Primary single site server: Server 2012 R2
    Version: SCCM 2012 R2 w/ CU1
    Environment is Hyper-V on Windows 8.1, deploying to a Gen1 VM with a legacy adapter.
    I am running into an issue whilst building a lab environment. I have built a Capture and Deploy TS (using the standard TS, ie not MDT although this is integrated) and deployed to an imported machine using the MAC address via PXE. Custom Client package has
    been created and put against the TS.
    The machine picks up the PXE response and boots into the SCCM WinPE environment and I choose the TS. The only currently available TS is the Build and Capture.
    It runs through the TS restarting at various points as expected and then after the Client Manager package is installed it restarts and runs the TS... at this point it starts saying. "Initiating Hardware Devices.." (or something to that effect).
    It does this for about 15 seconds before I get this error:
    Windows PE initialization failed with error code 0x8022001B
    Seen here:
    I am unable to get the cmd prompt up at this point and it will restart and carry on a normal build, no TS running, meaning no capture.
    If any can advise, please do.
    Thanks in advance
    NN

    Hyper-V should work fine without any drivers injected, and you did your VM correctly.
    During this error, what you see in a back ground, ConfMgr wallpaper or Windows 7 black first-run screen "preparing/first run"? I´m just thinking, is there any chance, that you have additional restart step set to boot to WinPE, instead of booting
    to default OS?
    Otherwise, you will need to be able to Access CMD with F8 for more troubleshooting. Make sure you have F8 command Support enabled on boot image and re-distrubute it. Or create new boot image as Peter suggested.  

  • MS Office Pro 2013 Deployment through SCCM 2012 R2

    Hi Friends,
    I have deployed MS Office Pro 2013 through SCCM 2012. But from Windows 7 Client Machines It's not Installing. Noticed following error in Software Center.
    I'm testing two deployments before bring into production.
    Test Machine 1 :  Purpose = Available 
    From Software Center I have found Test Machine 1 is Status failed.
    Test Machine 2 : Purpose = Required
    From Software Center I have found Test Machine 2 is Status post due-will be retried
    The following Error code is same for both Machines.
    ====================================================
    The software change returned error code 0x87D00607(-2016410105).
    ====================================================
    Any idea please .
    Regards,Ali

    Hi,
    Check out this great guide from Ronni on how to deploy Office 2013 using Configuration Manager 2012, a good read.https://gallery.technet.microsoft.com/office/How-to-Deploying-Office-0f954e7f
    Are the content succefully deployed to all DPs?
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Office 2013 Professional Plus - 32 bit Deployment takes an unacceptable time to deploy in SCCM 2012 - SP1 CU3

    We recently migrated over to SCCM 2012 SP1 - CU3 the first of the year from SCCM 2007 SP2.  We have used SCCM in the past to deploy Office 2010 and had deployed Office 2013 to our IT Dept. before moving over to SCCM 2012.  The deployment went as
    expected.  Now that we are ready to start deploying Office 2013 to our corporate workstations, the deployment time is running 4.5 hours to 5.5 hours from the local site server DP.  I am afraid to find out what time we are looking at for remote DP's. 
    The three factors that are different is that our SCCM site server is virtual, it is running 2012 for the OS, and obviously SCCM 2012-SP1 - CU3.   We are using the same package source files.   Previous to a successful deployment we were
    seeing hash mismatch errors which MS support pointed us to the nic driver on the VM was using E1000E and to change it to a VMX something driver.
    So I guess my question is anyone else out there deploying Office 2013 ProPlus - 32 bit from this type of environment?  Our previous deployment time for office was a little over an hour (not five hours).  Any suggestions where to look to improve
    the deployment time? 
    I am expected to deploy this in one week and have been working on these issues for weeks.

    I see now that you are using a combination of scripts and ConfigMgr package/program.
    The AppEnforce.log file is for use with the new ConfigMgr Application model.
    Is there any reason that you don't use the new model for deploying Office 2013? It's a single step process and perfect for it. If you use the Office Customisation Tool you can customise what you like. The process will then uninstall Office 2010 and install
    Office 2013.
    This is how you do it
    http://www.gerryhampsoncm.blogspot.ie/2013/03/sccm-2012-sp1-step-by-step-guide-part_9368.html
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Configuring Reporting services for SCCM 2012

    Hi,
    I just finish create SQL reporting services ( configure Database, report manager URL) in SQL 2008 R2 for SCCM 2012. When I open the Report option in SCCM console (Monitoring --> Report), no report listed there and then I try to add in Reporting service
    point for it, but get an error message
    "There is a problem connecting to the specific reporting server. Please check the connection and make sure SQL reporting service is running on the specified server"
    I manually browse to http://sqlserver/reportserver or
    http://sqlserver/reports , that is no any folder exist there (I assume when I configure reporting service it will automatic create a folder for it with all report inside?). Anyone can guide me on how to solve this issue?
    Regards,

    Hi,
    hi ,
    I am new to SCCM 2012 group and i have knowledge on sccm2007. i want to discuss some issue what i have with SCCM2012 installtion. The issue is my machine got rebooted while installing sccm 2012 SP1.i have already installed all the prerequisites for SCCM2012.i
    am installing sccm2012 on Hyper-V machine.
    Please see my system configuration below:
    DomainController(2008R2 server) : 512MB RAM, AD things and DNS ,DHCP has installed on it.
    System center server(2008R2) : 1028MB RAM , Sql 2008 server installed on it.
    i tried to install it many times but still i got the same issue.
    Could anybody please help me with this ?
    This is a new question. So please ask this question on a new thread in this forum.
    Thank you.
    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.

  • How to stop Application deployment in sccm 2012?

    Hi All
    If a application is wrongly deployed to wrong collection in sccm 2012
    how to stop that and where to change settings like we used to do in sccm 2007 we can
    stop it by program properties.

    You have kind of the same feature with Applications in CM2012. You can just right-click an Application, and select "Retire".
    That will change the status of the Application from "Active" to "Retired", and should prevent installations. When you've fixed the problem, you can just "Reinstate" the Application again, and everything should be back to normal.
    But I totally agree with Jason. Make sure you do the proper testing, so you won't have to do this at all :-)
    Ronni Pedersen | Microsoft MVP - ConfigMgr | Blogs:
    www.ronnipedersen.com/ and www.SCUG.dk/ | Twitter
    @ronnipedersen

  • IE11 prereqs deploy via SCCM 2012

    Hi,
    To deploy IE 11 on Windows 7, apparently you need to install 9 prereqs (see http://www.itninja.com/blog/view/how-to-package-internet-explorer-11-x64-for-windows-7-x64): 
    These prereqs are: KB2834140
    KB2670838 KB2639308 KB2533623 KB2731771
    KB2729094 KB2786081 KB2888049 KB2882822
    I don't find the prereqs in red within sccm 2012. Did check the classifications (checked them all in software update point) and did a full sync.
    Please advise howto find/deploy them (I hoped to do this via windows updates and not via seperate packages).
    J.
    Jan Hoedt

    Hi,
    I just checked the first Patch:
    http://support.microsoft.com/kb/2670838
    And there you can find the section: How to obtain this update.
    Is there is Windows Update not noted, you can't receive this Patch through Windows Updates. Consider to deploy the Patch as prerequisite as an application. Here you can find an example of installing hotfixes as prerequisite for the App-V client:
    http://scug.be/sccm/category/detection-methods/
    Detection method is VBScript. Ar you want to create a Detection method with Powershell, refer to this blog post:
    https://sccmfaq.wordpress.com/2013/03/19/sccm-2012-application-detection-with-powershell-and-code-signing/
    Hope this helps.
    www.sccmfaq.ch

Maybe you are looking for