Looks like deployment completed successfully, but there are errors in BDD/smsts Log

I am new to MDT and getting ready start using the tool for deployments, but I am concerned about some errors in the log files.  The systems we have deployed appear fine, but I want to ask if I should be concerned about these errors.  We do not
migrate and user data and are using MDT to upgrade older equipment to windows 8.  When the deployment has been completed, it reports 0 errors and 0 warnings.
Thank you for any help!
Here is the error that is in the smsts.log that appears multiple times Error - (__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002)
Parsing task sequence to get schema version
TSManager 1/9/2015 12:49:10 PM
540 (0x021C)
Task sequence version 3.00 TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Task sequence schema version is 3.00 TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Current supported schema version is 3.10 and 3.00
TSManager 1/9/2015 12:49:10 PM
540 (0x021C)
Processing get action table request TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Got root node now getting list of all child elements
TSManager 1/9/2015 12:49:10 PM
540 (0x021C)
There are 7 first level steps or groups TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Processing group TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Parsing group node: Initialization TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Description: Initialize the TS environment TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
ContinueOnError: false TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Disable: false TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\nts_sms_fre\SMS\common\inc\ccmxml.h,566)
TSManager 1/9/2015 12:49:10 PM
540 (0x021C)
another error
DefaultVarlist found TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Variable name: ImageSize TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Variable name: ImageProcessorSpeed TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Variable name: ImageMemory TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Variable name: VerifyOS TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Action command line: cscript.exe "%SCRIPTROOT%\ZTIValidate.wsf"
TSManager 1/9/2015 12:49:10 PM
540 (0x021C)
Adding instruction at 4 TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Parsing step node: Check BIOS TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
Description: TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
ContinueOnError: false TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
SuccessCodeList: 0 3010 TSManager
1/9/2015 12:49:10 PM 540 (0x021C)
(__hrMethodRetVal == ((HRESULT)0L)) || (bFailIfMissing == false), HRESULT=80070002 (e:\nts_sms_fre\SMS\common\inc\ccmxml.h,566)
TSManager 1/9/2015 12:49:10 PM
540 (0x021C)

