How to run executable after installation?

Hi everyone,
I created an installer from one labview program with the application builder
of Labview7.1 for my customer, and this installer will be burned
on a CD. There are several configuration files which should be always
modified, so I want to give the customer a possibility that he can
change them by himself without creation of a new installer , I think the
"run executable after installation" is the way to do it, but I don't know
how to implement such an executable command to copy some files from CD to
the destination directory which the program should be installed, could
anyone give me some tips? Thans a lot!
Le

When you setup your build file, add the files using SourceFile Tab>>add support files, then click on custom destination, here you can add support files during installation. Hope this is what you are looking for.
Paul
Paul Falkenstein
Coleman Technologies Inc.
CLA, CPI, AIA-Vision
Labview 4.0- 2013, RT, Vision, FPGA

Similar Messages

  • How can I perform a silent install of an application AND use "run executable after installation"

    I am trying to do a silent install of a program I built using LabVIEW 8.5.  I also need to call an exe after the installation, so I am using the "run executable after installation" option on the Advanced tab of the installer.  I then pass the following command lines to the setup.exe:
    /qb /acceptlicenses yes /r
    This installs the LabVIEW program successfully, but does not then run the additional exe afterward.  If I run the setup.exe normally (with no command line parameters), the additional exe gets run.
    Thanks,
    Jason

    jmburns wrote:
    I am trying to do a silent install of a program I built using LabVIEW 8.5.  I also need to call an exe after the installation, so I am using the "run executable after installation" option on the Advanced tab of the installer.  I then pass the following command lines to the setup.exe:
    /qb /acceptlicenses yes /r
    This installs the LabVIEW program successfully, but does not then run the additional exe afterward.  If I run the setup.exe normally (with no command line parameters), the additional exe gets run.
    Thanks,
    Jason
    This problem is fixed in a future release of LabVIEW. Here's the CAR ID 67549 for tracking purposes.
    Message Edited by Bob P on 07-10-2008 09:10 AM

  • Run executable before installation

    Hello all,
    I need small information. Please help me.
    In LabVIEW Installer Window at Advanced settings, we have
    Run executable at end of installation
    Run executable before uninstallation
    Is there is any option for “Run executable before installation”?
    I want to run one LabVIEW exe before installing new software (if Runtime engine is exits in deployment PC).
    Please let me know if anyone have idea.

    The NI installers don't give you a lot of control of how things are done.  Let say you want to allow you users to have a minimum, complete, or custom install of tools.  The NI installers don't have that option.
    In the past when I need more control of how installers run, and their options, I've used a couple of free tools that I've mentioned in the past.  Inno Setup, and the helper program ISTool.
    Using this method I can make an installer, that runs a different installer first, then runs the NI installer.

  • How to run execute immdiate with variables

    Hi friends,
    How to run execute immdiate with variables in v_stmt below?
    I dont know how to declare the value of i here.
    Set serveroutput on;
    DECLARE
       i        VARCHAR (20);
       v_stmt   VARCHAR2 (100);
       CURSOR c
       IS
          SELECT sqlid FROM temp1;
    BEGIN
       OPEN c;
       LOOP
          FETCH c INTO i;
          EXIT WHEN c%NOTFOUND;
          DBMS_OUTPUT.put_line (i);
          v_stmt := 'select * from table(dbms_xplan.display_cursor('&i',null))'
          execute immediate v_stmt;
       END LOOP;
       CLOSE c;
    END;
    /Regds,
    Kunwar.

    You first need to use a bind variable (named ':v' in SQL statement in my example):
    set serveroutput on;
    DECLARE
       i        VARCHAR (20);
       v_stmt   VARCHAR2 (100);
       CURSOR c
       IS
           -- modified for a quick test
          SELECT sql_id FROM v$sql where child_number > 2;
    BEGIN
       OPEN c;
       LOOP
          FETCH c INTO i;
          EXIT WHEN c%NOTFOUND;
          DBMS_OUTPUT.put_line (i);
          v_stmt := 'select * from table(dbms_xplan.display_cursor(:v,null))';
          execute immediate v_stmt using i;
       END LOOP;
       CLOSE c;
    END;
    /However because your SELECT statement returns several rows you need to adapt your code to process all rows returned (as already suggested in first reply to your message).
    Instead of using PL/SQL, I recommend to generate a SQL file using only SQL and then to run the generated SQL file.
    For example:
    spool edx.sql
    set serveroutput on
    declare
    v_stmt varchar2(100);
    v_q char(1):='''';
    begin
    dbms_output.put_line('spool edx.log');
    for s in (select sql_id from v$sql where child_number >2)
    loop
      dbms_output.put_line('select * from table(dbms_xplan.display_cursor(' || v_q || s.sql_id || v_q || ',null));');
    end loop;
    dbms_output.put_line('exit');
    end;
    spool ofThis generates a SQL file similar to :
    spool edx.log
    select * from table(dbms_xplan.display_cursor('5rygsj4dbw6jt',null));
    select * from table(dbms_xplan.display_cursor('5rygsj4dbw6jt',null));
    select * from table(dbms_xplan.display_cursor('5rygsj4dbw6jt',null));
    select * from table(dbms_xplan.display_cursor('fsbqktj5vw6n9',null));
    select * from table(dbms_xplan.display_cursor('6q42j0018w7t8',null));
    select * from table(dbms_xplan.display_cursor('a5mmhrrnpwjsc',null));
    select * from table(dbms_xplan.display_cursor('3c1kubcdjnppq',null));
    select * from table(dbms_xplan.display_cursor('3c1kubcdjnppq',null));
    select * from table(dbms_xplan.display_cursor('9gkq7rruycsjp',null));
    select * from table(dbms_xplan.display_cursor('f0wj261bm8snd',null));
    select * from table(dbms_xplan.display_cursor('ab3swhv5g138y',null));
    select * from table(dbms_xplan.display_cursor('6vgvyh4xw9c5g',null));
    select * from table(dbms_xplan.display_cursor('ak5crjygnpk60',null));
    select * from table(dbms_xplan.display_cursor('9p6bq1v54k13j',null));
    select * from table(dbms_xplan.display_cursor('19x1189chq3xd',null));
    select * from table(dbms_xplan.display_cursor('7sx5p1ug5ag12',null));
    select * from table(dbms_xplan.display_cursor('730vdzhng6m6g',null));
    select * from table(dbms_xplan.display_cursor('730vdzhng6m6g',null));
    select * from table(dbms_xplan.display_cursor('0v3dvmc22qnam',null));
    select * from table(dbms_xplan.display_cursor('0v3dvmc22qnam',null));
    select * from table(dbms_xplan.display_cursor('a1zv6wju3ftgv',null));
    select * from table(dbms_xplan.display_cursor('7ng34ruy5awxq',null));
    select * from table(dbms_xplan.display_cursor('7ng34ruy5awxq',null));
    select * from table(dbms_xplan.display_cursor('b2gnxm5z6r51n',null));
    select * from table(dbms_xplan.display_cursor('b2gnxm5z6r51n',null));
    select * from table(dbms_xplan.display_cursor('g4gp07gt2z920',null));
    select * from table(dbms_xplan.display_cursor('1gu8t96d0bdmu',null));
    select * from table(dbms_xplan.display_cursor('g00cj285jmgsw',null));
    select * from table(dbms_xplan.display_cursor('g00cj285jmgsw',null));
    select * from table(dbms_xplan.display_cursor('g00cj285jmgsw',null));
    select * from table(dbms_xplan.display_cursor('bn4b3vjw2mj3u',null));
    select * from table(dbms_xplan.display_cursor('38243c4tqrkxm',null));
    select * from table(dbms_xplan.display_cursor('2abjfnvy5rkyg',null));
    select * from table(dbms_xplan.display_cursor('350f5yrnnmshs',null));
    select * from table(dbms_xplan.display_cursor('350f5yrnnmshs',null));
    select * from table(dbms_xplan.display_cursor('3s1yukp05bzg6',null));
    select * from table(dbms_xplan.display_cursor('3s1yukp05bzg6',null));
    select * from table(dbms_xplan.display_cursor('1tgukkrqj3zhw',null));
    exit
    PL/SQL procedure successfully completed.Edited by: P. Forstmann on 20 mars 2013 19:06
    Edited by: P. Forstmann on 20 mars 2013 19:33

  • How to config VIPs after installation

    Dear All,
    Could you show me how to config virtual ip and virtual host after installation.
    Thanks for your help

    At the end of the Oracle Clusterware software install a number of Configuration
    assistants are run automatically. In that Virtual IP configuration assistant configures the VIPS for you.
    To run it manually, To re run vipca run the vipca.bat (root.sh in linux) file from the Oracle clusterware bin directory.Follow the prompts for VIPCA to select the appropriate interface for the public network, and assign the VIPs for each node when prompted. Manually running VIPCA with the same IPs should complete successfully.
    Hope this helps.

  • How to run Adobe AIR installer package created in windows into Linux

    Hi,
    we have created an Adobe AIR Installer package in Windows XP, Can any one help me how to run the Installer package in Linux that is created in Windows.
    Please, any help is Appreciable.

    Please any help for the above query is appreciable.

  • How call Forms servlet after installation

    I have ORacle EE 8.1.7.1 and Forms 6i Patch 6 installed on the same computer. So after installation and some custom setting. I try with this link and I see the test page: http://server/servlet/oracle.forms.servlet.ListenerServlet?config=servlet
    All work fine. But my question is what is the url I need to enter to run my forms (in servlet).
    Tanks you.
    Francois

    I think what you are looking for is: http://your_server/servlet/f60servlet?config=blah
    Have you read the whitepaper on the Forms Listener Servlet? It may help with other questions you come across. http://technet.oracle.com/doc.pdf/forms/p5_listenerservlet.pdf
    Regards,
    Candace Stover
    Forms Product Management

  • Computer runs slow after installation

    Hi,
    A little over a month ago I installed Tiger (using CDs) onto my iBook 10.1.5 OSX, 256MB, Power PC G3. A couple of times the computer ran slow at the start up but I would just re-start the computer and then it ran fine. This morning I turned it on I can't get it to stop running slow. Start up takes forever and any application I open takes a long time to start and runs slow after. What can I do to fix this?
    Thank you,
    Melissa

    You have adequate free hard drive space but keep an eye on it.
    But I do use quite a bit of memory on my itunes, about 5GB.
    How did you determine this?
    If you read the link I provided carefully, OS X makes automatic/dynamic use of Paging or Virtual Memory regardless the amount of RAM installed which uses available free hard drive space when utilized. This is released when logging out of your account and after a shutdown and/or a restart.
    The less RAM you have installed, the more Paging or Virtual Memory will be used depending on the number of running applications at a time and what each application is performing. This can make the system feel and operate more slowly.
    Check Resolving Disk, Permission, and Cache Corruption for system troubleshooting procedures and when doing so, follow all steps/instructions in the order provided.

  • IMac early 2008 running slow after installation of Yosemite

    I have been having problems with my iMac (early 2008).  I ran a diagnosis check (Etresoft).  I don't understand them so any help is welcome....
    Problem description:
    iMac early 20089 running slow since installation of Yosemite
    EtreCheck version: 2.1.1 (104)
    Report generated December 7, 2014 at 11:13:12 AM CST
    Hardware Information: ℹ️
      iMac (20-inch, Early 2008) (Verified)
      iMac - model: iMac8,1
      1 2.4 GHz Intel Core 2 Duo CPU: 2-core
      3 GB RAM Upgradeable
      BANK 0/DIMM0
      1 GB DDR2 SDRAM 800 MHz ok
      BANK 1/DIMM1
      2 GB DDR2 SDRAM 800 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      ATI Radeon HD 2400 - VRAM: 128 MB
      iMac 1680 x 1050
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 2 days 3:48:58
    Disk Information: ℹ️
      Hitachi HDP725025GLA380 disk0 : (250.06 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 249.20 GB (162.83 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
      Apple Inc. Built-in iSight
      Apple, Inc. Keyboard Hub
      Apple, Inc Apple Keyboard
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Startup Items: ℹ️
      HP IO: Path: /Library/StartupItems/HP IO
      Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.CallHistorySyncHelper.plist
      [failed] com.apple.cmfsyncagent.plist [Details]
      [failed] com.apple.Maps.pushdaemon.plist
      [failed] com.apple.printtool.agent.plist
      [failed] com.apple.sbd.plist
      [failed] com.apple.scopedbookmarkagent.xpc.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
      [failed] com.apple.warmd_agent.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.AssetCacheLocatorService.plist [Details]
      [failed] com.apple.awdd.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.hdiejectd.plist [Details]
      [failed] com.apple.ifdreader.plist
      [failed] com.apple.installd.plist [Details]
      [failed] com.apple.nehelper.plist
      [failed] com.apple.periodic-daily.plist [Details]
      [failed] com.apple.softwareupdate_download_service.plist [Details]
      [failed] com.apple.softwareupdated.plist [Details]
      [failed] com.apple.wdhelper.plist
    Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist [Support]
      [loaded] com.hp.help.tocgenerator.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.google.keystone.daemon.plist [Support]
    User Login Items: ℹ️
      iTunesHelper UNKNOWNHidden (missing value)
      Skype UNKNOWN (missing value)
      Software Update Application (/System/Library/CoreServices/Software Update.app)
      EvernoteHelper UNKNOWN (missing value)
      Dropbox UNKNOWN (missing value)
      Dropbox Application (/Applications/Dropbox.app)
      Messages Application (/Applications/Messages.app)
      HP Scheduler Application (/Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app)
      HPEventHandler UNKNOWN (missing value)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
      Google Earth Web Plug-in: Version: 6.0 [Support]
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Support]
      OfficeLiveBrowserPlugin: Version: 12.3.6 [Support]
      RealPlayer Plugin: Version: Unknown [Support]
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Support]
      FlashPlayer-10.6: Version: 15.0.0.239 - SDK 10.6 [Support]
      Flash Player: Version: 15.0.0.239 - SDK 10.6 [Support]
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
      QuickTime Plugin: Version: 7.7.3
      Photo Center Plugin: Version: Photo Center Plugin 1.1.2.2 [Support]
      CouponPrinter-FireFox_v2: Version: Version 1.1.6 [Support]
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User internet Plug-ins: ℹ️
      Move_Media_Player: Version: npmnqmp 071706000001 [Support]
      Google Earth Web Plug-in: Version: 7.1 [Support]
    Safari Extensions: ℹ️
      AdBlock
      Translate
      zoomintosafari
      Shortly
      Pin It Button
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      Perian  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 249.20 GB Disk used: 86.37 GB
      Destinations:
      Time Machine Backups [Local]
      Total size: 499.76 GB
      Total number of backups: 191
      Oldest backup: 2008-11-28 18:33:25 +0000
      Last backup: 2014-11-21 14:59:34 +0000
      Size of backup disk: Adequate
      Backup size 499.76 GB > (Disk used 86.37 GB X 3)
    Top Processes by CPU: ℹ️
          2% WindowServer
          0% AppleSpell
          0% ps
          0% syslogd
          0% fontd
    Top Processes by Memory: ℹ️
      815 MB com.apple.SpeechRecognitionCore.speechrecognitiond
      200 MB Safari
      120 MB com.apple.WebKit.WebContent
      45 MB mds_stores
      32 MB Finder
    Virtual Memory Information: ℹ️
      32 MB Free RAM
      1.22 GB Active RAM
      1.21 GB Inactive RAM
      422 MB Wired RAM
      14.67 GB Page-ins
      114 MB Page-outs
    Diagnostics Information: ℹ️
      Dec 5, 2014, 07:24:48 AM Self test - passed

    Please describe the problem in as much relevant detail as possible. The "etrecheck" fad hasn't made that step any less necessary. The usual results of posting etrecheck output on this site without a full description of the problem are very poor. The better your description, the better the chance of a solution.
    For example, if the computer is slow, which specific actions are slow? Is it slow all the time, or only sometimes? What other changes did you make, if any, just before it became slow? Have you seen any alerts or error messages? Have you done anything to try to fix it? Most importantly, do you have a current backup of all data? If the answer to the last question is "no," back up now. Ask if you need guidance. Do nothing else until you have a backup.

  • How to remove modules after installation

    Hi;
    Picture this please, u are making r11 installation and while u are making installation on Lisence Produts step you click Finance,Logistic etc.. modules and then you complite your installation wihtout any problem.
    After installation functional person comes and start to make their setup on EBS for all modules which is installed... After sometimes they notice The client doesnt need Logistic module, client side give wrong information about modules and person who made installation of EBS click Logistic wiht client wrong information.
    The question is:
    1. We can remove modules after installation?
    2. Is it better way to make new installation (Imagine fonctional is already work more than 2 months,if we make new instalaltion its mean we lose 2 months)
    3. If we can remove it can affect other module setups?
    Thanks for advice
    Regards
    Helios

    Hi,
    1. We can remove modules after installation?No.
    2. Is it better way to make new installation (Imagine fonctional is already work more than 2 months,if we make new instalaltion its mean we lose 2 months)It would be making a fresh installation or restoring from a backup to a point before this module was licensed.
    3. If we can remove it can affect other module setups?There is no direct and supported way to achieve this. However, you may log a SR and see if Oracle can help about this.
    Regards,
    Hussein

  • How to run Executables or .bat files from Java?

    Hi!
    I need to open a Web Browser from Java App.
    Please, help me to do this without calling JNI
    -or-
    provide me with sample which works with
    Runtime.execute() method.
    I have done full permission:
    grant
         permission java.security.AllPermission "","";
    };Thank You in advance!

    To run any command from java code, the method is
    Runtime.getRuntime().exec( myCommandString )
    Where, myCommandString is something like "/full/pathname/command".
    If the pathname contains spaces, e.g. "c:\program files\windows\notepad", then enclose it in quotes within the quoted string. Or pre-tokenize them into elements of an array and call exec(String[] cmd) instead of exec(String cmd).
    From JDK1.3 there are two new overloaded Runtime.exec() methods. These allow you to specify starting directory for the child process.
    Note, there is a gotcha associated with reading output from commands. When the runtime exec's the process, it passes to it 3 streams, for stdin, stdout, and stderr; the out and err are buffered but the buffer size isn't very big. When your process runs, it reads (if needed) from in, and writes to out and err.
    If it doesn't write more than the buffer-size, it can run to completion.
    But if it tries to write more data to one or the other stream than the buffer can hold, the write blocks, and your process hangs, waiting for you to empty the buffer so it can write some more.
    So after the exec call, get the streams, and read from them in a loop until they both hit end-of-stream (don't block on either one, just read whatever is available from each, each loop iteration).
    Then when the streams have ended, call the process.waitFor() method to let it finish dying.
    Now, here is a code snippet how you achieve this.
    String strCommand = "cmd.exe /c " + strCommand;
    boolean bWait = true;
    //execute the command
    try
         Runtime r = Runtime.getRuntime();
         Process pr = r.exec(strCommand);
         Process pr = r.exec(callAndArgs);
         BufferedInputStream bis =new BufferedInputStream(pr.getInputStream ());
         int c=0;
         /** Outlet for IO for the process **/
         while (c!=-1)
              c=bis.read();
         /**Now wait for the process to get finished **/
         if(bWait == true)
              pr.waitFor();
              pr.destroy();
    catch(Exception e)
         System.out.println("Could not execute process " + strCommand);
         return(false);

  • How to run code after each other?

    Hi there, a little question.
    I call a function that returns the path of a new saved image as a string.
    In that function I  use a loader to load the image. After the image is loaded I set the url of the saved image and return it.
    Next = id of the new saved image
    Imageurl = the url of the image to load.
    thumborfull = an indication to see if the thumb needs to be saved or the full image, so the thumb can be saved in a different folder than the full image.
    My problem: when I call this function.. the return goes first, and then the loader complete. In the loader complete I set the new path of the image which i want to return.
    So, my code runs synchronal, and not synchronic.. How do you get it to run synchronic?
    Please some help.
    code:
         public var myimageurl:String;
         public function saveImageFromInternet(next:Number, imageurl:String, thumborfull:String):String
              var imgClass:Class;
              //the second way
              var loader:Loader;
              //source code of the second way
              loader = new Loader();
              //notice: NOT _loader.addEventListener,is  _loader.contentLoaderInfo.addEventListener
              loader.contentLoaderInfo.addEventListener(Event.COMPLETE,function(event:Event):void
                    var loader:Loader = Loader(event.target.loader);
                        // width and heigt of selected image
                   var originalimgwidth:Number=event.target.width;
                   var originalimgheight:Number=event.target.height;
                   //put original image into bitmapdata
                   var bitmapje:BitmapData;
                   bitmapje=new BitmapData(originalimgwidth, originalimgheight, false, 0xFFFFFFFF );
                   bitmapje.draw(loader.content,null,null,null,null,true);          
                   var newimagefile:File=new File();
                   if(thumborfull=="thumb")
                        newimagefile=docsDir.resolvePath("Tmtp/I"+next+".mtp"); //image path
                        myimageurl=newimagefile.nativePath;
                   else
                        newimagefile=docsDir.resolvePath("Fmtp/I"+next+".mtp"); //image path
                        myimageurl=newimagefile.nativePath;               
                   var stream:FileStream = new FileStream;          // create new filestream
                   stream.open(newimagefile, FileMode.WRITE);     // open filestream
                   var data:ByteArray = encodeToJpg(bitmapje);     // convert bitmapdata to a jpg bytearry
                   stream.writeBytes(data, 0, data.length);     // writing the image
                   stream.close();
              loader.load(new URLRequest(encodeURI(imageurl)));
              return myimageurl;

    If you are concerned that you are losing the url as it is not available from the complete event, you could use a custom event, which allows you to pass your own data into the custom event. Then in your custom complete event object you will still have the url.
    http://livedocs.adobe.com/flex/3/html/help.html?content=createevents_1.html

  • How to run class after Tomcat starts?

    Hello!,
    I want to run a class after Tomcat start.
    How can I achieve?
    Reg,
    Chetan

    Well the official way to do it it to create a class which implements org.apache.catalina.LifecycleListener. Then you can name the class in a <Listener> element in server.xml. It can appear at various levels e.g. inside the Engine block, and it will receive notification when that level starts and stops.

  • How to run executable jar on client machine remotely?

    Hi,
    I have developed PHP web application that uses Java in the background. The problem that I want to solve is to start Java application (executable jar) on client machine.
    Is there any idea how to solve this problem?
    Zoran

    found it:
    in the Group Policy Management Editor go to Computer Configuration > Policies > Administrative Templates > System > Logon > Run these programs at user logon, and add the path (on the local computer) to the script to be run when any user logs
    in.  Powershell scripts need to be called from a .vbs script like this in order to prevent window popup:
    Dim objShell
    Dim cmd
    Set objShell = CreateObject("Wscript.Shell")
    cmd = "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -nologo -noProfile -NonInteractive -ExecutionPolicy bypass -File c:\mypowershellscript.ps1"
    objShell.Run cmd,0
    As for distributing the scripts, that's a work in progress... GPP?

  • SAP ERP6.0 on RHEL6 x86_64bit. How to run a remote installation?

    Hello!
    I am installing SAP ERP6.0 on RHEL6.
    I did not get to run SAPinst.
    In accordance with the guide "Installation Guide SAP ERP 6.0 SR3 ABAP on Linux SAP MaxDB" I was doing on the remote server:
    [root@sapserver sapcd]# ./sapinst -nogui
    [==============================] \ extracting...  done!
    Starting GuiServer using:
    /usr/bin/java -Xmx256M -Djava.security.egd=file:/dev/urandom -cp /tmp/sapinst_exe.6196.1316592632/JAR/instgui.jar:/tmp/sapinst_exe.6196.1316592632/JAR/inqmyxml.jar SDTServer config=jar:sdtserver.xml guiport=21212 sapinsthost=localhost sapinstport=21200
    init: retrieving account information for group sapinst...
    init: retrieving account information done.
    load resource pool /sapcd/resourcepool.xml
    guiengine: No GUI server connected; waiting for a connection on host sapserver, port 21200 to continue with the installation
    Where can I get GUI server?
    How do I run SAPinst on the local computer running Windows 7 to continue the installation?
    Where can I get startinstgui.bat for Windows?

    Trace:
    [root@sapserver ~]# strace -p 4827
    Process 4827 attached - interrupt to quit
    wait4(4828, 0x7fff28df67bc, 0, NULL)    = ? ERESTARTSYS (To be restarted)
    --- SIGINT (Interrupt) @ 0 (0) ---
    wait4(4828, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 4828
    --- SIGCHLD (Child exited) @ 0 (0) ---
    stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2057, ...}) = 0
    write(4, "2011-09-22 16:24:31.846 iauxsyse"..., 117) = 117
    stat("/tmp/sapinst_exe.4827.1316697709/core", 0x7fff28df67c0) = -1 ENOENT (No such file or directory)
    stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2057, ...}) = 0
    write(4, "2011-09-22 16:24:31.847 iaextrac"..., 58) = 58
    chdir("/sapcd")                         = 0
    stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2057, ...}) = 0
    write(4, "2011-09-22 16:24:31.847 iauxsyse"..., 59) = 59
    close(4)                                = 0
    munmap(0x7f94bd335000, 4096)            = 0
    open("/tmp/sapinst_exe.4827.1316697709", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
    fcntl(3, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
    getdents(3, /* 36 entries */, 32768)    = 1216
    lstat("/tmp/sapinst_exe.4827.1316697709/iaguieng701.so", {st_mode=S_IFREG|0755, st_size=1429284, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iaguieng701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamodlib.so", {st_mode=S_IFREG|0755, st_size=149526, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamodlib.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iaccdlib.so", {st_mode=S_IFREG|0755, st_size=204204, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iaccdlib.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/xtc20d.so", {st_mode=S_IFREG|0755, st_size=2997982, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/xtc20d.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/XTCRUN", {st_mode=S_IFREG|0755, st_size=189164, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/XTCRUN") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iajsmod.so", {st_mode=S_IFREG|0755, st_size=566475, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iajsmod.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/xml63d.so", {st_mode=S_IFREG|0755, st_size=1654647, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/xml63d.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamodrfc.so", {st_mode=S_IFREG|0755, st_size=221672, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamodrfc.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamoddb6.so", {st_mode=S_IFREG|0755, st_size=1898944, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamoddb6.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iaejs701.so", {st_mode=S_IFREG|0755, st_size=1128426, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iaejs701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamodsdm.so", {st_mode=S_IFREG|0755, st_size=203076, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamodsdm.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iastring701.so", {st_mode=S_IFREG|0755, st_size=383664, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iastring701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/librfccm.so", {st_mode=S_IFREG|0755, st_size=4914424, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/librfccm.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/SAPCAR", {st_mode=S_IFREG|0755, st_size=3428179, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/SAPCAR") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamodora.so", {st_mode=S_IFREG|0755, st_size=3836213, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamodora.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamodos.so", {st_mode=S_IFREG|0755, st_size=2039347, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamodos.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/sapcpp46.so", {st_mode=S_IFREG|0755, st_size=1205277, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/sapcpp46.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamsglib701.so", {st_mode=S_IFREG|0755, st_size=399074, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamsglib701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamodada.so", {st_mode=S_IFREG|0755, st_size=1507674, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamodada.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamodapp.so", {st_mode=S_IFREG|0755, st_size=2344568, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamodapp.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/XTCC", {st_mode=S_IFREG|0755, st_size=100371, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/XTCC") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/startInstGui.sh", {st_mode=S_IFREG|0755, st_size=7946, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/startInstGui.sh") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/JAR", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
    open("/tmp/sapinst_exe.4827.1316697709/JAR", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
    getdents(4, /* 8 entries */, 32768)     = 248
    lstat("/tmp/sapinst_exe.4827.1316697709/JAR/db2radm.jar", {st_mode=S_IFREG|0744, st_size=139628, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/JAR/db2radm.jar") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/JAR/inqmyxml.jar", {st_mode=S_IFREG|0744, st_size=1421237, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/JAR/inqmyxml.jar") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/JAR/rescheck.jar", {st_mode=S_IFREG|0755, st_size=46032, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/JAR/rescheck.jar") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/JAR/instgui.jar", {st_mode=S_IFREG|0744, st_size=3499393, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/JAR/instgui.jar") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/JAR/sapxmltoolkit.jar", {st_mode=S_IFREG|0744, st_size=2623785, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/JAR/sapxmltoolkit.jar") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/JAR/ins-j2ee.jar", {st_mode=S_IFREG|0744, st_size=14741, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/JAR/ins-j2ee.jar") = 0
    getdents(4, /* 0 entries */, 32768)     = 0
    close(4)                                = 0
    rmdir("/tmp/sapinst_exe.4827.1316697709/JAR") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/sylib701.so", {st_mode=S_IFREG|0755, st_size=3598857, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/sylib701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iakdblib701.so", {st_mode=S_IFREG|0755, st_size=1782077, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iakdblib701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iacdlib701.so", {st_mode=S_IFREG|0755, st_size=371554, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iacdlib701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/sapinst", {st_mode=S_IFREG|0755, st_size=2402, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/sapinst") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iarfclib701.so", {st_mode=S_IFREG|0755, st_size=3489524, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iarfclib701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/sapinstexe", {st_mode=S_IFREG|0755, st_size=411195, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/sapinstexe") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/dev_selfex.out", {st_mode=S_IFREG|0644, st_size=4094, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/dev_selfex.out") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iapasswdman701.so", {st_mode=S_IFREG|0755, st_size=205161, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iapasswdman701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iamodell701.so", {st_mode=S_IFREG|0755, st_size=4295910, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iamodell701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iaregist701.so", {st_mode=S_IFREG|0755, st_size=151596, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iaregist701.so") = 0
    lstat("/tmp/sapinst_exe.4827.1316697709/iakdbpar701.so", {st_mode=S_IFREG|0755, st_size=1475506, ...}) = 0
    unlink("/tmp/sapinst_exe.4827.1316697709/iakdbpar701.so") = 0
    getdents(3, /* 0 entries */, 32768)     = 0
    close(3)                                = 0
    rmdir("/tmp/sapinst_exe.4827.1316697709") = 0
    exit_group(0)                           = ?
    Process 4827 detached
    [root@sapserver ~]#

Maybe you are looking for

  • Oracle Application Server 10g Staging - export error - Urgent

    Dear All, I am trying to stage a AS 10g test environment from a production environment in a solaris environment, i am following the following document http://download-uk.oracle.com/docs/cd/B14099_19/core.1012/b13995/prodtest.htm I am at the step 4 b.

  • Tax rates to be changes in scheduling agreement

    I have lots of scheduling agreement which have been released as well. Now as per the new budget, we created new condition records and maintained new tax rates (excise duty from 12 to 12.50%). we have a z program to perform GRN and it has logic writte

  • OpenDocument.aspx - pass multi value parameter when report type is actx

    We are running Crystal Reports XI R2 against a business objects infoview server. We have been successfully using the OpenDocuments method for opening crystal reports but have run into a snag.  When using a multi-value parameter, we can only get it to

  • Flash Player Crash in 10.6.5

    Since upgrading to 10.6.5 Flash player repeatedly crashes in all browsers, Safari, Firefox, and Chrome. I've installed the most recent version of Flash player from Adobe, created a new user to test if problem persisted, which it did, removed all othe

  • User Manual (a real book)

    Hello... anyone.. I have an 8120 which I paid handsomely for.  It did not come with a solid user manual, and I CANNOT print, let alone print a 300 page pdf file.  How can I obtain the real book, bound book, for this device?  Is there a number to call