My PXI-4132 has stopped outputting voltage

I have an NI PXIe-1073 chassis with an NI PXI-4132 card installed.
I had the system turned off over the weekend & started it up to do some linearity measurements on an ADC  yesterday. As usual, I was going to do a quick check of my setup by using the NI DC-power soft front panel to output some dc voltages & check that the data converter was giving ball park correct codes before I started a vi to sweep the input voltage & collect real data.
I started MAX(measurement & automation explorer) & it told me that my card passed self test. Then I ran the test panel & tried to force 4V at the DUT, but my scope showed 75mV.
I removed all the cabling & measured again at the front connector. All the lights on the front were green & the scope was set to 1MΩ input termination, but again I got no voltage on any pin of the 4132. I was expecting it to come out on “HI”.  Then I checked “Sense HI” & then all of the pins, but no voltage. The scope ground is connected through a banana lead to the chassis ground on the front of the card. I measured my HP 1.8V power supply & got 1.8V on the scope.
I rebooted the chassis & the pc 3 times each , with the same result. What  might I be doing wrong? Is there a vi I could run to reset everyting? I have reset the card with MAX.
I have had this unit for 3 years & I don't think it has ever done this before.

Hello Bob,
You can try to self-calibrate your device (In MAX, right click the device and select Self-Calibrate). If there is something wrong with the hardware then the calibration is going to fail. Please document the result if there is any error. Please remember to disconnect all the cabling previous to the calibration.
What is the value read in the front panel for voltage and current after you enable the output? Are you working with the Local or Sense measurement mode? Please connect your oscilloscope to terminals C and F (refer to picture 7 on the link below) and configure the test panel to Local Sense, what is the value read on your oscilloscope?
http://www.ni.com/pdf/manuals/375128b.pdf
Regards,
MCOTO

