NVision not running excel.exe

Hello,
I'm working with Peopletools 8.52 and trying to run an nVision report. The process gets stuck on initiated in Process Monitor and doesn't continue on.
I have run psnvs.exe with the /register option as well as restarted the NT process scheduler, but when I check the Windows Task Manager, there is a single psnvs.exe process running and no excel.exe being initiated.
Please advise,
Thank you.

Are you running on Windows 2008 R2 64-bit? If so, take a look at
E-NV: Windows 2008 64-bit Configuration To Allow nVision To Run To Success In 2-Tier And Web [ID 1206163.1]
and if you haven't already done so, try creating the
C:\Windows\SysWOW64\config\systemprofile\Desktop
directory and make sure the user you specified for the Oracle ProcMgr service has read/write access to this directory. Worked for me on 8.51, not sure if anything changed in 8.52.
Regards,
Bob

Similar Messages

  • Report generation vis are not running in exe

    HI 
    Im using report generation vis for create a excel report.Its not working in exe.Even i included the  Nireport.llb in
    (C:\Program Files\National Instruments\LabVIEW 8.6\vi.lib\Utility)to my project.wat to do?
    kavi
    Solved!
    Go to Solution.

    Hi kavi,
    did you get some warnings while building the application?
    See this link:
    http://digital.ni.com/public.nsf/allkb/2AE85CF95217E60786257540000D818C
    Mike

  • Captivate 7 does not run the exe on windows xp

    We are using adobe captivate 7 installed (trail version ) in a windows 7 with SP1 computer . when we publish it and run exe in the windows XP (home ) under administrator we get  following error even if the flash player is updated.
    "" The installed version of Flash Player is not the latest.  The latest Flash Player version has been installed successfully without affecting your existing Flash Player installation.  Double-click the EXE again to run it.""
    when we click OK it disappears and when we run the exe for the next time it runs . whereas if we run the same exe in the other user (not having admin permission ) also gets the same error and after clicking OK if we run exe again it shows the same error message again and again .
    we have tested in win 7, win 8 , win server 2012 it works fine.
    please suggest me why it comes and how to prevent it .

    Installing on Windows is pretty simple, unless there is something that prevents the java environment from starting the console. Check the path environment variable and make sure there are no other jdk mixed. Check that the windows security doesn't prevent the oui console from starting, it happens that the windows security blocks java applications, and if you asked it to do it by clicking accept, then it won't start.
    ~ Madrid
    http://hrivera99.blogspot.com/

  • SSIS Job deployment does not run my .exe but is described as a success

    Hi i have scripted a simple script task in c# to run an exe with the following code
    Process.start(filename.exe);
    i have also tried using the 'Execute Process task' in the SSIS toolbox.
    both methods work when i debug. 
    However when deployed to the SQL server as a job, the jobs are described as a success but my program does not run?!
    The exe file is published from SQL visual studio and the resultant filename is setup.exe which i am trying to run.
    Any help pleasE?
    I am not using any shared file resources, the setup.exe is on my desktop.

    this is all i get
    Message Type
    Message Time
    Message
    Message Source Name
    Subcomponent Name
    Execution Path
    OnPostExecute
    8/22/2014 4:15:09 PM
    Package:Finished, 4:15:09 PM, Elapsed time: 00:00:00.234.
    Package
    \Package
    OnPostExecute
    8/22/2014 4:15:09 PM
    Execute Process Task:Finished, 4:15:09 PM, Elapsed time: 00:00:00.203.
    Execute Process Task
    \Package\Execute Process Task
    OnPostValidate
    8/22/2014 4:15:09 PM
    Execute Process Task:Validation is complete.
    Execute Process Task
    \Package\Execute Process Task
    OnPreExecute
    8/22/2014 4:15:09 PM
    Execute Process Task:Start, 4:15:09 PM.
    Execute Process Task
    \Package\Execute Process Task
    OnPreValidate
    8/22/2014 4:15:09 PM
    Execute Process Task:Validation has started.
    Execute Process Task
    \Package\Execute Process Task
    OnPreExecute
    8/22/2014 4:15:09 PM
    Package:Start, 4:15:09 PM.
    Package
    \Package
    OnPreValidate
    8/22/2014 4:15:09 PM
    Package:Validation has started.
    Package
    \Package
    OnPreValidate
    8/22/2014 4:15:09 PM
    Execute Process Task:Validation has started.
    Execute Process Task
    \Package\Execute Process Task
    OnPostValidate
    8/22/2014 4:15:09 PM
    Execute Process Task:Validation is complete.
    Execute Process Task
    \Package\Execute Process Task
    OnPostValidate
    8/22/2014 4:15:09 PM
    Package:Validation is complete.
    Package
    \Package
    OnInformation
    8/22/2014 4:15:08 PM
    Package:Information: Succeeded in upgrading the package.
    Package
    \Package
    OnInformation
    8/22/2014 4:15:08 PM
    run exe:Information: The Script Task "ST_6ba434db5c5649b7b68ab5fb14977781" has been migrated.
    The package must be saved to retain migration changes.
    run exe
    \Package\run exe
    OnWarning
    8/22/2014 4:15:04 PM
    run exe:Warning: Found SQL Server Integration Services 2012 Script Task "ST_6ba434db5c5649b7b68ab5fb14977781"
    that requires migration!
    run exe
    \Package\run exe

  • Ole2 object can not kill excel.exe process

    Hi every body
    I have a code that I have to generate lots of excel file from ole2 object. I have a loop and I generate excel file in it. my problem is that after each step that one excel file created and quit from that, excel.exe process will remain in memory(you can see it in task manager) and all of excel.exe process will kill after end of the program. I want that I have one excel.exe process in my memory for each step of my loop. this is my code :
    REPORT  Ztest.
    INCLUDE ole2incl .
    DATA: gs_excel TYPE ole2_object ,
    gs_wbooklist TYPE ole2_object ,
    gs_application TYPE ole2_object ,
    gs_wbook TYPE ole2_object ,
    gs_activesheet TYPE ole2_object ,
    shapes TYPE ole2_object,
    gs_sheets TYPE ole2_object .
    DATA : file_in TYPE string,
            count TYPE n LENGTH 2.
    DO 20 TIMES.
    CLEAR : file_in.
             count = count + 1.
             CONCATENATE 'D:\PP\' count  '.xls' INTO file_in.
      CREATE OBJECT gs_excel 'EXCEL.APPLICATION'.
             SET PROPERTY OF gs_excel 'Visible' = 0 .
             GET PROPERTY OF gs_excel 'Workbooks' = gs_wbooklist .
             GET PROPERTY OF gs_wbooklist 'Application' = gs_application .
             SET PROPERTY OF gs_application 'SheetsInNewWorkbook' = 1 .
             CALL METHOD OF gs_wbooklist 'Add' = gs_wbook .
             GET PROPERTY OF gs_application 'ActiveSheet' = gs_activesheet .
             SET PROPERTY OF gs_activesheet 'Name' = 'Sheet1' .
      CALL METHOD OF gs_activesheet 'SaveAs'
             EXPORTING #1 = file_in #2 = 1.    
             CALL METHOD OF gs_wbooklist 'Close'.
             CALL METHOD OF gs_application 'Close'.
             CALL METHOD OF gs_activesheet 'Close'.
             CALL METHOD OF gs_excel 'Quit'.
             CALL METHOD OF gs_application 'Quit'.
             FREE OBJECT :gs_application , gs_wbooklist ,gs_excel, gs_wbooklist ,
                     gs_activesheet , gs_wbook.
    ENDDO.
    thanks alot.

    Why are you programmatically opening an Excel sheet in C# instead of using the DataFlow task with an Excel input?
    Since your task is programmatically starting Excel via "new Microsoft.Office.Interop.Excel.Application();", it is your responsibility to stop it.
    Please see "Quit":
    http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel._application.quit(v=office.15).aspx

  • ITunes not running. (iTunes.exe not in processes)

    I recently reformatted my hard drive. I reinstalled iTunes, and it ran as expected. This afternoon, it suddenly stopped. Now, after double clicking the shortcut (or going straight to the program file), I just get a quick hourglass. Nothing follows.
    I've checked the system processes, and itunes.exe isn't present. For what it's worth, iPodService.exe, AppleMobileDeviceService.exe, and iTunesHelper.exe are all running.
    I've uninstalled (via Add/Remove as well as the iTunes installer file) five or six times now. I've also tried manually removing remaining program files and Quicktime system32 dll files. Still no luck.
    I have ESET NOD32 running but nothing otherwise. Disabling it changes nothing.
    I appreciate you checking this out. Thank you for any efforts.

    I've had a really similar issue lately. About a week ago my iTunes stopped opening for me. I'd click on the icon on the start bar, the desktop, etc to no avail. It simply wouldn't open. I wouldn't get an error message or anything, just one of those blue loading circles for a second or two and then nothing. After trying the obvious (restarting my computer), I tried again, with the same results.
    I decided I'd simply uninstall iTunes/Quicktime and reinstall them. They uninstalled fine according to Vista, but now when I try to reinstall iTunes I get ones of these messages during installation: http://img199.imageshack.us/img199/1282/issue.jpg

  • T400 with ATI Radeon HD 3400. Driver not found after running ImageX.exe /Capture

    Hello,
    I was able to reproduce the following problem on a T400.
    - unattended installation of WXP-SP3 (slipstreamed)
    - reboot
    - install latest ATI driver from Lenovo/IBM site (8.503.2.2-080818a-069536C)
    - reboot
    At this point, the video driver is well configured.
    - Reboot once or twice, video driver still good.
    - Boot the T400 on WinPE 2.0
    - Capture the C:\ to a network file share using ImageX.exe (from Microsoft's WAIK 1.1)
    - Shutdown the T400, and reboot on C:\
    - At this point, video driver is "lost". The Hardware Wizard says "new driver found", but stick with default VGA.
    Then I get an ATI error telling the driver is missing or not well installed.
    - When rebooting several times, suddenly the card is back in the device manager as a Radeon HD 3400.
    (without re-installing the driver ...)
    Anyone has an explanation ?
    Please not I did not run "sysprep.exe" before capturing with ImageX.exe
    stefan

    Update on this problem.
    After running "sysprep.exe -mini -quiet -reseal -shutdown", I ran the "ImageX.exe /capture".
    After rebooting the T400, the ATI driver was fine.
    Either is a coincidence (but I could repeat it 3 times...) or it is not advised to run "ImageX.exe /Capture" on a non-syspreped Windows XP.
    I know that a non-syspreped Vista system has a limitation if captured with ImageX.exe. But I am not aware on any limitation with XP.
    Stefan

  • How Can I Kill Excel.exe Process After finish my Execution of SSIS Package in Sqlserver2008r2

    Hi !,
          am new for c# and SSIS Package Creation , I am Trying to Read Excel file, and load the value into Sqlserver using SSIS package . My Problem is , After Execution of SSIS package Still Running EXCEL.exe Process in my server. i need to
    kill that process . I post my Code Exactly where am release my excel file object , please guide me where am going to wrong?
    Server Configuration
    OS:windows7
    SqlServer :2008r2
    Framework:3.5
    please give me some suggestion to correct my error .
    Here is My Code:
                Microsoft.Office.Interop.Excel.Application xlApp;
                Microsoft.Office.Interop.Excel.Workbook xlWorkBook;
                Microsoft.Office.Interop.Excel.Worksheet xlWorkSheet;
                var missing = System.Reflection.Missing.Value;
                xlApp = new Microsoft.Office.Interop.Excel.Application();
                xlWorkBook = xlApp.Workbooks.Open(filename, false, true, missing, missing, missing, true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, '\t', false, false, 0, false, true, 0);
                xlWorkSheet = (Microsoft.Office.Interop.Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
                Microsoft.Office.Interop.Excel.Range xlRange = xlWorkSheet.UsedRange;
                Array myValues = (Array)xlRange.Cells.Value2;
    int vertical = myValues.GetLength(0);
                int horizontal = myValues.GetLength(1);
                System.Data.DataTable dt = new System.Data.DataTable();
                bool isNameRead = false;
                // get header information
                for (int i = 1; i <= horizontal; i++)
                    string cellValue1 = "";
                    object cellObj = myValues.GetValue(1, i);
                    if (cellObj != null)
                        cellValue1 = myValues.GetValue(1, i).ToString();
                        if (cellValue1 == "Name")
                            if (!isNameRead)
                                dt.Columns.Add(new DataColumn(cellValue1));
                                isNameRead = true;
                            else
                                dt.Columns.Add(new DataColumn(cellValue1 + 1));
                                isNameRead = false;
                        else
                            dt.Columns.Add(new DataColumn(cellValue1));
                // Get the row information
                for (int a = 2; a <= vertical; a++)
                    //string cellrowvalue = "";
                    string isemt = "";
                    object[] poop = new object[horizontal];
                    for (int b = 1; b <= horizontal; b++)
                        isemt =(string) myValues.GetValue(a, b);
                        if (isemt != null)
                            poop[b - 1] = myValues.GetValue(a, b);
                    DataRow row = dt.NewRow();
                    row.ItemArray = poop;
                    dt.Rows.Add(row);
    xlWorkBook.Close(true, missing, missing);
                xlApp.Quit();
                releaseObject(xlWorkSheet);
                releaseObject(xlWorkBook);
                releaseObject(xlApp);
                return dt;
    releaseObject
    private void releaseObject(object obj)
                try
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(obj);
                    obj = null;
                catch (Exception ex)
                    obj = null;
                    MessageBox.Show("Unable to release the Object " + ex.ToString());
                finally
                    GC.Collect();
                    GC.WaitForPendingFinalizers();
                    GC.Collect();
                    GC.WaitForPendingFinalizers();
    Thanks
    Parthasarathi Purushothaman

    Why are you programmatically opening an Excel sheet in C# instead of using the DataFlow task with an Excel input?
    Since your task is programmatically starting Excel via "new Microsoft.Office.Interop.Excel.Application();", it is your responsibility to stop it.
    Please see "Quit":
    http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel._application.quit(v=office.15).aspx

  • Application builder exe does not load excel

    I have used application property node and invoke node to cerate a set of VIs that read and write data to an Excel sperad sheet.  This works fine in when running in LabVIEW, however when I run myApp.exe as build from application builder, the data does not get logged to Excel.  The file dialog appears to  open the XL Spreadsheet but not data gets logged nor is any error reported?
    What is going on?   All the VI are in the same project folder?  Is there some additional addon run-time the must be installed on the target machine?  I am uisng LabVIEW 2012 on the development station with Win7 Pro and Office 2010 on both the devleopment station and the target system.  Is there one document that describes using Application Builder?   It was not clear that I needed both LabVIEW and VISA run-time engines to get my application.exe to run on the target.  Is there something simialr I must do to get Office to work as well? 

    I was finally able to track this back through by starting from scratch and received an error code, which led me to this post:
    https://forums.ni.com/t5/LabVIEW/Error-2147319779-Excel-ActiveX-and-Broken-LabVIEW-Icon/td-p/2354776
    Deleting the "1.7" items solved the problem.

  • Client_ole2 EXCEL.EXE process not killed

    Hi,
    In a webForm, using webutil I open an Excel file with Client_ole2.
    When I close Excel the underlying process is not killed; I can still see an EXCEL.EXE process in my task manager.
    The consequence is that I can’t open an Excel file while the above mentioned process is still running.
    The EXCEL.EXE process keep on running until the local JVM shuts down.
    Can anyone give some advise what to do?
    Is this perhaps a known bug in webutil?
    Code.
    I use the following code (Extract):
    elsif upper(substr(l_locatie_client,-4,4)) in ('.XLS','.CSV') then
    -- open Excel
    application := CLIENT_OLE2.CREATE_OBJ ('Excel.Application');
    -- maak visible
    CLIENT_OLE2.SET_PROPERTY(application,'Visible',1);
    -- open document
    workbooks := CLIENT_OLE2.get_obj_property(application, 'workbooks');
    ArgList := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.Add_Arg(ArgList, l_locatie_client);
    workbook := CLIENT_OLE2.Invoke_obj(workbooks,'Open', Arglist);
    CLIENT_OLE2.Destroy_Arglist(Arglist);                         
    -- release objects
    CLIENT_OLE2.Release_Obj(workbook);                         
    CLIENT_OLE2.Release_Obj(workbooks);                         
    CLIENT_OLE2.Release_Obj(Application);                         -
    else
    qms$show_message('Can’t open this type of file.', 'I', FALSE);
    end if;
    specifications.
    server:
    Microsoft Windows 2000
    Service Pack 3
    Oracle 9iAS 9.0.2.3.0
    Webutil 1.0.2
    Client:
    Microsoft Windows XP
    Professionel version 2002
    JInitiator version 1.3.1.13
    Greetings,
    Wouter

    Please post your question to the FOrms page - and click on the forums link
    otn.oracle.com/products/forms
    Regards
    Grant Ronald

  • EXCEL.EXE in task manager not terminating after FREE OBJECT statement

    hi,
    can someone please help me find what's wrong with my codes below.  my problem is that after executing the entire codes, the EXCEL.EXE remains in the task manager.
    DATA: g_excel          TYPE ole2_object,
          g_workbooks      TYPE ole2_object.
    Create Excel Object
        CREATE OBJECT g_excel 'EXCEL.APPLICATION'.
        IF sy-subrc NE 0.
          MESSAGE e000(z2) WITH 'No Excel Creation Possible'(lrc).
        ENDIF.
    Display Alerts While Macro Is Running
        SET PROPERTY OF g_excel 'DisplayAlerts' = 0.
    Put Excel In Background
        SET PROPERTY OF g_excel 'VISIBLE' = 0.
        CALL METHOD OF g_excel 'Workbooks' = g_workbook.
        CALL METHOD OF g_workbook 'Open'
          EXPORTING #1 = p_file.
        GET PROPERTY OF g_excel 'ActiveWorkbook' = g_workbook.
    Save File To PC
        CALL METHOD OF g_workbook 'SAVEAS'
          EXPORTING
          #1 = p_file
          #2 = 1.
    Close The Workbook And Excel Application
        CALL METHOD OF g_workbook 'CLOSE'.
        FREE OBJECT g_workbook.
    Free Objects Used
        CALL METHOD OF g_excel 'QUIT'.
        FREE OBJECT g_excel.
    im guessing that the statement CALL METHOD OF g_workbook 'SAVEAS'.. has something to do with the issue because when i commented that statement, everything went fine - the EXCEL.EXE process is gone in the task manager.
    appreciate any inputs..
    thanks!
    Kel

    Hello,
    the correction in OSS note 575877 for function module ALSM_EXCEL_TO_INTERNAL_TABLE will free the 6 objects instead of just one.
    >>>>> Begin of change note 575877
    to kill the Excel process it's necessary to free all used objects
      FREE OBJECT h_cell.       m_message.
      FREE OBJECT h_cell1.      m_message.
      FREE OBJECT range.        m_message.
      FREE OBJECT worksheet.    m_message.
      FREE OBJECT workbook.     m_message.
      FREE OBJECT application.  m_message.
    <<<<< End of change note 575877
    best regards,
    J. N. N.

  • Excel macro will not run with OLE

    I have an ABAP program which builds an Excel macro with VBA code, downloads the file and inserts it into a new Excel workbook, and then runs the macro to populate the workbook.  All of this is being done via OLE functionality.
    The process works correctly for 99% of our user community.  However, some users are having trouble where when the Run Macro command is executed, the program just hangs and nothing happens.
    Here's a snippet of the code:
      CREATE OBJECT excel 'EXCEL.APPLICATION'.
    Insert macro file into the spreadsheet.
      CALL METHOD OF excel 'Modules' = ole_module NO FLUSH.
      CALL METHOD OF ole_module 'Add' = ole_newmodule NO FLUSH.
      CALL METHOD OF ole_newmodule 'Activate' = ole_activate NO FLUSH.                                              
      CALL METHOD OF ole_newmodule 'InsertFile' = ole_insertfile NO FLUSH EXPORTING #1 = macrofile.                   
      FREE OBJECT ole_insertfile NO FLUSH.                    
      FREE OBJECT ole_activate NO FLUSH.                     
      FREE OBJECT ole_newmodule NO FLUSH.
      FREE OBJECT ole_module.
    Execute the macro(s).
      macro_name = 'load_data_zsddxl'.                        
      CALL METHOD OF excel 'Run' = ole_run EXPORTING #1 = macro_name.                             
      FREE OBJECT ole_run.                                     
    The automation trace gives me this message (sorry about the formatting):
    <26=Automation:    CALL METHOD "Run" OF [#12/0x109B0C4C/101/Excel.Application.14]
                        #0: STRING "load_data_zsddxl"
    <26=Automation(Error):    CALL METHOD "Run"[DispID=259] OF [#12/0x109B0C4C/101/Excel.Application.14]
                        #0: STRING "load_data_zsddxl"
    IDispatch::Invoke raised exceptionThe remote procedure call failed
    <26=Automation(Error):   
    <26=Automation(Error):    ****************************ERROR OCCURED IN MODULE: [Microsoft Excel Application]**********************************************************************************************************************************
    <26=Automation(Error):    PROGRAM_ID               |MODULE_NAME                     |METHOD_NAME             |ERROR DESCRIPTION                    |VERSION            |GUI VERSION               |MODULE_PATH                                 |
    <26=Automation(Error):    **********************************************************************************************************************************************************************************************************************
    <26=Automation(Error):    Excel.Application.14     |Microsoft Excel Application     |Run                     |The remote procedure call failed     |14.0.5138.5000     |Gui Version not found     |C:\PROGRA1\MICROS1\Office14\EXCEL.EXE     |
    <26=Automation(Error):    **********************************************************************************************************************************************************************************************************************
    <26=Automation(Error):   
    What's strange is that if after starting Excel I set the property VISIBLE = '1', everything works as expected.
    The affected users are running on Windows7 with Excel 2010.
    Thanks for any direction you can provide.

    No, I don't.  It's been my understanding that by omitting the "NO FLUSH" from a command, that the accumulated commands are flushed at that point.  But I'll give it a try.  Willing to try anything at this point.
    Thanks.

  • Running an exe from within Oracle WebLogic 10g R3 does not find dll

    Hi,
    I am facing a strange issue with Oracle WebLogic 10g R3.
    I use the code as shown in Listing 1 below to run a windows based application exe (batch job) from within my web application hosted on Oracle WebLogic 10g Release 3.
    Note that this code woks fine on Tomcat 6.x and OC4J (JDeveloper TP4).
    The exec gets executed but the log of the exe program shows it could not load certain DLLs.
    Note that these DLLs are in the same directoy as the Batch program and this directory is in the PATH.
    Running through simple Java Program Successful*
    When I run the same program from a java program it runs successfully. So this means some WebLogic environment does not get set properly.
    Running directly BatchProg.exe rather than cmd.exe fails*
    Also note that when I run the exe directly e.g. BatchProg.exe rather than through cmd.exe it gives me a error the system did not find the file specified.
    CreateProcess error=2, The system cannot find the file specified with cause java.io.IOException: CreateProcess error=2, The system cannot find the file specified
    Listing 1:*
    String[] commandArgs = new String[|http://forums.oracle.com/forums/] { "cmd.exe", "/C", "BatchProg.exe \"param1\" \"param2\" " },null , l_workingDir)
    Runtime rt = Runtime.getRuntime();
    Process proc;
    proc = rt.exec( commandArgs, envParams, workingDir );
    ProcessIO errStream = new ProcessIO( proc.getErrorStream(), "ERROR");
    ProcessIO outStream = new ProcessIO( proc.getInputStream(), "OUTPUT");
    errStream.start(); // process any errors from the command
    outStream.start(); // process any output from the command
    System.out.println("Error=" +errStream);
    System.out.println("Out" + outStream);
    return (p_waitToFinish ? proc.waitFor() : this.SUCCESS);

    OK.
    I have posted this on the WebLogic Forum.
    Thanx.

  • LogonUI.exe, can't see it in task manager anymore, dose it mean its not running?

    after i tried to solve the issue with 26 csrss.exe running, it seemed to meany, i no longer see LogonUI.exe in task manager.
    forum posts from csrss.exe topic.
    Post 1
    i tried process explorer & trying stuff with that i opened a new csrss.exe & that works under my user not system & i cant kill that process (i double clicked on it), after restart it goes away? or should i just pull the cable out? i mane sudden
    shut down, status suspended, but it is on the list in task manager, how to get rid off it, end progress tree?
    it just it did not have any info about csrss, so i tried to open it with process explorer, but that thing did not do what i though, that's why it all happened.
    it also opened new Client server runtime process, i guess that csrss.exe under user is still in task manager list.
    Post 2
    restart solved the issue, at least it seems so, also that incident removed 24 csrss.exe from task manager, i had 26 running new i have only 2, i did it just to find out that maybe i can remove the csrss.exe what i opened after restart, but i did not expect
    this result, maybe this what some call zombie processes, they were in use once & when the process stopped they were stuck?
    some processes disappeared, example LogonUI.exe is no longer running, i had 25 LogonUI.exe running before, with restart it booted, i hope that PC will start tomorrow to, i hope i did not mess up something & it wont start,
    or i messed up PC security, made security holes.
    Another forum
    Post 1
    u have no idea what happened, i got both Process Monitor & explorer, i messed up double clicked on csrss.exe & that opened a new csrss.exe in task manager under my user, then i tried to kill the process, but it only suspended it, then i was thinking
    maybe after restart it lets me remove it totally from task manager, i made restart & what do i see when i open task manager? i see only 2 csrss.exe running, LOL sometimes messing up fixes the problem.
    maybe this what some call zombie processes, they were in use once & when the process stopped they were stuck?
    but all csrss.exe seemed legitimate, & no infection.
    Post 2
    does LogonUI.exe really run right new? is it just not showing? if its not running then i would have error message or problems with display? it would be funny if tomorrow i have all the 26 csrss.exe back.
    is LogonUI.exe running & just hidden, was it normal that LogonUI.exe was shown in task manager before? or is it  normal when its hidden? will it effect gaming? cant test, no games installed right new.
    but csrss.exe is not the only process that has more then 2 running & some over 10, one i counted it is 25.
    ok this are gone to, maybe this were connected to csrss.exe issue, but i have 10 svchost.exe, this should be normal?
    some processes disappeared, example LogonUI.exe is no longer running (well it seems it is no longer running, cause its no longer shown in task manager), i had 25 LogonUI.exe running before, with restart it booted, i hope
    that PC will start tomorrow to, i hope i did not mess up something & it wont start, or i messed up PC security, made security holes.
    i know some of my post i copied here repeat some things i said before, i copied the post cause i was thinking that it will help people to understand my situation better :).
    & i only double clicked on csrss.exe in windows system32 & created a new process, & i did end task to it & it was only suspended not killed, there was 2 win explores opened, one was cause i double clicked csrss.exe trough explorer, well u
    can see the files with out it, i was unable to remove it so i made a restart, & some processes were gone after that.
    i wonder did i mess up my windows & stopped some necessary progresses? despite the fact that PC is running, & seem to be running fine.
    csrss.exe was running 25 times & csrss.exe was running 26 times, but there was more processes that were running more then 3 times & they are gone to.
    if some processes i don't see any more are necessary i hope they at least run on background silently, is LogonUI.exe meant to run all the time like it did before? or only for few sec on log-on/start-up? so user never see it.
    PC seems to run fine right new, i did that stuff yesterday.
    i also have alienautopsy  & PC-Doctor to what is part of alienautopsy, i mentioned it in case it matters, also when i got in windows i so some strange process for few sec in task manager, its icon looked like computer chip, cant remember the process
    name, but if i remember correctly it was DLL or Intel process.
    under what name is LogonUI.exe admin tools service? i could check it from there, if u think its necessary

    well LogonUI.exe is listed on my task manager again, i mean its back, & about csrss, i have 3 running, i had 2 running yesterday (in task manager all 3 are running under system), with process explorer, it did not matter which of the csrss info i looked,
    all is same, all are runede by same processes, i could not copy that info under environment, but what i remember is, one was a  Invidia Pshysx, second & 3th was something to do with Intel, then i remember powershel, all that i remember, not worried
    about csrss yet, cause its still just 3, but i wonder about LogonUI.exe, for some reason i can't add picture/screenshot here
    dunno is it all normal or not, but i write it down here just in case, no problems with high memory nor cpu usage, PC seems to run normally
    if its not normal i have no idea whats causing it, i guess i need to just w8 a year or so before i give my PC to shop for maintenance, cause this is beyond me i think, cause no infections found & PC seems to run & function normally, maybe its caused
    by some old registry entries, i know registry cleaners are dangerous & can harm windows, so i think windows team should create their own reg cleaner free ware that finds only unnecessary reg entries that are no longer needed, a safe reg cleaner, also it
    mite be software issue/bug like example Invidia maybe is creating to meany hosts or how are this things called, csrss is connected to host service as far as i know, same goes for powershell & others that use csrss.exe, or windows bug, or bug that is caused
    by both, win8.1 & this drivers, well that's just a guess
    maybe its a bug, system has problems with removing some closed processes from the list, or shutting town the ones that were suppose to run temporarily?
    maybe i should ignore it until it starts to cause problems? i mean hit performance in a negative way
    i also noticed 2 dwm.exe & winlogon.exe running
    i used Ccleaner, but not for registry, i cleaned internet temporary files system temporary files event logs & memory dumbs & so on & on (its to much writing to write down all it cleans), if some of this type of files what are deleted with
    that, can it cause some processes to multiply? maybe among this files is a file where its written example what processes should be running or which process is connected to which process, like the Path & stuff, so registry cleaning is not the only cleaning
    that can cause issues?  or is it
    coincidence that after cleaning next day i see 1 extra csrss.exe &
    dwm.exe & winlogon.exe? either way i don't know do i want to test it & use cleaner 5 days after today again, does windows delete this things i mentioned i cleaned with cclener automatically over time? either way, i think i won't try anything
    to solve the extras issue, but if the number of this processes grows & it starts to cause problems i may just take the PC to a expert
    PC seems to run & respond normally
    EDIT 21/10/2014:
    today there is 2 csrss.exe & the other processes are back to 1 as well & LogonUI.exe is gone again, well i did not look processes when i turned PC on, i did it after restart, maybe it accrues after boot when win opens, that some processes remain
    & some are double
    is it normal that when i'm not doing anything with PC it takes 19% memory after PC start until i shut down & after restart it takes 16% memory (when i use restart button in windows), does this mean start up requires more memory & processes that
    remain running after start-up?

  • I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...

    I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...what should I do?

    Hi Arika,
    The drivers that you need to install to make your executable work depends on what your executable is doing. To get started, you need to have the LabVIEW Run-Time Engine installed on your target machine (the Win2000 machine you are planning to use) in order to run your executable. Next, you need to determine what drivers your executable uses, if any. For example, if you are using GPIB instrument control, you will need to install the NI-488 drivers on your target machine. If you are performing data acquisition, you will need to install NI-DAQ drivers. If you are doing image acquistion, you will need to install NI-IMAQ drivers.
    All these drivers are available for downloading on ni.com. To get the drivers, go to ht
    tp://www.ni.com/support , click on the link that takes you to Drivers and Updates (under Option 3), and click on the links to get to the driver(s) you need. For example, if you need the LabVIEW 5.1.1 Run-Time engine, click on the All Drivers and Updates by Application link on the main page (http://www.ni.com/softlib.nsf/). Then click on the LabVIEW link, Windows 2000, Run Time Engine, and then you will see the link to get to the page to download the LabVIEW 5.1.1 Run-Time Engine.
    I hope this information helps.
    Best Regards,
    Wilbur Shen
    National Instruments

Maybe you are looking for