Error 80070002 is Windows can not find the file specified. Look at your BDD.log at the time stamp SMSTS.log shows this error.  I highly doubt there is anything wrong though. Some of the stuff you see in SMSTS.log can be along the lines of hey does
blah exist? If blah doesn't exist then do some stuff else do some other stuff.
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Similar Messages

  • Databse connected successfully but there are something wrong in my procedur

    hi
    i am writing a small java application that use Microsoft SQL Server 2000 .the test application show that i am successful connect to the database.
    But in my application when my press the query button ,the resulte cannot append on the textrea, i am double about it .Can anyone help me out of this??thanks !! the fllowing are my code:
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    public class jdbc //main class
    {  public static void main(String args[])
         GUI gui=new GUI();//GUI
         gui.pack(); //excute GUI
    class GUI extends Frame implements ActionListener
         TextArea text;Panel panel; TextField sno;Button btn;
         GUI()//
         super("made by yaowu");
              setLayout(new BorderLayout());
         setBackground(Color.cyan);
         setVisible(true); text=new TextArea();
         btn=new Button("query");
         sno=new TextField(16);
         panel=new Panel();
         panel.add(new Label("entre the id of student(include10number)"));
    panel.add(sno);panel.add(btn);
         add("North",panel);add("Center",text);
         text.setEditable(false);btn.addActionListener(this);
         addWindowListener(new WindowAdapter(){
         public void windowClosing(WindowEvent e)
              setVisible(false);
              System.exit(0);}});}
              public void actionPerformed(ActionEvent e){
              if(e.getSource()==btn)// when press
                   {text.setText("rusult"+'\n');
                   try{
                   Liststudent();
                   catch(SQLException ee){}
    public void Liststudent() throws SQLException//connct with database
         String xh,xm,xb,nl,em,tl;
         try{
         Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
         catch(ClassNotFoundException e){e.printStackTrace();
    System.out.println("Error Trace in getConnection() : " + e.getMessage());}
    catch(java.lang.InstantiationException e)
              catch(java.lang.IllegalAccessException e)
    String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=mydata";
    String user="";
    String password="";
    Connection con= DriverManager.getConnection(url,user,password); //
         Statement sql=con.createStatement();//creat Statement
         ResultSet rs=sql.executeQuery("select* from xsqk"); //xsqk table
         while(rs.next()) //ptint the result
              {   xh =rs.getString("id");
                   xm=rs.getString("name");
              xb=rs.getString("sex");
                   nl=rs.getString("age");
    em=rs.getString("E�Mail");
    tl=rs.getString("tl");
              if(xh.trim().equals(sno.getText().trim()))
                   text.append('\n'+"id"+" "+"name"+" "+"sex"+" "+"age"+" "+"E-Mail"+" "+"tl"+'\n');
                   text.append('\n'+xh+" "+xm+" "+xb+" "+nl+" "+em+" "+tl+'\n');
    }

    Something is wrong but your code doesn't care: catch(SQLException ee){}What happens if there is an SQL exception? Nothing. That's probably what happened. Try this to find out: catch(SQLException ee){ee.printStackTrace();}

  • I 've just installed Firefox for the first time (v9.0.1) & can't save any bookmarks. I don't get an error message & it looks like my bookmark saved but when I go in to look at my bookmarks, there are none there.

    I'm also having trouble importing my favourites from IE. I've gone through the steps to Import Data for Another Browser and it looks like it has worked but when I go to view my bookmarks it is still empty.

    Hi,
    Please see [https://support.mozilla.org/en-US/kb/how-do-i-use-bookmarks?redirectlocale=en-US&redirectslug=Bookmarks this.] You can look at the star in the location (address) bar. If it's colored, it usually means the page has been successfully bookmarked.
    For importing from Internet Explorer please see [https://support.mozilla.org/en-US/kb/Importing%20favorites%20and%20other%20data%20from%20Internet%20Explorer this.] You can also try the [https://support.mozilla.org/en-US/kb/Importing%20Bookmarks%20from%20an%20HTML%20File HTML] method.

  • How do I find my bookmarks and tagged pages? I update to newest Firefox and now they are gone- it looks like a completely new Firefox. What do I do?

    I update to newest Firefox and now they are gone- it looks like a completely new Firefox. What do I do? There is nothing in my toolbar, or history, or bookmarks. I have also none of my old slides or whatever they are called when I open a new tab. HELP!

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/

  • Eraser tool in Photoshop CS4 acts as if it is transparent when on brush or pencil mode. Block acts like its not transparent at all but there are no options for opacity, flow or brush size. Whats wrong and how to I make the brush and pencil eraser erase co

    Eraser tool in Photoshop CS4 acts as if it is transparent when on brush or pencil mode. Block acts like its not transparent at all but there are no options for opacity, flow or brush size. Whats wrong and how to I make the brush and pencil eraser erase completely without having to go over it multiple times?
    It started randomly about two weeks ago and I thought it was a glitch that would just go away. But now I am getting sick of using only the block eraser on one size. Help?

    The easiest thing to start with is to reset the Eraser Tool.
    Right click on the Eraser icon in the tool options bar and then click on Reset Tool.

  • Goodnight. as you know apple has evolved considerably until today but there are people who do not have ability to buy new products. in my case I would like to know why the apple do not let the iphone 3g update to iOS 4.3 as are several applications that c

    goodnight. as you know apple has evolved considerably until today but there are people who do not have ability to buy new products. in my case I would like to know why the apple do not let the iphone 3g update to iOS 4.3 as are several applications that can not put on my iphone 3g due to this reason. Why does not Apple make a repository with applications for ios 4.2.1? or else do not work in an update to ios 4.3 on iphone 3g?

    This has nothing to do with Apple, as Apple does not make the apps.
    This is the decision of the app maker.
    Contact those app makers and ask them why they do this.

  • HT1386 i have albums that will not sync now. I have only owned my ipod for 5 mo and it appeared to sync fine. Now it say that the process is complete but there are 3 items that will not sync to my ipod. I i just purchased from the store!!

    i have albums that will not sync now. I have only owned my ipod for 5 mo and it appeared to sync fine. Now it say that the process is complete but there are 3 items that will not sync to my ipod. I i just purchased from the store!! please help! thanks maggibnd

    Do they play in iTunes?
    Can you directly redownload them by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I have recently purchased a new computer and photoshop element. It looks like its downloaded it but I don't know how to access it. it says file are ready...down load files have been extracted and saved to folder....launch PS elements and open specific fol

    I have recently purchased a new computer and photoshop element. It looks like its downloaded it but I don't know how to access it. it says file are ready...down load files have been extracted and saved to folder....launch PS elements and open specific folder. it looks like it downloads. It then keeps taking me back to this page. Im not sure where to go next

    if you have a win os you should have dl'd an exe and a 7z file.
    put both in the same directory and double click the exe.

  • I have uninstalled Adobe app, and Mac keeper, but there are still both two icon of them at the top the screen, does that mean I didn't uninstall them completely ? Anybody could help ?

    i have uninstalled Adobe app, and Mac keeper, but there are still both two icon of them at the top the screen, does that mean I didn't uninstall them completely ? Anybody could help ?

    See here for General Info  >  Uninstalling applications
    And see here for...
    MacKeeper have recently said that the uninstaller from here:
    http://applehelpwriter.wordpress.com/2011/09/21/how-to-uninstall-mackeeper-malwa re/
    now works
    From Here  >  https://discussions.apple.com/docs/DOC-3036

  • HT204023 I have iphone 4(ios 5.1.1)but there are no any icon like personal hotspot. How can i get it to my phone. Please help me. Thank you.

    I have iphone 4(ios 5.1.1)but there are no any icon like personal hotspot. How can i get it to my phone. Please help me. Thank you.

    The personal hotspot is not an app or an icon; it is a setting. You must first have your carrier provision it, then you turn it on in settings. Most carriers charge extra for tethering.

  • After restoring my iphone 4,it went o and i haveto restore it again,but this time,there are errors like,error 21.which i have trie fixing several times.what do i do,its so frustrating.

    after restoring my iphone 4,it went o and i haveto restore it again,but this time,there are errors like,error 21.which i have trie fixing several times.what do i do,its so frustrating.

    Hi ..
    Help for error 21 >  Resolve iOS update and restore errors

  • I am in a hotel in Panama and although I have sharing completely switched off there are still computers connecting. How do I stop others sharing?

    I am in a hotel in Panama and although I have sharing completely switched off there are still computers connecting. How do I stop others sharing?

    I think you are seeing sharing networked computers in your sidebar.
    That doesn't mean they are connecting to you, or even that you can connect to them (they are likely pass word protected).  It's a bit like looking around your room and seeing a bunch of computers on tables... you can see them, but that doesn't mean you have access to them.
    It's also like seeing a list of WIFI networks in your Airport menu window - just because they're listed doesn't mean you can connect to them, or they to you.
    Does that make sense?

  • My computer just had to get a new hard drive and we reloading info onto the new hard drive...my iphoto pics are all, there save about 8, but there are NO thumbnails. I tried rebuilding the thumbnails...nothing. I tried creating a new library...nothing.

    I have recently had to purchase a new battery and hard drive. Because it wouldn't back up completely, I was able to recover most information, but it looked a bit different or I have found items in different places. One thing that is happening is in iphoto. All my pics are there, but there are NO thumbnails visible. I have tried rebuilding the thumbnails...nothing. I have tried creating a new library...no info even transferred. Any suggestions?

    What version of iPhoto?
    Can you view the pics at full size?

  • The user or users have been added successfully, but there was an error in sending the e-mail message. The server may not be set up correctly to send e-mail. To verify that e-mail is configured correctly, contact your server administrator

    I got this problem when I tried to configure out-going email and add an account to farm administrator group.
    I configure out-going email according to this website http://technet.microsoft.com/en-us/library/cc288949.aspx
    Here are the screen shots.
    The SMTP server and email accounts work out OK when I use Outlook 2010 to test.
    Anyone can help me about it? Thanks.
    Here is the log.
    09/20/2012 09:21:00.36 w3wp.exe (0x1F7C)                      
    0x1138
    SharePoint Foundation         E-Mail                        
    8gsf
    High    
    #160008: The e-mail address 'admin3.sharepoint@domain' contains illegal
    characters. df98555c-612f-4a58-9443-ab6e9a4fcc53
    09/20/2012 09:21:00.36 w3wp.exe (0x1F7C)                      
    0x1138
    SharePoint Foundation         General                      
    8kh7 High    
    Cannot complete this action.  Please try again.
    df98555c-612f-4a58-9443-ab6e9a4fcc53
    09/20/2012 09:21:00.36 w3wp.exe (0x1F7C)                      
    0x1138
    SharePoint Foundation         E-Mail                        
    7946 Critical
    Cannot complete this action.  Please try again.
    df98555c-612f-4a58-9443-ab6e9a4fcc53
    09/20/2012 09:21:00.36 w3wp.exe (0x1F7C)                      
    0x1138
    SharePoint Foundation         Runtime                      
    tkau Unexpected
    Microsoft.SharePoint.SPException: The user or users have been added successfully, but there was an error in sending the e-mail message. The server may not be set up correctly to send e-mail. To verify that e-mail is configured correctly, contact your
    server administrator.    at Microsoft.SharePoint.ApplicationPages.AclInv.SendEmailInvitation(EntityEditor picker, String subject, String message)     at Microsoft.SharePoint.ApplicationPages.AclInv.BtnOK_Click(Object sender, EventArgs e)
        at System.Web.UI.WebControls.Button.OnClick(EventArgs e)     at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String
    eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStage...
    df98555c-612f-4a58-9443-ab6e9a4fcc53
    The e-mail address I have tested it for several times and there is no problem.
    Anyone has any clue about this error?

    Hi.
    This I have seen before...
    It can be that the SMTP relay server is configured to only allow certain IP ranges or addresses.
    It can be that the firewall on the SP server does not allow for SMTP traffic (normally 25, for example for Exchange).
    It can be that there is an Antivirus on the SP server(Client AV) that prohobits the Timer service to send email from this server. I have seen MacAfee do this. Needed an policy change.
    If, its the builtin SMTP service you are using, check this link:
    http://blog.sharepointrx.com/2010/11/18/setting-up-the-iis-smtp-server-for-sending-email-from-sharepoint-2010-on-server-2008-r2/
    Check that and try again.
    Regards
    Thomas Balkeståhl - Technical Specialist - SharePoint -
    http://blog.blksthl.com
    Download the SharePoint Branding Project here
    Download the SharePoint 2010 Site Settings Explained here

  • Process flow completed successfully but flagged as BUSY in OWB ?

    Hi, I have several process flow jobs that are scheduled to run each night.
    All steps of the process flows completes successfully (checked in Workflow Manager and Warehouse Builder Browser), but the overall status is always set to BUSY in OWB Browser.
    I have seen earlier related threads in this forum regarding the termination of jobs left in a BUSY state (through problems with the process flow etc), but why are my jobs being flagged as busy ?
    Seems like the completed successful status is not getting through to OWB Browser.
    Any ideas ?
    Thanks
    Paul

    Login to SQL PLUS as Workflow owner and run
    call wf_purge.Move_To_History(null,null)
    Search this forum for posts from Oleg from Kiev. He knows what he is doing and his posts helped me a lot. I have seen few posts from him related to this subject.
    Vladimir

Maybe you are looking for

  • Images and video not loading after bridge

    Hi guys. I followed this guide to put the NVG589 into bridge/passthough mode so I can use my Netgear N600 WNDR3700v2 router. Everything seems to be working fine, except with Facebook, Youtube and a few other sites. Images and video take forever to lo

  • Dead Nokia Lumia 800 warranty

    I purchased my nokia lumia 800 from a person on amazon market place, the phone died after just a few days and, It will not power up since then. I wondered if I would be entitled to a warranty even though I do not have an origional receipt nor can I f

  • Creating multiple userid's?

    I'm creating a site for someone's business and they would like restricted access to 'member' content. This would then require the issuance of many userid's. Anyone know how this can be done with iWeb. I know I can create a userid for a site but don't

  • Getting exception after increasing the heap size

    Hi , I have increased the heap size of my manged server from 512MB to 1024MB and started the server. When I tried to post the messages to queue I am getting the below exception and my managed server is going down. Weblogic server version is 10.3.0. C

  • Problem for import & package

    Hi, I got a problem about the import and package , my problem is like that : I write 2 java files call Test.java (C:\..\test\GetAdd\Test.java) and Tambah.java(C:\..\test\tambah\Tambah.java) //Test.java package test.GetAdd; import test.tambah.*; publi