HP Elitebook 820 reboots after loading wim file.

Hello,
I am trying to use PXE boot for new models of HP Elitebook (820, 840 and 850), when I run PXE on my 820 model I get to the point where I click F12 to get in, it loads the wim file and welcome screen shows up. This is where it, after a few seconds, reboots
the computer instead of asking for password as it normally does on older models (8440p, 8470p etc). I have downloaded WinPE drivers from HP SoftPaq Download Manager and added them into the boot image, and updated distribution points.
Anyone got some suggestions on how to fix this?
Regards,
Sindre Winsvold

Sindre,
That's probably a bit OTT as there's not need to create a custom boot file. You should be ok with the boot images that come default with SCCM install.
Take a look at the following blog entry and take a note at the Add Drivers to Boot image section
http://www.ronnipedersen.com/2012/03/importing-drivers-for-osd-in-configmgr-2012/
For your custom boot image update - did you enable the 'Deploy this boot image from the PXE enabled distribution point' check box? Also you have to deploy a Task Sequence using that image to the unknown computers collection for it to be picked up as the
new default boot.wim file. Best to stick with the above if you are stepping into this as a noob.
Cheers
Paul | sccmentor.wordpress.com

Similar Messages

  • MSI P45-8D problem: reboot after loading startup services (windows seven 64bit)

    hi guys!
    I decided (buying a cooler master elite 360) to keep my Memory Lover (whit ddr3/ich10r, pci-ex 2.0), which is actually the 'best purchase for me (rather than a G41 mATX) .
    But then, after I had solved the problem of overheating in the pci-ex, and I put the board in its box for weeks, now has a new problem:
    Continuous blocks & reboots just after loading startup services windows seven!
    The setup is this:
     Windows Seven 64bit
     MOBO MSI Memory Lover
     CPU Xeon L3110
     VGA MSI Radeon HD5450 1gb ddr2 fanless
     DDR3 1333 4GB
     PSU Tacens Radix V mATX 35Watt Velociraptor + Caviar Green
     DVD burner (sata)
     Esi pci-ex sound card connect module
     Creative Xtreme Gamer (disconnected for now)
    I have many ram models that I can put in:
     kingston lovo 4gb 1333
     4g-skill eco 4gb 1333
     adata green 4gb 1333
     corsairs white 8gb 1600
    All memories can work undervolt at 1.35volt, but-of course-I keep them in standard 1.5Volt for more stability
     I also tried a single 2gb stick at a time, but nothing has changed
    when the system reboots (I infer) windows finished loading all the startup services (including antivirus, network drivers, audio drivers, etc. ..). and I can say with near certainty, that the last major service that is loaded, is the catalyst control center ...
    I suspect an incompatibility with Memory Lover &  the Video Card's ATI driver ..
     I also tried to uninstall and clean with driver sweeper, but the problem remains ..
     Besides this I also have a problem with the temperature of the processor xeon l3110 (45watt tdp)
     cpu heatsink as I have a Arctic Freezer LP 11 (Capacity Cooling 100W).
     with thermal compound pre-installed I had 60/70 degrees recorded.
     I changed the thermal compound with the famous Prolimatech pk-1 and now I measure 80/90 degrees ...(and I've changed a lot of thermal compound that I put with my eyes closed)
     now, this is not possible because:
     -I know the processor, I kept in daily use at 3Ghz with a noctua nh-U9B se2, and in summer never exceeded 40 degrees (d 'winter was about 30 degrees)
     - Either with the Scythe kama thermo, that with my finger, the heatpipes of the Freezer 11 LP, the Mosfet, the NB & SB are all cold .. the 5450 is 40 degrees or so, but it is fanless, and its temperature is in its normal ..
    What can you tell me of my two problems:
     - Continuous reboots after loading windows seven
     - High temperature cpu (probably not real)
     I remind you that a few months ago the team & Memory Lover Xeon L3110 worked perfectly.
    The PSU is a new 350Watt Tacens Radix V mATX ... the system at idle consumes 70/80 watts (measured at the wall) ... I think it Is not a problem of the little power supply for the needs of my system ..
    and anyway I can try to use an old Enermax 450watt Liberty, which I keep for emergencies..
     thanks
     max

    guys,
     I solved the problem!
     the sink was installed wrong, and did not touch on the processor!!!  
     the problem was the mosfets around the cpu that make thickness in height ..
     the thermal paste was put well and ... still immaculate!
     processor took about 20 (or more) of restarts and very high working temperatures!
     it rocks!!  
     I can now say that the 'AC Freezer 11 LP is sensational!
     The Xeon L3110 (with EIST, C1E & Acpi active together, That downclok it) works now to 23-25 ​​degrees!!
     I have installed the ddr3 kingston 4gb Lovo 1333 + 8GB Corsair 1600 1.35Vram white.
     (with 12GB, I can easily do a large Ramdisk for temporary files).
     I installed hd5450 driver manually, but still the catalyst control center does not appear at startup
     here is the screen of the situation:
    finally...but how did I doubt the quality of this MSI board?  

  • How to delete a jar file after loading image files from it

    Hi,
    How can I delete a jar file after some image files have been loaded? For example, say, I have "a.jar" which contains an image "a.gif" in the root directory of the c drive. I would like to get the image size and then delete the jar file. Here is the code snippet:
        URL url = new URL("jar:file:/C:\\a.jar!/a.gif");
        Icon icon = new ImageIcon(url);
        System.out.println("icon size ? " + icon.getIconHeight());
        File file = new File("c:\\a.jar");
        while(file.exists())
            file.delete();
            try
                Thread.sleep(100);
            catch (InterruptedException ignored)
        System.out.println("file deleted.");I get the image size correctly but just can not delete the jar file. Apparently the file handle is not released, but how to close it? Any hint will be appreciated.
    Justin Jan

    I am sure the URLConnection.defaultUseCaches is set before it is connected otherwise I should catch an IllegalStateException on conn.setUseCaches(false).
            try
                URL url = new URL("jar:file:/C:\\a.jar!/a.gif");           
             URLConnection conn = url.openConnection();
               conn.setDefaultUseCaches(false);
             conn.setUseCaches(false);
                Icon icon = new ImageIcon(url);
                System.out.println("icon size ? " + icon.getIconHeight());
                url.openConnection().getInputStream().close();
                System.gc();
             System.runFinalization();
                File file = new File("c:\\a.jar");
                while (file.exists())
                    file.delete();
                    try
                        Thread.sleep(10);
                    catch (InterruptedException ignored)
                System.out.println("file deleted.");
            catch (Throwable t)
                t.printStackTrace();

  • After load .dbc file to the MAX, How to get activate the CAN signals?

    Actually, i am new to labview and have some basic concepts. I am working on the CAN signals. I want to get activate the necessary signals alone. I know how to load the .dbc file to MAX. But after loading the .DBC file to MAX, i dont know how to activate the wanted CAN signals alone. For example, if i need to activate and control the speed CAN signal alone. i am not able to activate it.
    Can anyone explain how this can be done.

    hi,
    try to download the file from the applicarion server using the dataset operations. and store in the internal table
    thanks

  • I can't enter any value in the Text field, after loading flash files

    Hi to all,
    In my Java application, I'm using a text field and a panel to load flash files. I'm using JDIC 0.9.1 to load the flash files in the panel. The flash files are created by Flash CS4.
    While running the application, I can't enter any value in the Text field, after minimize and maximize the application I can enter the values.
    This problem happens after change the jre version from 1.6 to 1.7.
    I'm getting the following exception while running the application.
    org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename, directory name, or volume label syntax is incorrect
    at org.jdesktop.jdic.init.JdicManager.initBrowserNati ve(Unknown Source)
    at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unkn own Source)
    pls give me a solution.
    Thanks in advance...:)

    I can't enter any values in JTextField after loading the flash files., locking.

  • Auto run vi after loading path file

    I was wondering if there is a way to automatically run a VI after you click on "OK" to load a file from the file path control as opposed to selecting file and then manually clicking run each time on the front panel toolbar.  I attached the simplified VI and txt file to be plotted for clarity.
    Attachments:
    Load Data-Plot.vi ‏135 KB
    Test-linear.txt ‏121 KB

    So I tried what you suggested and I believe it's working like you said it would.  For situations where you would select multiple files, I put the event structure inside the while loop.  One thing I noticed is if you select a file and the VI runs and then select the same file again...a error pops up in the "Read from Measurement File" object.  Is there a way to ignore this error?  It works fine if you select a different file otherwise.
    Attachments:
    Load Data-Plot.vi ‏131 KB

  • JSP page do not close after loading a file

    Hello, i am having a bit of a problem. i have the following code that help me load reports (pdf and xls) from my server in the user browser.
    What i do in my code : jsp Page 1(generationInProgress) i create one of these reports (xml with blob) --> jsp page 2(viewReport) i load the file into the page.
    My problem is pdf just go directly in the user brower but xls file(this file look like it is my page viewReport but in excel format) need to be downloaded into the user pc (work fine) but the first page (generationInProgress) stay visible.
    This is in viewReport:
    public void openFile()
    System.out.println("openFIle");
    //retrieve the report information
    String fileName = sessionBean.getReportName();
    //load the files
    File reportFile = new File(mainPathL2, fileName + "." + sessionBean.getReportFormat());
    File xslFile = new File(mainPathL2, fileName + ".xsl");
    //download file
    try
    if(reportFile == null)
    System.out.println("report file is null");
    else
    System.out.println(reportFile.length());
    //send the pdf file to screen
    HttpServletResponse response = (HttpServletResponse)facesContext.getExternalContext().getResponse();
    if(sessionBean.getReportFormat().equals("xls"))
    response.setContentType("application/vnd.ms-excel");
    else
    response.setContentType("application/pdf");
    if(reportFile.length() != 4096){
    FileInputStream fis = new FileInputStream(reportFile);
    ServletOutputStream out = response.getOutputStream();
    byte[] outputByte = new byte[(int)reportFile.length()];
    while(fis.read(outputByte) != -1)
    out.write(outputByte);
    fis.close();
    out.flush();
    out.close();
    } catch (IOException e)
    // Do your error handling thing.
    System.err.println("Download file failed: " + e.getMessage());
    e.printStackTrace();
    //delete files
    reportFile.delete();
    xslFile.delete();
    facesContext.responseComplete();
    } //end openFile() method
    Anyone can offer some help ?

    no on ever had that problem ?

  • PXE boot fails and reboots after loading PE

    I have run into what I think is a unique issue and need some help determining the cause.
    We are in the process of replacing and aging DP/PXE point (2003 R2 SP2) with a new server (2008 STD R2 SP1).  What makes my pxe issue unique is that pxe works without issue on the existing 2003 DP/PXE server.  But on the new 2008 server I run into
    the following issue.
    Environment:  Config Manager 2007 R2, a single primary, multiple DP's and PXE points.
    Issue:  When I attempt to PXE boot a system, I am able to load PE, but shortly after the custom background screen is loaded, the system reboots.  I've searched the internet quite a bit and found lots of potential causes including, bad/missing drivers,
    certificate issues, rights issues, etc.  None of these seem to be the cause.
    My troubleshooting has determined that the client computers are unable to download the variables.dat file.  I just don't know why.
    We're using the same boot images on both servers. 
    I've tried using multiple computer models and VM's. 
    I've opened a command prompt as soon as our background image loads and have verified that the system is pulling a valid IP address.  I am able to map a drive to the PXE server's REMINST share using our sccm net access account and manually copy the .var
    file using xcopy to the appropriate directory on the local virtual drive.   I've also attempted to manually run smstftp.exe by mimicking the command line from the smsts log file.  I'll admit that I'm not sure I have the correct syntax for smstftp. 
    I've tried several variations and all but one result in a short pause and no file copied/created in the X:\sms\data folder.  The one that does produce a result says that the file cannot be found.  I checked for typos and made sure I used the name
    of the newly created .var file.
    I've also tried disabling anti-virus on the server, shutting off the windows firewall on the server, granting everyone read rights to the REMINST share.
    Below is the smstslog file I've been using as a reference.  Per corporate security policy, I have X'd out the IP address of the PXE server.  The log file for the successful pxe boot from the 2003 server shows an exit code of 0 for smstftp.exe, a note
    about successful download of the pxe var file and then it continues through the rest of the boot process.
    -----SMSTS log file from a failed PXE boot on the new 2008 server -----
    <![LOG[LOGGING: Finalize process ID set to 832]LOG]!><time="16:13:54.440+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="836" file="tslogging.cpp:1489">
    <![LOG[==============================[ TSBootShell.exe ]==============================]LOG]!><time="16:13:54.440+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="836"
    file="bootshell.cpp:963">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\i386\1033\TSRES.DLL']LOG]!><time="16:13:54.440+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="836" file="util.cpp:869">
    <![LOG[Debug shell is enabled]LOG]!><time="16:13:54.440+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="836" file="bootshell.cpp:974">
    <![LOG[Waiting for PNP initialization...]LOG]!><time="16:13:54.471+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="bootshell.cpp:59">
    <![LOG[Booted from network (PXE)]LOG]!><time="16:13:54.830+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="configpath.cpp:198">
    <![LOG[Found config path X:\sms\data\]LOG]!><time="16:13:54.830+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="bootshell.cpp:553">
    <![LOG[Booting from removable media, not restoring bootloaders on hard drive]LOG]!><time="16:13:54.830+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="bootshell.cpp:564">
    <![LOG[Executing command line: wpeinit.exe -winpe]LOG]!><time="16:13:54.830+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="bootshell.cpp:767">
    <![LOG[Executing command line: X:\WINDOWS\system32\cmd.exe /k]LOG]!><time="16:13:57.014+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="836" file="bootshell.cpp:767">
    <![LOG[The command completed successfully.]LOG]!><time="16:13:57.014+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="836" file="bootshell.cpp:850">
    <![LOG[Successfully launched command shell.]LOG]!><time="16:13:57.014+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="836" file="bootshell.cpp:430">
    <![LOG[The command completed successfully.]LOG]!><time="16:14:41.458+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="bootshell.cpp:850">
    <![LOG[Starting DNS client service.]LOG]!><time="16:14:41.458+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="bootshell.cpp:597">
    <![LOG[Executing command line: X:\sms\bin\i386\TsmBootstrap.exe /env:WinPE /configpath:X:\sms\data\]LOG]!><time="16:14:41.973+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880"
    file="bootshell.cpp:767">
    <![LOG[The command completed successfully.]LOG]!><time="16:14:41.973+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="bootshell.cpp:850">
    <![LOG[==============================[ TSMBootStrap.exe ]==============================]LOG]!><time="16:14:41.989+000" date="12-23-2013" component="TSMBootstrap" context="" type="1" thread="1932"
    file="tsmbootstrap.cpp:1039">
    <![LOG[Command line: X:\sms\bin\i386\TsmBootstrap.exe /env:WinPE /configpath:X:\sms\data\]LOG]!><time="16:14:41.989+000" date="12-23-2013" component="TSMBootstrap" context="" type="0" thread="1932"
    file="tsmbootstrap.cpp:1040">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\i386\1033\TSRES.DLL']LOG]!><time="16:14:41.989+000" date="12-23-2013" component="TSMBootstrap" context="" type="1" thread="1932" file="util.cpp:869">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\i386\TSRESNLC.DLL']LOG]!><time="16:14:41.989+000" date="12-23-2013" component="TSMBootstrap" context="" type="1" thread="1932" file="resourceutils.cpp:152">
    <![LOG[Processor Is IA64: 0]LOG]!><time="16:14:41.989+000" date="12-23-2013" component="TSMBootstrap" context="" type="1" thread="1932" file="tsmbootstrap.cpp:1005">
    <![LOG[PXE Boot with Root = X:\]LOG]!><time="16:14:41.989+000" date="12-23-2013" component="TSMBootstrap" context="" type="1" thread="1932" file="tsmbootstrap.cpp:921">
    <![LOG[Executing from PXE in WinPE]LOG]!><time="16:14:41.989+000" date="12-23-2013" component="TSMBootstrap" context="" type="0" thread="1932" file="tsmbootstrap.cpp:936">
    <![LOG[Loading TsPxe.dll from X:\sms\bin\i386\TsPxe.dll]LOG]!><time="16:14:41.989+000" date="12-23-2013" component="TSMBootstrap" context="" type="0" thread="1932" file="tsmbootstraputil.cpp:1319">
    <![LOG[TsPxe.dll loaded]LOG]!><time="16:14:42.004+000" date="12-23-2013" component="TSPxe" context="" type="0" thread="1932" file="tsmbootstraputil.cpp:1329">
    <![LOG[Device has PXE booted]LOG]!><time="16:14:42.004+000" date="12-23-2013" component="TSPxe" context="" type="0" thread="1932" file="tspxe.cpp:122">
    <![LOG[Variable Path: \SMSTemp\2013.12.23.16.11.24.0002.{AB0FBE86-1F6C-47D7-919B-A44641035A2E}.boot.var]LOG]!><time="16:14:42.004+000" date="12-23-2013" component="TSPxe" context="" type="0" thread="1932"
    file="tspxe.cpp:134">
    <![LOG[Variable Key Len: 61]LOG]!><time="16:14:42.004+000" date="12-23-2013" component="TSPxe" context="" type="0" thread="1932" file="tspxe.cpp:141">
    <![LOG[Succesfully added firewall rule for Tftp]LOG]!><time="16:14:42.004+000" date="12-23-2013" component="TSPxe" context="" type="0" thread="1932" file="fwopen.cpp:123">
    <![LOG[Executing: X:\sms\bin\i386\smstftp.exe -i XXX.XXX.XXX.XXX get \SMSTemp\2013.12.23.16.11.24.0002.{AB0FBE86-1F6C-47D7-919B-A44641035A2E}.boot.var X:\sms\data\variables.dat]LOG]!><time="16:14:42.004+000" date="12-23-2013"
    component="TSPxe" context="" type="0" thread="1932" file="tspxe.cpp:177">
    <![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="16:14:42.067+000" date="12-23-2013" component="TSPxe" context="" type="0" thread="1932" file="commandline.cpp:229">
    <![LOG[Set command line: "X:\sms\bin\i386\smstftp.exe" -i XXX.XXX.XXX.XXX get \SMSTemp\2013.12.23.16.11.24.0002.{AB0FBE86-1F6C-47D7-919B-A44641035A2E}.boot.var X:\sms\data\variables.dat]LOG]!><time="16:14:42.067+000" date="12-23-2013"
    component="TSPxe" context="" type="0" thread="1932" file="commandline.cpp:707">
    <![LOG[Executing command line: "X:\sms\bin\i386\smstftp.exe" -i XXX.XXX.XXX.XXX get \SMSTemp\2013.12.23.16.11.24.0002.{AB0FBE86-1F6C-47D7-919B-A44641035A2E}.boot.var X:\sms\data\variables.dat]LOG]!><time="16:14:42.067+000" date="12-23-2013"
    component="TSPxe" context="" type="1" thread="1932" file="commandline.cpp:805">
    <![LOG[Process completed with exit code 1]LOG]!><time="16:15:29.179+000" date="12-23-2013" component="TSPxe" context="" type="1" thread="1932" file="commandline.cpp:1102">
    <![LOG[Succesfully removed firewall rule for Tftp]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSPxe" context="" type="0" thread="1932" file="fwopen.cpp:146">
    <![LOG[uExitCode == 0, HRESULT=80004005 (e:\nts_sms_fre\sms\server\pxe\tspxe\tspxe.cpp,185)]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSPxe" context="" type="0" thread="1932"
    file="tspxe.cpp:185">
    <![LOG[Failed to download pxe variable file. Code(0x00000001)]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSPxe" context="" type="3" thread="1932" file="tspxe.cpp:185">
    <![LOG[PxeGetPxeData failed with 0x80004005]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSPxe" context="" type="3" thread="1932" file="tsmbootstraputil.cpp:1419">
    <![LOG[HRESULT_FROM_WIN32(dwError), HRESULT=80004005 (e:\nts_sms_fre\sms\client\tasksequence\tsmbootstrap\tsmbootstraputil.cpp,1420)]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSPxe" context=""
    type="0" thread="1932" file="tsmbootstraputil.cpp:1420">
    <![LOG[TSMBootstrapUtil::PxeGetPxeData(&bPxeBooted, sVariablesFile, sPxePasswd), HRESULT=80004005 (e:\nts_sms_fre\sms\client\tasksequence\tsmbootstrap\tsmediawizardcontrol.cpp,2236)]LOG]!><time="16:15:29.194+000" date="12-23-2013"
    component="TSPxe" context="" type="0" thread="1932" file="tsmediawizardcontrol.cpp:2236">
    <![LOG[oTSMediaWizardControl.Run( sMediaRoot, true, true ), HRESULT=80004005 (e:\nts_sms_fre\sms\client\tasksequence\tsmbootstrap\tsmbootstrap.cpp,937)]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSPxe"
    context="" type="0" thread="1932" file="tsmbootstrap.cpp:937">
    <![LOG[Execute( eExecutionEnv, sConfigPath, sTSXMLFile, uBootCount, &uExitCode ), HRESULT=80004005 (e:\nts_sms_fre\sms\client\tasksequence\tsmbootstrap\tsmbootstrap.cpp,1106)]LOG]!><time="16:15:29.194+000" date="12-23-2013"
    component="TSPxe" context="" type="0" thread="1932" file="tsmbootstrap.cpp:1106">
    <![LOG[Exiting with return code 0x80004005]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSPxe" context="" type="1" thread="1932" file="tsmbootstrap.cpp:1118">
    <![LOG[Execution complete.]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="bootshell.cpp:624">
    <![LOG[Finalizing logging from process 832]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="tslogging.cpp:1736">
    <![LOG[Finalizing logs to root of first available drive]LOG]!><time="16:15:29.194+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="tslogging.cpp:1578">
    <![LOG[LOGGING: Setting log directory to "D:\SMSTSLog".]LOG]!><time="16:15:29.491+000" date="12-23-2013" component="TSBootShell" context="" type="1" thread="880" file="tslogging.cpp:1803">
    This has been an extremely frustrating issue and any assistance would be greatly appreciated!

    Thanks for your quick response Jason!  I didn't expect someone to reply so quickly or I would have checked back sooner. 
    I had found the two 'older' posts already, but had not seen the 'newer' one.  Unfortunately that did not give me any new ideas.  But your comment on checking for TFTP availability did.  Here are things I have tried since my original
    post...
    I re-ran most of my tests in case I missed something.  I only found one change.  Even though I double-checked, I must have made a typo when I manually ran the smstftp.exe command, because when I ran it again I received a timeout message instead
    of file not found.
    I had a minor 'thinking outside of the box moment' and decided to PXE boot the new 2008 R2 server itself.  This was successful and I interpreted the success as meaning that the hardware is ok.  Thinking there may be a compatibility issue with
    the hardware and the OS, I tried a few different NIC drivers, settings, registry keys, and even a completely different NIC.  No luck on any of these.
    I decided to build another Server on a VM tovalidate my build process and configuration.  And of course clients in multiple locations were able to PXE boot off this VM.  Too bad I can't use this in production.
    After reading your response Jason, I began to focus on network.  I moved the server to a few different locations so it was utilizing different switches.  No luck.  I noticed in the event viewer for WDS that the server was logging the
    beginning of the boot.var file via TFTP.  This of course was not very surprising.  What was surprising is that the very next entry (informational) noted that the client 'COMPLETED' the download of the boot.var file via TFTP.  I know that completed
    does not mean successful, but it usually implies or is interpreted as successful.  It should have logged a warning or error, or nothing at all because although the process completed, it was not successful.  I re-verified that the file was not downloaded
    to the client and the client log file still shows the same error noted in the logfile from my original post.
    Finally, I installed sniffing software on the server and ran some captures while attempting to PXE boot.  Even though I am not much of a network guy, I quickly discovered two things.  First, I found the section where the client attempts to download
    the boot.var file.  Unfortunately I don't think the local security team will allow me to post the capture, so I'll do my best to describe what I found.  It starts with a single entry where the client calls for the file via TFTP protocol.  This
    is followed by a series of alternating entries (all TFTP) where it looks like the server attempts to send a portion of the file, and the client sends an acknowledgement.  The sending entries all have checksum errors.  The checksum received on
    all packets is 0x0000 and of course should be something else.  There is also a shorter section below this with alternating entries where the server attempts to send ICMP packets and the client responds with TFTP acknowledgements. 
    The ICMP entries are all marked as Destination unreachable (Port Unreachable).
    The second thing I noticed from the network capture is the a few 'Spanning Tree Protocol' entries.  I my search for a solution, I remember reading several posts saying that Spanning Tree can cause this issue.  When I asked, I was assured that
    Spanning Tree was disabled in this environment.  It made sense too, because the 2003 PXE server was functioning properly, and Spanning Tree should affect both 2003 and 2008 servers, right?
    Either way I will bring my findings to the network team and see what they have to say.
    Any additional thoughts or ideas???

  • 1.5.1 freezes after loading Trace file

    My tiny trc file loads and views but immediately SQL Developer freezes and I can only kill the app. When I relaunch, it remembers the file that was last open, loads it, and proceeds to freeze again. The only way out of this loop is to rename the trc file before relaunch. Am I the only one?
    Windows Server 2003 SP2 on Pentium, 4GB RAM.

    I was able to load a 150K trace file without SQL Developer 1.5.1 (JDK 1.6.0_04) freezing. However, the data displayed in the list view is considerably different to a tkprof file generated from the same trace file, but that I will put in a different thread.
    theFurryOne

  • After LOADing .jar file in to the oracle database  some classes r invalid

    Hi I have a .jar file to load it into the oracle database 11g.
    I use load java to load the .jar file.... I dont mention any resolver so I assume that all the .class files inside .jar are loaded as the schema user objects . Eg: if my schema is SCOTT they are loaded as SCOTT objects .. correct me if iam wrong because i see these lines on a site
    Many Java classes contain references to other classes, which is the essence of reusing code. A conventional Java virtual machine searches for classes, ZIP, and JAR files within the directories specified in the CLASSPATH. In contrast, the Oracle Java virtual machine searches database schemas for class objects. With Oracle, you load all Java classes within the database, so you might need to specify where to find the dependent classes for your Java class within the database.
    All classes loaded within the database are referred to as class schema objects and are loaded within certain schemas. All JVM classes, such as java.lang., are loaded within PUBLIC. If your classes depend upon other classes you have defined, you will probably load them all within your own schema. For example, if your schema is SCOTT, the database resolver (the database replacement for CLASSPATH) searches the SCOTT schema before PUBLIC. The listing of schemas to search is known as a resolver spec. Resolver specs are for each class, whereas in a classic Java virtual machine, CLASSPATH is global to all classes.*
    When locating and resolving the interclass dependencies for classes, the resolver marks each class as valid or invalid, depending on whether all interdependent classes are located. If the class that you load contains a reference to a class that is not found within the appropriate schemas, the class is listed as invalid. Unsuccessful resolution at runtime produces a "class not found" exception. Furthermore, runtime resolution can fail for lack of database resources if the tree of classes is very large.
    Now my question is that.... why are some of the classes becoming invalid... ?
    Edited by: learning_man on Mar 4, 2010 10:26 AM

    after loading class i see some additional characers prior to class name when i query user_objects and object_type='JAVA CLASS'

  • Imac will not reboot after loading apple software update

    I downloaded apple update software on imac air but it will not reboot. Just the apple and spinner. Never gets to sign in.

    Mac OS X: Gray screen appears during startup

  • Accessing events from externally loaded swf file

    hello,
    I have an swf file developed in flash 8. After loading that
    file into SWF Loader control in flex builder 3, how can we access
    the controls and events present in that particular file ?

    "surya_dhul" <[email protected]> wrote in
    message
    news:gg84e2$slm$[email protected]..
    > hello,
    > I have an swf file developed in flash 8. After loading
    > that
    > file into SWF Loader control in flex builder 3, how can
    we access the
    > controls
    > and events present in that particular file ?
    I think you'll need to use localConnection.

  • Load .JAR file using SQL Developer

    Hi,
    I have couple of .JAR files on my local machine which has to be loaded on to the oracle server (11g). I tried using the load Java functionality in the SQL Developer but realised one could load a java class only if you had the source code.
    Is my understanding correct or is there a way to load a JAR file using sql developer ?
    Thanks

    K,
    Thanks for the answer.
    Do you know if you have to restart oracle after loading .jar files ? I ask this because I am not aware if oracle/jvm automatically knows that the jar files have been uploaded.
    Thanks

  • Imovie won't load project file after crash

    Hi All,
    I was almost done with an iMovie project, and while I watching the preview, iMovie crashed.
    After I opened iMovie again, the project was there anymore. I can see all other projects but the project I want, the one I was working on when it crashed.
    I checked the forum for similar problems but no solution worked so far. The file is in the Projects Folder, I can even see the preview a thumbnail of the project.
    Here is what I tried so far:
    deleting com.apple.iMovieApp.plist
    deleting com.apple.iApps.plist
    Moving file to a different location
    Renaming the file
    clicking twice on the file to open
    Transfered the file to another Mac (with event files)
    Deleted iMovie and reinstalled from AppStore
    rebooted many times
    None of this worked so far. The file is there, 13MB, but nothing seems to recognize the file into iMovie.
    Mountain Lion latest version. iMovie 11 latest version.
    Please help, a load of work was put into this and I need to finish the movie by Thursday.
    All help appreciate it.

    There are a number of others here having the same problem (including me), where the project appears in Finder in the iMovie Projects folder but is not listed in the Project Library in iMovie. The project just seems to disappear from the Library.
    Here is a link to a recent topic. It includes a post by me where I've provided links to other topics regarding this issue.
    https://discussions.apple.com/message/21296973?ac_cid=tw123456#21296973
    You've given an excellent summary of things you've tried. I've also tried most of those, but haven't as yet reinstalled iMovie. As I have Final Cut Pro X, I also attempted to open the project file in that app with no success. FCP X crashed just after loading, after I had selected from the menu - File > Import > iMovie Project.
    You can submit feedback to Apple - from iMovie's Menu select iMovie > Provide iMovie Feedback.
    Sorry I can't help you solve this.
    John

  • After closing the Firefox browser, a message appears "Severe error: Cannot load resource file; can not run". What could be wrong?

    The message: "Severe Error; Can 't load resourse file; can not run" appears after closing Firefox4. All other applications on my pc do not have this problem.

    I've found text of this error in npdjvu.dll plugin, remove it and error seems to disappear.

Maybe you are looking for

  • Why my iphone 3gs doesn't appears in windows bou not in itunes..??

    why my iphone 3gs doesn't appears in windows bou not in itunes..?? That damage happen, before i upgrade my iphone.. After back up proses, the iphone can't appears in my itunes... please help meee...

  • Powershell: How do I upload files with metadata from a manifest file?

    I am using the script from this blog to try to upload files into SharePoint, using a manifest file to specify the metadata associated with each file. Right now, the script works, but is not populating the metadata from the manifest (xml) file. When I

  • Sql loader unable to read from pipe

    Hi All: I'm using named pipe along with Oracle SQL*Loader to load some 20 millions rows into database. The source of the pipe is from a Java application which write to the pipe using simple FileOutputStream. It can be observed that the Oracle SQL*Loa

  • Can't send mail with Signatures or Attachments

    Since installing the Update 10.4.6, I have been unable to send email to my pop account which has either a signature or an attachment. I have cleared the caches using tiger cache cleaner (the reboot took forever and I had to cancel and restart so I'm

  • Getting SOAPExceptionImpl while invoking JAX-RPC Service

    Hi, I am using Static Stub to invoke a service . Both the Client and and Service are deployed on same Tomcat. Service is quite simple that display the Greeting message but when I am calling a service it throws the following exception.. java.rmi.Remot