Similar Messages

  • Shall I use NRSE or RSE mode for reading the output voltage of my sensor?

    Hello,
    I am using a  gaz sensor that needs a power supply of 24 V and has an output voltage  : 0 -> 10 V. I want to read this voltage with labview( and then convert it to PPMs ).
    My problem : I don't know what kind of analog input connection I must use : RSE ou NRSE ? ( I suppose the DIFF mode isn't appriopriate here ) .
    I think I should use the NRSE mode ( meaning connecting the V+ of the 0-10V signal to one of the ACH and the V- to  AISENSE )  ???
    Any help would be really great,
    Regards,
    David     
    PS : using Labview 7.1

    Hi David,
    It basically all boils down to if the signal source is grounded or floating? If grounded use DIFF for low voltages (0-2V) and NRSE for high (above 2V). If the signal is floating use RSE.
    For more documentation see:
    http://digital.ni.com/public.nsf/websearch/D509679FFAE2764386256297005D0C9D
    http://zone.ni.com/devzone/conceptd.nsf/webmain/177A8B29FEDC0F5886256FA90083C0F8
    Regards
    Meister, NIDK

  • What's the maximum output voltage of labview

    hi
    i want to give 0 to 10v to the oscillator circuit so for that i would like to know that maximum output voltage of labview because i want to oprate my oscillator using labview program

    hussey,
    this discussion has no worth.
    We KNOW that you want to generate voltage using the programming language LV.
    Since no programming language in the world is able to generate voltage without dedicated hardware, repeating "I want to use LV to generate voltage" several times will not bring you anywhere.
    What kind of hardware do you have for voltage generation mounted in you PC?
    What else do you want to generate except DC voltage (controlling an oscillator could include also AC voltage stimulation...)?
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • PXI-5421, C++, Creating output signal, DAQmxWriteAnalogF64 fails

    I want to create a simple sine wave output on a PXI-5421 card. I have looked at the sample projects for DAQmx, and based an application on them.
    The application falls over at the call to DAQmxWriteAnalogF64 using the following parameters:
    lReturn = DAQmxWriteAnalogF64(
    m_hTask,
    1000,
    0,
    10.0,
    DAQmx_Val_GroupByChannel,
    data,
    &lWritten,
    NULL
    What am I doing wrong?
    Below is the output of the application, and the code.
    ***** START OF OUTPUT *****
    DAQmxResetDevice -> SUCCESS
    DAQmxCreateTask -> SUCCESS
    DAQmxCreateAOVoltageChan -> SUCCESS
    DAQmxCfgSampClkTiming -> SUCCESS
    Samples per channel written: 0
    Source terminal to be routed could not be found on the device.
    Make sure the terminal name is valid for the specified device. Refer to Measurement & Automation Explorer for valid terminal names.
    Device: PXI1Slot3
    Property: DAQmx_SampClk_Src
    Source Terminal:
    Task Name: _unnamedTask<0>
    Status Code: -200040
    DAQmxWriteAnalogF64 -> -200040
    ***** END OF OUTPUT *****
    ***** START OF APPLICATION *****
    void Startup( void )
    // get amplitude
    double dblAmplitude = 5; // 5 volts
    // generate wave data
    float64 data[1000];
    for( int i=0; i<1000; i++ )
    data[i] = dblAmplitude * sin( (double)i * 2.0 * PI/1000.0 );
    // device, channel and terminal names
    char szDeviceName[128];
    strcpy(szDeviceName,"PXI1Slot3"); // PXI1Slot3
    char szChannel[128];
    sprintf(szChannel,"%s/ao0",szChannelName); // PXI1Slot3/ao0
    char szTerminal[128];
    strcpy(szTerminal,"Onboard Clock"); // Onboard Clock
    // reset device
    long lReturn = DAQmxResetDevice(szDeviceName);
    _AddToLog("DAQmxResetDevice",lReturn);
    // create task
    lReturn = DAQmxCreateTask("",&m_hTask);
    _AddToLog("DAQmxCreateTask",lReturn);
    // if that worked...
    if(lReturn==0)
    // create output voltage channel
    lReturn = DAQmxCreateAOVoltageChan(
    m_hTask,
    szChannel,
    -1 * dblAmplitude,
    dblAmplitude,
    DAQmx_Val_Volts,
    NULL
    _AddToLog("DAQmxCreateAOVoltageChan",lReturn);
    // if that worked...
    if(lReturn==0)
    // define sampling
    lReturn = DAQmxCfgSampClkTiming(
    m_hTask,
    szTerminal,
    10*1000,
    DAQmx_Val_Rising,
    DAQmx_Val_ContSamps,
    1000
    _AddToLog("DAQmxCfgSampClkTiming",lReturn);
    // if that worked...
    if(lReturn==0)
    // write to buffer
    long lWritten = 0;
    lReturn = DAQmxWriteAnalogF64(
    m_hTask,
    1000,
    0,
    10.0,
    DAQmx_Val_GroupByChannel,
    data,
    &lWritten,
    NULL
    CString strLine;
    strLine.Format("Samples per channel written: %d",lWritten);
    _AddToLog(strLine);
    _AddToLog("DAQmxWriteAnalogF64",lReturn);
    // if that worked...
    if(lReturn==0)
    // start task
    lReturn = DAQmxStartTask(m_hTask);
    _AddToLog("DAQmxStartTask",lReturn);
    else
    // clean up
    _CleanUp();
    void _CleanUp( void )
    // stop task
    long lReturn = DAQmxStopTask(m_hTask);
    _AddToLog("DAQmxStopTask",lReturn);
    // clear task
    lReturn = DAQmxClearTask(m_hTask);
    _AddToLog("DAQmxClearTask",lReturn);
    ***** END OF APPLICATION *****

    Broccoli wrote:
    I want to create a simple sine wave output on a PXI-5421 card. I have looked at the sample projects for DAQmx, and based an application on them.
    The application falls over at the call to DAQmxWriteAnalogF64 using the following parameters:
    lReturn = DAQmxWriteAnalogF64(
    m_hTask,
    1000,
    0,
    10.0,
    DAQmx_Val_GroupByChannel,
    data,
    &lWritten,
    NULL
    What am I doing wrong?
    Below is the output of the application, and the code.
    ***** START OF OUTPUT *****
    DAQmxResetDevice -> SUCCESS
    DAQmxCreateTask -> SUCCESS
    DAQmxCreateAOVoltageChan -> SUCCESS
    DAQmxCfgSampClkTiming -> SUCCESS
    Samples per channel written: 0
    Source terminal to be routed could not be found on the device.
    Make sure the terminal name is valid for the specified device. Refer to Measurement & Automation Explorer for valid terminal names.
    Device: PXI1Slot3
    Property: DAQmx_SampClk_Src
    Source Terminal:
    Task Name: _unnamedTask<0>
    Status Code: -200040
    DAQmxWriteAnalogF64 -> -200040
    ***** END OF OUTPUT *****
    ***** START OF APPLICATION *****
    void Startup( void )
    // get amplitude
    double dblAmplitude = 5; // 5 volts
    // generate wave data
    float64 data[1000];
    for( int i=0; i<1000; i++ )
    data[i] = dblAmplitude * sin( (double)i * 2.0 * PI/1000.0 );
    // device, channel and terminal names
    char szDeviceName[128];
    strcpy(szDeviceName,"PXI1Slot3"); // PXI1Slot3
    char szChannel[128];
    sprintf(szChannel,"%s/ao0",szChannelName); // PXI1Slot3/ao0
    char szTerminal[128];
    strcpy(szTerminal,"Onboard Clock"); // Onboard Clock
    // reset device
    long lReturn = DAQmxResetDevice(szDeviceName);
    _AddToLog("DAQmxResetDevice",lReturn);
    // create task
    lReturn = DAQmxCreateTask("",&m_hTask);
    _AddToLog("DAQmxCreateTask",lReturn);
    // if that worked...
    if(lReturn==0)
    // create output voltage channel
    lReturn = DAQmxCreateAOVoltageChan(
    m_hTask,
    szChannel,
    -1 * dblAmplitude,
    dblAmplitude,
    DAQmx_Val_Volts,
    NULL
    _AddToLog("DAQmxCreateAOVoltageChan",lReturn);
    // if that worked...
    if(lReturn==0)
    // define sampling
    lReturn = DAQmxCfgSampClkTiming(
    m_hTask,
    szTerminal,
    10*1000,
    DAQmx_Val_Rising,
    DAQmx_Val_ContSamps,
    1000
    _AddToLog("DAQmxCfgSampClkTiming",lReturn);
    // if that worked...
    if(lReturn==0)
    // write to buffer
    long lWritten = 0;
    lReturn = DAQmxWriteAnalogF64(
    m_hTask,
    1000,
    0,
    10.0,
    DAQmx_Val_GroupByChannel,
    data,
    &lWritten,
    NULL
    CString strLine;
    strLine.Format("Samples per channel written: %d",lWritten);
    _AddToLog(strLine);
    _AddToLog("DAQmxWriteAnalogF64",lReturn);
    // if that worked...
    if(lReturn==0)
    // start task
    lReturn = DAQmxStartTask(m_hTask);
    _AddToLog("DAQmxStartTask",lReturn);
    else
    // clean up
    _CleanUp();
    void _CleanUp( void )
    // stop task
    long lReturn = DAQmxStopTask(m_hTask);
    _AddToLog("DAQmxStopTask",lReturn);
    // clear task
    lReturn = DAQmxClearTask(m_hTask);
    _AddToLog("DAQmxClearTask",lReturn);
    ***** END OF APPLICATION *****
    Hello Broccoli,
    NI-DAQmx is not a supported API for the NI-5421 AWG. For all NI Signal Generators, please use the NI-FGEN API, which shipped with your instrument. You may also download NI-FGEN (2.2.1 as of today) from
    http://digital.ni.com/softlib.nsf/954feaeea92d90918625674b00658b83/8b1f32b4b8f7148586256efd006075a9?OpenDocument
    You should find helpful C examples bundled with NI-FGEN that will make using the NI-5421's full capabilities very easy.
    Marcos Kirsch
    Signal Generators Software Engineer
    Marcos Kirsch
    Principal Software Engineer
    Core Modular Instruments Software
    National Instruments

  • Wiring the PXI-4132

    Hi all,
    I'd like to know how to wire the PXI-4132. You can check its specification following links below.
    http://sine.ni.com/nips/cds/view/p/lang/fr/nid/207349
    http://www.ni.com/pdf/manuals/375128a.pdf
    - My problem here is i don't understand what a guard terminal is. (check p5 on pdf)
    The output HI and LO correspond to the higher and lower (current or voltage) source you need to source.
    The sense HI and LO correspond to the higher and lower (current or voltage) measurement you need to measure.
    - How to source voltage and measure current ?
    Seems to happen in the same time. That means output HI and HI sense are connected to the same point and Lo Sense and output LO as well.
    - Does someone get a wiring schematic of PXI-4132 ?
    Thank you for further reading and discussion
    Vincent
    Solved!
    Go to Solution.

    Hello Vincent90,
    Please find the part of the NI DC Power Supplies and SMUs Help regarding the Guard terminals :
    The following links could help you :
    Remote Sense Connections for Cascaded Power Supplies
    Architecture Details of the NI PXI-4132 Precision SMU
    I didn't find any wiring schematic that I could provide you.
    Regards,
    Jérémy C.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Travaux Pratiques d'initiation à LabVIEW et à la mesure
    Du 2 au 23 octobre, partout en France

  • My power button has stopped working is there any other way of taking a screenshot

    My power button has stopped working is there any other way of taking a screenshot

    If the power adapter is already plugged into your computer, the AC power cord is likely to spark as you attempt to plug it in.  The power adapter is designed to shut down when a potentially damaging situation occurs.  The "sparking" can cause over-current and over-voltage protection circuits to turn the power adater off.  When this occurs, you should unplug the power adapter from the wall, unplug the power adapter from the computer, wait 15 seconds, plug the power adapter into a properly-grounded AC wall outlet, and then plug the DC output cable into the Mag-safe connector.

  • Cannot install BI Publisher 10.1.3 Windows 7 setup.exe has stopped working

    Hallo!I am trying to install Oracle BI Publisher 10.1.3.4 on Windows 7 Professional 32 bit.When I click on the setup.exe,the following output appears on the cmd prompt
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 4.0, 5.0, 5.1, 5.2 or 6.0 . Actual 5.1Passed
    Checking monitor: must be configured to display at least 256 colors . Actual 4294967296 Passed
    Checking Temp space: must be greater than 500 MB . Actual 252112 MB Passed
    Checking swap space: must be greater than 500 MB . Actual 1900MB Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from C:\Users\jirungu\AppData\Lo
    cal\Temp\OraInstall2011-04-13_09-33-57AM. Please wait ...
    When the OUI tries to launch,the following error appears
    setup.exe has stopped working.
    Is this due to an incompatibility problem?Are there any prerequisites for installing BI Publisher?How can I resolve this?
    Thanks.
    Edited by: 4joey1 on Apr 12, 2011 11:35 PM
    Edited by: 4joey1 on Apr 12, 2011 11:36 PM

    I am also facing the same issue and i tried with the following modes
    xp mode
    vista mode
    2000 mode
    still i am seeing the same error.
    My Notebook is Window 7 Home Premium 64bit & have jdk 1.6 32bit.
    Edited by: user5345841 on May 26, 2011 12:10 PM
    Edited by: user5345841 on May 26, 2011 12:55 PM

  • Adobe Flash Player 11.3 r300 has stopped working

    I have Firefox 13.0.1, Win 7 Home Edition 64 bit, latest adobe flash player version 11.3.300.262. Latest nvidia drivers 301.42 - WHQL, 260 gtx nvidia card. I did a clean reinstall for nvidia drivers, and flash drivers, still same problem.
    Everytime I go to fullscreen mode, my screen turns white and I have to left click on my mouse so the white screen goes away(otherwise the white screen hangs indefinite), I get a windows message stating adobe flash player has stopped working. After that I get send crash report for adobe.
    Image to when the flash crashes. http://i.imgur.com/fX7Ld.jpg
    This never happened with Adobe flash player 11.2, never. With the latest update it crashes, everytime I go fullscreen. This happens on http://www.twitch.tv streams, any livestreams. Youtube seems to be fine, when going fullscreen mode. And no, I don't have RealPlayer installed. I only have 3 addons installed and enable. Adobe Acrobat, Flash, and Silverlight, all latest editions. Everything else is disabled, or uninstalled.
    I've Disabled Hardware accelartion in firefox still same problem, but with flash hardware acceleration enabled. I've tried Firefox Safe mode with all addons disabled, same problem.
    Crash Reports.
    https://crash-stats.mozilla.com/report/index/bp-db458853-46d7-4652-be50-3f09f2120626
    https://crash-stats.mozilla.com/report/index/bp-df9bc417-e54c-4f8e-b25c-6cf602120626
    This issue does not happen when hardware accelaration is disabled in flash settings.
    Please fix this issue.
    Dxdiag.
    System Information
    Time of this report: 6/26/2012, 19:03:22
           Machine name: -------
       Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.120503-2030)
               Language: English (Regional Setting: English)
    System Manufacturer: Alienware
           System Model: Aurora
                   BIOS: Default System BIOS
              Processor: Intel(R) Core(TM) i7 CPU         920  @ 2.67GHz (8 CPUs), ~3.2GHz
                 Memory: 6144MB RAM
    Available OS Memory: 6134MB RAM
              Page File: 1893MB used, 10374MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7601.17514 32bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: NVIDIA GeForce GTX 260
           Manufacturer: NVIDIA
              Chip type: GeForce GTX 260
               DAC type: Integrated RAMDAC
             Device Key: Enum\PCI\VEN_10DE&DEV_05EA&SUBSYS_073810DE&REV_A1
         Display Memory: 4071 MB
       Dedicated Memory: 1767 MB
          Shared Memory: 2303 MB
           Current Mode: 1440 x 900 (32 bit) (60Hz)
           Monitor Name: SyncMaster 943BW/ 943BWX /943BWT,SyncMaster Magic CX943BW (Digital)
          Monitor Model: SyncMaster
             Monitor Id: SAM0350
            Native Mode: 1440 x 900(p) (59.887Hz)
            Output Type: DVI
            Driver Name: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Driver File Version: 8.17.0013.0142 (English)
         Driver Version: 8.17.13.142
            DDI Version: 10
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 5/15/2012 06:48:00, 18044224 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B71E3E-46AA-11CF-E073-35271FC2C535}
              Vendor ID: 0x10DE
              Device ID: 0x05EA
              SubSys ID: 0x073810DE
            Revision ID: 0x00A1
    Driver Strong Name: oem9.inf:NVIDIA_SetA_Devices.NTamd64.6.1:Section005:8.17.13.142:pci\ven_10de&dev_05ea
         Rank Of Driver: 00E62001
            Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C
       Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Supported
                DXVA-HD: Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Speakers (Sennheiser USB Headset)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: USB\VID_1395&PID_0002&REV_0004&MI_00
            Manufacturer ID: 65535
                 Product ID: 65535
                       Type: WDM
                Driver Name: USBAUDIO.sys
             Driver Version: 6.01.7601.17514 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 11/20/2010 06:43:52, 109696 bytes
                Other Files:
            Driver Provider: Microsoft
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Speakers (High Definition Audio Device)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0888&SUBSYS_102802F7&REV_1001
            Manufacturer ID: 1
                 Product ID: 65535
                       Type: WDM
                Driver Name: HdAudio.sys
             Driver Version: 6.01.7601.17514 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 11/20/2010 06:44:23, 350208 bytes
                Other Files:
            Driver Provider: Microsoft
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
                Description: Microphone (Sennheiser USB Headset)
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: USBAUDIO.sys
             Driver Version: 6.01.7601.17514 (English)
          Driver Attributes: Final Retail
              Date and Size: 11/20/2010 06:43:52, 109696 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Sennheiser USB Headset
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1395, 0x0002
            FF Driver: n/a
          Device Name: Razer BlackWidow
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x010E
            FF Driver: n/a
          Device Name: Razer BlackWidow
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x010E
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x3A37
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x1532, 0x0015
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + HID Keyboard Device
    | Vendor/Product ID: 0x1532, 0x010E
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x1532, 0x0015
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x1532, 0x010E
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    Disk & DVD/CD-ROM Drives
          Drive: C:
    Free Space: 246.4 GB
    Total Space: 468.7 GB
    File System: NTFS
          Model: ST3500418AS
          Drive: D:
          Model: PLDS DVD+-RW DH-24AAS
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
    System Devices
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_3A3E&SUBSYS_02F71028&REV_00\3&11583659&0&D8
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A34
    Device ID: PCI\VEN_8086&DEV_3A34&SUBSYS_02F71028&REV_00\3&11583659&0&E8
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 9 - 3410
    Device ID: PCI\VEN_8086&DEV_3410&SUBSYS_02F71028&REV_13\3&11583659&0&48
       Driver: n/a
         Name: NVIDIA GeForce GTX 260
    Device ID: PCI\VEN_10DE&DEV_05EA&SUBSYS_073810DE&REV_A1\4&101B7E8&0&0018
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3C
    Device ID: PCI\VEN_8086&DEV_3A3C&SUBSYS_02F71028&REV_00\3&11583659&0&D7
       Driver: n/a
         Name: Intel(R) 82801JDH SMBus Controller - 3A30 (Intel(R) SMBus 2.0 Driver)
    Device ID: PCI\VEN_8086&DEV_3A30&SUBSYS_02F71028&REV_00\3&11583659&0&FB
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 7 - 340E
    Device ID: PCI\VEN_8086&DEV_340E&SUBSYS_02F71028&REV_13\3&11583659&0&38
       Driver: n/a
         Name: Silicon Image SiI 3132 SATALink Controller
    Device ID: PCI\VEN_1095&DEV_3132&SUBSYS_02F71028&REV_01\4&24931170&0&00E4
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3A
    Device ID: PCI\VEN_8086&DEV_3A3A&SUBSYS_02F71028&REV_00\3&11583659&0&EF
       Driver: n/a
         Name: Intel(R) ICH10R SATA AHCI Controller
    Device ID: PCI\VEN_8086&DEV_3A22&SUBSYS_02F71028&REV_00\3&11583659&0&FA
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 3 - 340A
    Device ID: PCI\VEN_8086&DEV_340A&SUBSYS_02F71028&REV_13\3&11583659&0&18
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A39
    Device ID: PCI\VEN_8086&DEV_3A39&SUBSYS_02F71028&REV_00\3&11583659&0&D2
       Driver: n/a
         Name: Intel(R) ICH10R LPC Interface Controller - 3A16
    Device ID: PCI\VEN_8086&DEV_3A16&SUBSYS_02F71028&REV_00\3&11583659&0&F8
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 1 - 3408
    Device ID: PCI\VEN_8086&DEV_3408&SUBSYS_02F71028&REV_13\3&11583659&0&08
       Driver: n/a
         Name: Intel(R) ICH10 Family PCI Express Root Port 5 - 3A48
    Device ID: PCI\VEN_8086&DEV_3A48&SUBSYS_02F71028&REV_00\3&11583659&0&E4
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A38
    Device ID: PCI\VEN_8086&DEV_3A38&SUBSYS_02F71028&REV_00\3&11583659&0&D1
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub Throttle Registers - 3438
    Device ID: PCI\VEN_8086&DEV_3438&SUBSYS_00000000&REV_13\3&11583659&0&A3
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub to ESI Port - 3405
    Device ID: PCI\VEN_8086&DEV_3405&SUBSYS_02F71028&REV_13\3&11583659&0&00
       Driver: n/a
         Name: Intel(R) ICH10 Family PCI Express Root Port 4 - 3A46
    Device ID: PCI\VEN_8086&DEV_3A46&SUBSYS_02F71028&REV_00\3&11583659&0&E3
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A37
    Device ID: PCI\VEN_8086&DEV_3A37&SUBSYS_02F71028&REV_00\3&11583659&0&D0
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub System Management Registers - 342E
    Device ID: PCI\VEN_8086&DEV_342E&SUBSYS_00000000&REV_13\3&11583659&0&A0
       Driver: n/a
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_02F71028&REV_90\3&11583659&0&F0
       Driver: n/a
         Name: Intel(R) ICH10 Family PCI Express Root Port 2 - 3A42
    Device ID: PCI\VEN_8086&DEV_3A42&SUBSYS_02F71028&REV_00\3&11583659&0&E1
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A36
    Device ID: PCI\VEN_8086&DEV_3A36&SUBSYS_02F71028&REV_00\3&11583659&0&EA
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub Control Status and RAS Registers - 3423
    Device ID: PCI\VEN_8086&DEV_3423&SUBSYS_00000000&REV_13\3&11583659&0&A2
       Driver: n/a
         Name: Broadcom NetLink (TM) Gigabit Ethernet
    Device ID: PCI\VEN_14E4&DEV_1698&SUBSYS_02F71028&REV_10\4&62990A5&0&00E1
       Driver: n/a
         Name: Intel(R) ICH10 Family PCI Express Root Port 1 - 3A40
    Device ID: PCI\VEN_8086&DEV_3A40&SUBSYS_02F71028&REV_00\3&11583659&0&E0
       Driver: n/a
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A35
    Device ID: PCI\VEN_8086&DEV_3A35&SUBSYS_02F71028&REV_00\3&11583659&0&E9
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers - 3422
    Device ID: PCI\VEN_8086&DEV_3422&SUBSYS_00000000&REV_13\3&11583659&0&A1
       Driver: n/a
         Name: VIA 1394 OHCI Compliant Host Controller
    Device ID: PCI\VEN_1106&DEV_3403&SUBSYS_02F71028&REV_00\4&342A71D0&0&00E3
       Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17713
    LogMeIn Video Encoder,0x00200000,1,1,racodec.ax,
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17713
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17713
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    LogMeIn Video Decoder,0x00800000,1,1,racodec.ax,
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17713
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.17835
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17835
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.17835
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.17713
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.17514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.17835
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17713
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.17713
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17713
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17713
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17713
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    LogMeIn Video Encoder,0x00200000,1,1,racodec.ax,
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17713
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Fraps Video Decompressor,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Xfire Video Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Audio Capture Sources:
    Microphone (Sennheiser USB Head,0x00200000,0,0,qcap.dll,6.06.7601.17514
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17713
    WDM Streaming Capture Devices:
    Sennheiser USB Headset,0x00200000,3,2,ksproxy.ax,6.01.7601.17514
    WDM Streaming Rendering Devices:
    HD Audio HDMI out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HD Audio Headphone/Speakers,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HD Audio SPDIF out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Sennheiser USB Headset,0x00200000,3,2,ksproxy.ax,6.01.7601.17514
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17708
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Audio Renderers:
    Speakers (Sennheiser USB Headse,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Speakers (High Definition Audio Device),0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Speakers (Sennheiser USB Headset),0x00200000,1,0,quartz.dll,6.06.7601.17713
    Speakers (High Definition Audio,0x00200000,1,0,quartz.dll,6.06.7601.17713
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0

    https://crash-stats.mozilla.com/report/index/bp-0a0b872f-5127-4ee1-a355-ca3cb2120721
    https://crash-stats.mozilla.com/report/index/bp-9cd87dd7-205f-4844-9e6d-3ce262120721
    https://crash-stats.mozilla.com/report/index/bp-8c07c846-b2ed-4535-8db4-4ee072120720
    https://crash-stats.mozilla.com/report/index/bp-f29a89ed-f8b1-4a62-ba3e-983e22120720
    https://crash-stats.mozilla.com/report/index/bp-e16d2b91-0f7d-4e5a-9e25-255852120718
    https://crash-stats.mozilla.com/report/index/bp-1226c709-5f87-41c6-95d3-4310d2120718
    https://crash-stats.mozilla.com/report/index/bp-4de2a0da-dd36-4ec8-8e53-c42742120714
    https://crash-stats.mozilla.com/report/index/bp-e16d2b91-0f7d-4e5a-9e25-255852120718
    https://crash-stats.mozilla.com/report/index/bp-4de2a0da-dd36-4ec8-8e53-c42742120714
    https://crash-stats.mozilla.com/report/index/bp-eac1c5a5-2dce-4415-b645-07a1f2120714
    https://crash-stats.mozilla.com/report/index/bp-1ede5bd3-8c72-4362-8d79-4f29c2120714
    https://crash-stats.mozilla.com/report/index/bp-d4fd5dae-dacd-45f8-9549-2c3702120722
    https://crash-stats.mozilla.com/report/index/bp-ca510991-de29-44b3-be02-0255a2120722
    https://crash-stats.mozilla.com/report/index/bp-8600c221-3fd3-4eaa-a5af-a602b2120722
    With Hardware Accelaration in Flash turned off. Still crashing.

  • "Adobe Setup has stopped working" problem with XP, not Vista

    Adobe has posted a tech note to work around the "Adobe Setup has stopped working" for Vista:
    http://kb2.adobe.com/cps/408/kb408524.html
    However, I am having almost the same problem with Windows XP SP3.  I have tried installing and updating using both an admin class user and the actual Administrator.  At first I thought it might be related to Symantec EndPoint until I saw the Vista thread, but I get the same problems even with EndPoint not on the machine.  The posted technote (which seems oddly written by the way.. mentioning junctions AND folders?!?) does not cover XP, only Vista.  My attempts to translate it over to XP procedures does not get very far.
    The install goes fine, but any subsequent updates for the suite fail.  Once the failure occurs, InDesign and other apps will refuse to open.  I can't even right-click a file in Windows Explorer or it also results in a crash (I am guessing to the CS Drive and Bridge additions to the contextual menu).  The main apps that fail to update appear to be the same ones mentioned for Vista:
    Adobe Drive and Services update (aka Version Cue client 4.0.1, Creative Suite Infrastructure 1.0.1)
    Adobe Version Cue Server 4.0.1 update
    Flash Lite 3.1 Update for Adobe Device Central CS4 (aka Device Central 2.1)
    Adobe Output Module update for Adobe Bridge CS4 (aka Output Module 2.1)
    Extensions Manager CS4 2.1
    Screenshots of the errors are here:
    http://drop.io/tlzrsif
    Luckily we use drive images for our systems so I can hop back to a freshly prepped notebook with out much delay, but given the long CS4 install time this has become a pain to try to solve.
    Have any others run into this problem using XP and not Vista?

    here you go
    Problem signature
    Problem Event Name: APPCRASH
    Application Name: iTunesHelper.exe
    Application Version: 7.3.1.3
    Application Timestamp: 468d67e8
    Fault Module Name: QuickTimeStreamingAuthoring.qtx
    Fault Module Version: 7.2.0.240
    Fault Module Timestamp: 4684a83a
    Exception Code: c0000005
    Exception Offset: 00016c09
    OS Version: 6.0.6000.2.0.0.768.3
    Locale ID: 1033
    Additional Information 1: 18fe
    Additional Information 2: f42ba5cd8b2ed31f18b99a5ea46137af
    Additional Information 3: 4735
    Additional Information 4: ae0a749503b699b3b75d581a3dbfd557
    Extra information about the problem
    Bucket ID: 466198587

  • LiveCycle Workbench ES2 - "Java(TM) Platform SE binary has stopped working" Error

    Hi,
    I am getting this error when I try to create a new process o open an existing process.
    "Java(TM) Platform SE binary has stopped working"
    The only option is to click on a "Close" button and end the LC Workbench ES2 program.
    Also, when I try to open an existing form, it displays 'garbage' - a screenfull of control unrecognizable characters - instead of the form itself.
    When this error comes up, I also get a pop-up window with a list of log entries / errors (please see attached: Java Platform SE binary has stopped working.jpg)
    Environment:
    Windows Vista Ultimate running on HP Desktop (e9107c Intel CORE 2 Quad Processor withy 8 GB RAM, 750GB HDD)
    Downloaded and installed the Trial Version of LiveCycle ES2 package (Windows JBoss version)
    The LiveCycle ES2 server is installed properly and is working with the following services. Are there any missing services?
    LiveCycle Output ES2, LiveCycle Rights Management ES2, LiveCycle PDF Generator ES2 Evaluation, LiveCycle Process Management ES2, LiveCycle Workspace ES2, Applications and Services, LiveCycle ContentServices ES2, LiveCycle Forms ES2
    I already had Adobe Acrobat Pro Extended 9.2 and the associated LiveCycle Designer instaleld prior to installing the Trial of LC ES2.
    Basesd on the installation insttructions, I deleted the Designer ES from my Acrobat Pro Extended and instaleld the LC Workbench ES2.
    Now I don't see a seprate entry for the LC Designer ES2 anymore on my Start >> Programs.
    And th newly installed LC Workbench is not working
    Any help in making the workbench 'work' is greatly appreciated.
    Are there any tests we can do to troubleshoot this?
    Thanks.

    Here is some additional information that may be helpful in identifying the cause for this problem.
    Here is the Exact ERROR :
    Java (TM) Platform SE binary has stopped working
    A problem caused the program to stop working correctly.
    Windows will close the program and notify you if a solution is available.
    Button: "Close Program".
    On clicking that button, the error window goes away; the main LC WB ES2 program also closes; but a long error window appears. The full screenshot was attached in my original message. The top few lines are reproduced below.
    JVMterminated. Exit code=255
    C:\Program Files (x86)\Adobe\AdobeLiveCycleWorkbench ES2\workbench\jre\javaw.exe
    -Xms128m
    -Xmx512m
    -XX:PermSize=256m
    -XX:MinHeapFreeRatio=40
    ========Here is teh cutrrent status ===================
    Adobe LiveCycle Designer ES2 is working properly: Good
    Adobe LiveCycle Workbench ES2 has ONE problem
    1. Program Starts properly
    2. I am able to login to the LCES2 server
    3. I am able to Browse and select sample projects
    4. I am ble to create an Application, a folder, and a Form
    5. I am able to invoke the LC Designer ES2  from within Workbench (while creating a form)
    6. I am able to "invoke" an existinmg sample process in a web browser (not within workbench environment)
    The main problem is...
    I am NOT able to create a new process or open existing process using workbench.
    Since it gives Java Platform SE error, I checked the versions of various Java Run Time Environments on my pc.
    Properties of javaw.exe in different folders:
    1. My Computer's JRE (common to all apps)
    Folder: Program Files\Java\jre6\bin\
    File Name: javaw.exe: Java Platform SE Binary
    Version: 6.0.170.4
    2. Adobe LiveCycleWorkbench ES2
    Folder: Program Files (x86)\Adobe\Adobe LiveCycleWorkbench ES2\jre\bin\
    File Name: javaw.exe: Java Platform SE Binary
    Version: 6.0.20.6
    2.1 Adobe LiveCycleDesigner ES2
    Folder: Program Files (x86)\Adobe\Adobe LiveCycleWorkbench ES2\LiveCycleDesigner ES2\jre\bin\
    File Name: javaw.exe: Java Platform SE Binary
    Version: 6.0.140.6
    2.2 workbench
    Folder: Program Files (x86)\Adobe\Adobe LiveCycleWorkbench ES2\workbench\jre\bin\
    File Name: javaw.exe: Java Platform SE Binary
    Version: 6.0.70.6
    I tried to use the same versions of JRE in all these folders; that didn't work..
    I hope someone can throw more light on this and find the real cause.
    Thanks a lot in advance!

  • Constant Error; Adobe Flash Player 11.4 r402 has stopped working. But NOT running Trusteer Rapport.

    I am experiancing this unbelieveably annoying and constant Flash error;  Adobe Flash Player 11.4 r402 has stopped working.
    But NOT running Trusteer Rapport, I never have, and it's not even installed on my computer.  So what's causing this?

    There were a couple AntiVirus/AntiMalware products that keep coming up, but I haven't validated that in the lab and don't want to call anyone out publicly without reporting the issue to them first.

If you could tell me what antivirus/antimalware products and versions you have installed, that would be helpful.
    So, third party stuff aside, I'd like to know more about the crashes your seeing:
    1.) Please provide links to the Firefox crash reports.  If you have multiples, the first few would be great.
         In Firefox, type about:crashes in the address bar
         If the link starts with "bp...", it's already been submitted -- just right-click on it and copy the link, and paste it into the reply here.
         If not, click it to submit it, and copy the subsequent link.
    2.) In firefox, type about:support
         Just copy and paste the output into the reply.
    3.) In Firefox, type about:plugins
         Please copy and paste the output into the reply
    4.) Please provide the output of the DirectX Diagnostic Utility
         Click Start > type "dxdiag" [enter]
         Click Save All Information
         Copy the output of the file into the reply, or use Adobe SendNow/DropBox/PasteBin to share the file.
    5.) If you can provide an exact URL and step-by-step instructions on repeating the crash (if it's consistent), that would be really helpful.  My goal is to build out a configuration that matches yours as closely as possible, reproduce the problem and then debug it.
    If you're not comfortable sharing that diagnostic information publicly, send me a private message.  Just click my name and use the options on the right.
    Thanks!

  • Kinect Configuration Verifier has stopped working

    Hello Guys,
    I'm trying to set up my Kinect v2 and I keep getting a crash with the KinectV2 Configuration Verifier. When I run the exe it instantly stops on the main screen. 
    I'm not able to click anything on that screen.
    Shortly afterwards I get the following crash KinectV2ConfigurationVerifier.exe has stopped working.
    Full log from the crash:
    Problem signature:
      Problem Event Name: CLR20r3
      Problem Signature 01: KinectV2ConfigurationVerifier
      Problem Signature 02: 2.0.1410.16000
      Problem Signature 03: 5441126a
      Problem Signature 04: System.Management
      Problem Signature 05: 4.0.30319.33440
      Problem Signature 06: 520042ce
      Problem Signature 07: da
      Problem Signature 08: 3f
      Problem Signature 09: System.Management.Management
      OS Version: 6.3.9600.2.0.0.256.48
      Locale ID: 2108
      Additional Information 1: 5861
      Additional Information 2: 5861822e1919d7c014bbb064c64908b2
      Additional Information 3: a10f
      Additional Information 4: a10ff7d2bb2516fdc753f9c34fc3b069
    Any help would be greatly appreciated!
    ===============
    Computer Specs:
    Operating System: Windows 8.1 Pro 64-bit (6.3, Build 9600) (9600.winblue_r5.141029-1500)
    System Manufacturer: MEDION
           System Model: X681X
                   BIOS: Default System BIOS
              Processor: Intel(R) Core(TM) i7 CPU       Q 740  @ 1.73GHz (8 CPUs), ~1.7GHz
                 Memory: 4076MB RAM
    Available OS Memory: 4076MB RAM

    Thanks for your reply Carmine. There have been no other SDK installs or runtime updates recently. I have run a full uninstall of the SDK and the Verifier. Rebooted. Reinstalled the SDK. Rebooted. Reinstalled the verifier. Connected the Kinect then ran the
    verifier resulting the the same crash. I debugged the crash and got the following output from VS2010:
    ============
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Program Files (x86)\Microsoft Kinect Configuration Verifier\KinectV2ConfigurationVerifier.exe'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework\v4.0_4.0.0.0__31bf3856ad364e35\PresentationFramework.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_32\PresentationCore\v4.0_4.0.0.0__31bf3856ad364e35\PresentationCore.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Program Files (x86)\Microsoft Kinect Configuration Verifier\en-US\KinectV2ConfigurationVerifier.resources.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework.Aero2\v4.0_4.0.0.0__31bf3856ad364e35\PresentationFramework.Aero2.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Program Files (x86)\Microsoft Kinect Configuration Verifier\Microsoft.WindowsAzure.Storage.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\UIAutomationTypes\v4.0_4.0.0.0__31bf3856ad364e35\UIAutomationTypes.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'Microsoft.GeneratedCode'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll'
    'KinectV2ConfigurationVerifier.exe' (Managed (v4.0.30319)): Loaded 'C:\Program Files (x86)\Microsoft Kinect Configuration Verifier\EnumUSB.dll'
    An unhandled exception of type 'System.Management.ManagementException' occurred in mscorlib.dll
    Additional information: Invalid parameter 
    The program '[5616] KinectV2ConfigurationVerifier.exe: Managed (v4.0.30319)' has exited with code 0 (0x0).
    ===========
    Also I have just check the driver for the Kinect and the "WDF KinectSensor Interface 0" driver has a yellow exclamation beside it. My Kinect does not seemed to be turned on. It's connected to a 3.0 usb slot but the usb slot doesn't have a super
    speed symbol on it like the Kinect adapter does, could this cause problems?

  • My audio stops outputting after a few songs in a playlist - itunes says its still playing, stopping and starting track recommences audio output.  Mac book Pro Lion 16gb ram

    My audio stops outputting after a few songs in a playlist - itunes says its still playing, stopping and starting track recommences audio output.  Mac book Pro Lion 16gb ram.  Can be any song, any time, same song will play if I select it again.  Bit of a bummer itunes is the main thing I use (macbook pro jukebox).

    Most likely culprit is your Lacie drives which are notorious for flaky power supplies which cause just the sort of erratic behaviour that you describe. Have had similar issues myself. Lacie has been good about replacing my power converter-- twice. If you have seven of them, good luck finding the bad one or more. Like I said, the behaviour is erratic. Sometimes it'll work sometimes not. I can't comment on Samsung drives because I've never used them and have never heard anything about them. Same with Softraid. Why not just use Disk Utility. Sounds like you're ready for an external hardware raid. This will be much faster, much more reliable, and may even be cheaper than seven firewire drives. Check out G Tech, and Maxx Digital for starters.
    Best of luck
    Terry

  • Safari in Lion has stopped working.

    Safari in Lion has stopped working.  All my peers that have lion have been having this problem, and those that still have Snow Leopard have no issues with their Safari. The loading animation only gets to about as far as "http://" and just hangs there. It says it's connected to the internet (i've tried with both wi-fi and ethernet). I have no idea what happened, as it had been working for a solid month before this.
    I'm sadly writing this message from the firefox browser .
    In the past to get it to start working again (for a short period of time), i would:
    Emtpy Cache in Safari
    Reset Safari
    Remove my Wi-Fi remembered internets
    Delete Wi-fi
    Reboot the computer
    Re-add Wifi
    Reconnect to the internet
    it would still hang for a bit, but eventually it would load a page.
    If anyone has any advise, it's much appreciated.
    TroublesInToronto

    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software -- potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions -- they’re easy to carry out and won’t change anything on your Mac.
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing.
    Below are four lines of text in monospaced type, which are actually shell commands -- little programs. They’re harmless, but they must be used exactly as given in order to work. Some of the lines will probably wrap in your browser, but each one is really just a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then either copy or drag it. The headings “Step 1” and so on are not part of the commands.
    Step 1
    Launch the Terminal application, copy or drag -- do not type -- the line below into the window, and press return:
    kextstat -kl | awk ' !/apple/ { print $6 $7 } '
    Post the lines of output (if any) that appear below what you just entered (the text, please, not a screenshot.)
    Step 2
    Repeat with this line:
    sudo launchctl list | sed 1d | awk ' !/0x|apple|com\.vix|edu\.|org\./ { print $3 } '
    This time, you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning.
    Step 3
    launchctl list | sed 1d | awk ' !/0x|apple|edu\.|org\./ { print $3 } '
    Step 4
    ls -1A {,/}Library/{Ad,Compon,Ex,Fram,In,La,Mail/Bu,P*P,Priv,Qu,Scripti,Sta}* 2> /dev/null
    Important: If you synchronize with a MobileMe account, your me.com email address will appear in the output of the above command. Change it to something like “[email protected]” before posting.
    Remember, this is all drag-and-drop or copy-and-paste, whichever you prefer -- no typing, except your password.
    You can then quit Terminal.

  • JTable.changeSelection() has stopped working for me in Java 1.5

    The application I'm working on has a search function for a large table of data. In addition, you can restrict the search to a selected area of the table. This worked fine when compiled on Java 1.4, but has stopped working on Java 1.5. It appears the problem is with changeSelection not actually changing the selection to the cell that was found in the search.
    I've been able to reproduce the problem with some small modifications to the SimpleTableSelectionDemo.java tutorial program. I've included the code below with my changes.
    Basically all I did was modify the mouseListener so that instead of printing the table contents, it calls changeSelection to a fixed location (simulating the search going to a matching cell).
    If I compile/run in 1.4, I can select a cell or region, right-click the mouse and see the specified cell selected. If I start typing the selected cell is edited.
    If I compile/run in 1.5, when I right-click the selected cell is not changed (the second selected cell of the select region stays selected). If I start typing the wrong cell is edited.
    Hopefully someone can tell me if this is a run-time bug, or a change in behavior (and what I need to do to get it working again in 1.5).
    * SimpleTableSelectionDemo.java is a 1.4 application that requires no other files.
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JComponent;
    import javax.swing.ListSelectionModel;
    import javax.swing.event.ListSelectionEvent;
    import javax.swing.event.ListSelectionListener;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    * SimpleTableSelectionDemo is just like SimpleTableDemo,
    * except that it detects selections, printing information
    * about the current selection to standard output.
    public class SimpleTableSelectionDemo extends JPanel {
        private boolean DEBUG = true;
        private boolean ALLOW_COLUMN_SELECTION = true;
        private boolean ALLOW_ROW_SELECTION = true;
        public SimpleTableSelectionDemo() {
            super(new GridLayout(1,0));
            final String[] columnNames = {"First Name",
                                          "Last Name",
                                          "Sport",
                                          "# of Years",
                                          "Vegetarian"};
            final Object[][] data = {
                {"Mary", "Campione",
                 "Snowboarding", new Integer(5), new Boolean(false)},
                {"Alison", "Huml",
                 "Rowing", new Integer(3), new Boolean(true)},
                {"Kathy", "Walrath",
                 "Knitting", new Integer(2), new Boolean(false)},
                {"Sharon", "Zakhour",
                 "Speed reading", new Integer(20), new Boolean(true)},
                {"Philip", "Milne",
                 "Pool", new Integer(10), new Boolean(false)}
            final JTable table = new JTable(data, columnNames);
            table.setPreferredScrollableViewportSize(new Dimension(500, 70));
            table.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
            if (ALLOW_ROW_SELECTION) { // true by default
                ListSelectionModel rowSM = table.getSelectionModel();
                rowSM.addListSelectionListener(new ListSelectionListener() {
                    public void valueChanged(ListSelectionEvent e) {
                        //Ignore extra messages.
                        if (e.getValueIsAdjusting()) return;
                        ListSelectionModel lsm = (ListSelectionModel)e.getSource();
                        if (lsm.isSelectionEmpty()) {
                            System.out.println("No rows are selected.");
                        } else {
                            int selectedRow = lsm.getMinSelectionIndex();
                            System.out.println("Row " + selectedRow
                                               + " is now selected.");
            } else {
                table.setRowSelectionAllowed(false);
            if (ALLOW_COLUMN_SELECTION) { // false by default
                if (ALLOW_ROW_SELECTION) {
                    //We allow both row and column selection, which
                    //implies that we *really* want to allow individual
                    //cell selection.
                    table.setCellSelectionEnabled(true);
                table.setColumnSelectionAllowed(true);
                ListSelectionModel colSM =
                    table.getColumnModel().getSelectionModel();
                colSM.addListSelectionListener(new ListSelectionListener() {
                    public void valueChanged(ListSelectionEvent e) {
                        //Ignore extra messages.
                        if (e.getValueIsAdjusting()) return;
                        ListSelectionModel lsm = (ListSelectionModel)e.getSource();
                        if (lsm.isSelectionEmpty()) {
                            System.out.println("No columns are selected.");
                        } else {
                            int selectedCol = lsm.getMinSelectionIndex();
                            System.out.println("Column " + selectedCol
                                               + " is now selected.");
            if (DEBUG) {
                table.addMouseListener(new MouseAdapter() {
                    public void mouseClicked(MouseEvent e) {
    //                  printDebugData(table);
    // ==============================================
    // Changed to do a changeSelection() on a right-click
    // without clearing any existing selected area.
                        if (e.getButton() == MouseEvent.BUTTON3) {
                            System.out.println("mouse clicked");
                            table.changeSelection(2, 3, true, true);
    // ==============================================
            //Create the scroll pane and add the table to it.
            JScrollPane scrollPane = new JScrollPane(table);
            //Add the scroll pane to this panel.
            add(scrollPane);
        private void printDebugData(JTable table) {
            int numRows = table.getRowCount();
            int numCols = table.getColumnCount();
            javax.swing.table.TableModel model = table.getModel();
            System.out.println("Value of data: ");
            for (int i=0; i < numRows; i++) {
                System.out.print("    row " + i + ":");
                for (int j=0; j < numCols; j++) {
                    System.out.print("  " + model.getValueAt(i, j));
                System.out.println();
            System.out.println("--------------------------");
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("SimpleTableSelectionDemo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            SimpleTableSelectionDemo newContentPane = new SimpleTableSelectionDemo();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    Running on Mac OS X 10.4.3
    java version "1.5.0_02"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_02-56)
    Java HotSpot(TM) Client VM (build 1.5.0_02-36, mixed mode, sharing)
    The same problem occurs here.

Maybe you are looking for