WebCamCenter.exe commandline options?

Does the WebCamCenter.exe application support any commandline options? For example, to run the application from a batch file with motion detection started automatically. Alternatively, does it support any windows messages once it is running?

This happens to me, too once in a while. There were times when more than one show up in the Task Manager but still nothing happens. I don't know what's wrong but I will normally just kill them in the Task Manager and re-start it.

Similar Messages

  • Publishing to Windows Executable (exe) play options

    Captivate 4.0.1 build 1658. On any Windows platform.
    When I publish to "Windows Executable" and then play the resultant EXE file, the window is a fixed size with no scroll bars. This presents a problem when customers attempt to run the EXE on very small (e.g. Netbooks, etc) computer screens, as they cannot see the player controls at the bottom of the window.
    Is there any way to
    force scroll bars on the play back
    allow for shortcut keys (Ctrl+P for Play; Ctrl+Shft+P for Pause, etc) to allow the user to control playback
    What other options might there be that I am not thinking of?
    I use EXE because I need this video tutorial to play on Windows boxes after product installation.
    Thanks,
    Jeff

    I've never published CP projects that way so not sure...
    But I've published Flash projects that needed to be .exe's and have used SWFKit with great success.
    Very versatile tool, inexpensive, and lots of options. I'd be surprised if it couldn't do what you need.
    If so, then publish your CP file to SWF then embed that SWF into an .exe with SWFKit...
    http://www.swfkit.com
    HTH
    Erik

  • Commandline option to capture JFR for remote server

    Hi,
    Is there any jrcmd option to start flightrecording for any remote server where xmanagement port is enabled? Through mission control we have option to create a JVM connection using xmanagement port and capture JFR . We need to have it through commandline .
    Thanks

    Hi Janice,
    It seems like the java that is on your path does not have OJVM installed. (Either you missed that JDK when you did InstallOJVM.bat, or InstallOJVM somehow wasn't truly successful.)
    To find out the java home directory, you can write a simple program that does:
    System.out.println("java home is " + System.getProperty("java.home"));
    and run it from the command line.
    However, it might be quicker for you to just specify the full path for java like this:
    C:\oracle\ora92\j2ee\home>C:\jdev\jdk\bin\java -ojvm -XXdebug,port4000,detached,quiet -jar oc4j.jar
    (Substitute "C:\jdev\jdk" with your jdev's jdk directory.)
    Hope this helps!
    -Liz

  • Ifrun60.exe commandline escape characters

    Scenario: Trying to call a form from the right-click context menu of any windows file via windows explorer and pass the form the filepath of that file. The form has a user-defined form parameter (:parameter.filepath) that expects that filepath.
    Problem: eveything is working and am in testing phase and have found that a single quote in the filename/path being passed to the form cause the ifrun60.exe to display the error "frm-90928: position paramter after key on commandline".
    Reason for problem: it is clear that this error occurs only when there is a single quote " ' " in the command line as below where the %1 is, for example, "john's leave.xls".
    c:\orant\bin\ifrun60.exe module=test.fmx userid=whatever@whereever usesdi=yes FILEPATH="%1"
    I understand that this is a result of the fact that the executable treats single quotes as string starters/termintators. I therefore need to dynamically specify to the commandline to ESCAPE single quotes....anyone have any idea how to do this - ideally this would not involve calling a BAT file (for other reasons).
    any input would be appreciated. many thanks in advance.

    afraid not.
    tried and it fails to bring up form completely. It has to do with ifrun60 interpreting the single quote within the string as a /startterminator, i think therefore that i need to add another single quote next to each individual single quote (this works when done manually)...but it has to be dynamic and in the cmdline itself.....tricky!

  • "sfttray.exe" commandline to run in synchronous

    Hi,
    We are working on a batch script, which have multiple Sfttray /launch commandlines and each one needs to be executed in an order from top to bottom.  The format is as below
    sfttray.exe" /launch "Application-name" "Parameter1"
    sfttray.exe" /launch "Application-name" "Parameter2"
    sfttray.exe" /launch "Application-name" "Parameter3"
    The problem is, If already a Virtual application is running(sftray.exe in running in process), all of the sffttray commandline from above starts all together(asynchronous) and don't run in
    sequence before moving to the next command.
    Some of article I went through mention to use "Sftray.exe /launchresult" commandline, which (I think?) gives a mechanism to wait. But I don't find any examples or more details to confirm if it meets my requirement to run commands
    in synchronous fashion.
    Any help or advise in this regard will be greatly appreciated !!!
    ~Rajesh

    As an FYI the launchresult argument will allow you to do what you want.  We had an in house developer code something for us to make use of it for exactly the same reason you are looking at.  I'm not a .Net coder, but he created an instance of a
    .NET EventWaitHandle with a unique event name as passed into the launchresult argument.
    Interestingly enough, SCCM uses Vapplauncher which makes use of this.  If you have an SCCM environment running App-V you can see some examples in the vapplauncher log of the sfttray.exe command being called.

  • How to include commandline options in Batch File

    Hi i have following code for batch file now i want to include one more optionas -savemndl
    command is
    loader.bat -savemndl (savedmndl file) (inputmndl file) (output Logfile)
    @echo off
    set JAVAOPTS= -Xms20m -Xmx500m %JAVAOPT%
    set FILE=
    set OPTIONS=
    :loop
      if "%1" == ""             goto break
      if "%1" == "-v"           goto setOptions
      if "%1" == "-print_mndl"  goto setOptions
      if "%1" == "-verbose"     goto setOptions
      if "%1" == "-seed"        goto setJavaOpt
      if "%1" == "-help"        goto help
      goto break
    :setOptions
      set OPTIONS=%OPTIONS% %1
      shift
      goto loop
    :setJavaOpt
      shift
      set JAVAOPTS=%JAVAOPTS% -Drandom.seed=%1
      shift
      goto loop
    :break
    if not exist "%1" goto notFound
    native2ascii %1 > %1.tmp
    set FILE=%1.tmp
    shift
    java %JAVAOPTS% -classpath classes;lib\simcore.jar;lib\loader.jar jp.go.nict.msf.loader.MNDLParser %OPTIONS%  %FILE% %1
    del %FILE%
    goto end
    :help
    echo usage: loader -help
    echo usage: loader [-v] [-seed value] [-print_mndl] filename.mndl [traceLogFile]
    java -classpath classes;lib\simcore.jar;lib\loader.jar jp.go.nict.msf.loader.MNDLParser -help
    goto end
    :notFound
    echo loader: Error "%1" is not found.
    echo usage: loader -help
    echo usage: loader [-v] [-seed value] [-print_mndl] filename.mndl [traceLogFile]
    :end

    And what is the actual quesion then? Because the batch file given above is itself a good example how to use parameters.
    Mike

  • Is there a commandline option to force update of firefox that can be added to as a schedule task, similar to chrome

    I observed that firefox will not auto update unless it's open or in use, if I want to force an auto update even firefox without being in use, is there an option. Similar to google update which also has a scheduled task to update the product periodically.

    No, there isn't such a Command line switch to check for updates in Firefox
    *https://developer.mozilla.org/Command_Line_Options
    You will have to check for updates yourself by starting Firefox and check tor updates via Help > About.

  • EMET_conf.exe Commandline-Tool Bug when Executable is located on CD-ROM

    The command line tool crashes if you configure a drive letter which is a CD/DVD-Drive (D: is a DVD-Drive):
    Problem appeared with EMET version 4.1 installed on Windows 7 Professional SP1 64 bit.

    Additional Information: Problem appeared with EMET version 4.1 installed on Windows 7 Professional SP1 64 bit.

  • Enhancement request : add Generate DB Doc to sdcli.exe commandline API

    It's would be nice to be able to call Generate DB Doc from the command line. This feature is not available in the 4.0.0.13 version. Or is there another way to do this?

    It's would be nice to be able to call Generate DB Doc from the command line. This feature is not available in the 4.0.0.13 version. Or is there another way to do this?

  • KJS supports a "-init file " commandline option.

    Platform: Windows NT, IAS SP4.What format does the init file have and what can be done with? I'm trying to pass a variable definition to KJS in order to get IAS to work with Apache Log4j, which is a logging tool.
    Raymond Brandon

    You can specify KJS command line parameters in the iAS registry under 6.0/Java. You can find more details at 6.0/Java in the Application Server Registry Guide.

  • Starting exe as another user

    Hi,
    Perhaps someone else dealt with this. I tried a lot of things, but haven't
    succeeded jet.
    I need to start a (LabVIEW) application, running as another user. From the
    command line, runas works perfectly. But from LabVIEW, runas doesn't work.
    This is documented, runas checks if it's called from the command line, and
    doesn't start if it's not called from the command line. For start, there is
    no commandline option for the password.
    I did try to open pipes to runas, so I can pipe the password to runas, but
    this doesn't work either. Runas seems to check from where it's called...
    There is a tool called Sanur.exe, that can be used to pipe a password to
    runas, so you can enter the password on the command line (like runas
    /user:user "program.exe" | sanur password). This also doesn't work with
    LabVIEW, since runas is still checking from where it is started...
    So I tried some API's... CreateProcessWithTokenW with LogonUserA,
    CreateProcessWithUserA with LogonUserA and CreateProcessWithLogonW... It
    doesn't help that some of them are Unicode, but with MultiByteToWideChar,
    that is easy to solve.
    CreateProcessWithTokenW and CreateProcessWithUserA only work when the
    client applications has few rights, so I got some errors about that. I
    haven't tried to obtain those rights, since that is rather difficult.
    The last one (CreateProcessWithLogonW) works on my PC, but gives error 6
    (Invalid token) on the real environment. The API doesn't have a token input,
    so something must be wrong. Nothing on internet about this either...
    Anybody done this before?
    Regards,
    Wiebe.

    Wiebe wrote: But runas can't be runned by an application...
    Not directly but as part of a command file. I have an app named Drive Snapshot which requires admin rights and checks this during startup. As a restricted user I created a command file named DriveSnapshot.cmd with the following line:
    runas /user:admin /savcred F:\Programme\SnapShot\snapshot.exe
    Double clicking in Windows Explorer  requires the password entered. The next time time it will simply start without a prompt.
    Next I created the following VI:
    Running the VI will start the commandfile and therefore start DriveSnapShot.
    Next I logout and  login as admin and changed the password. Then I login as the previous restricted user. Running the VI DriveSnapShot will not start. You need to provide the password again.
    For the permanent change of passwords this is not a solution for Wiebe.
    Talking to system administrators they maybe make the following solution possible:
    Creating a special user in the domain with admin rights. This user wil never change his password and is only known to the application programmer and the admins.
    Message Edited by waldemar.hersacher on 02-03-2009 08:12 PM
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions
    Attachments:
    cmdFromLabview.png ‏2 KB

  • Using buttons as a menu to open .swfs or .exes

    This should be easy, but I can't figure it out...
    I have a single slide Captivate .swf populated with buttons to launch other Captivate .swf or .exe lessons. When a button is clicked, the menu .swf or .exe should close, and the new lesson .swf or .exe opens. All of the lesson .swfs or .exes will also have a button to return to the menu .swf.
    Everything needs to be full-screen .swfs or .exes, and NOT in a browser. No matter what I do, linked .exes or .swfs open in a browser!
    I have made some progress. I can get the menu .swf or .exe to launch a lesson, but the menu file remains open, and it opens the lesson in a browser.
    I basically want it to function as if the menu file was the first slide of a loooooong file, with the menu buttons skipping to the appropriate slide sections, and the ability to return to the menu slide at any point. I just want to do it with separate files.
    Bad explanation, I know... but any help appreciated!

    I doubt that you will be able to open / close your EXE files as you have envisioned.
    I think that the EXE output option from Captivate is designed to deliver single file content. Nothing fancy with menus, opening and closing other projects etc.
    Another user brought up a similar issue here: http://forums.adobe.com/thread/493200 and there is still no solution to it.
    Now I don't really know PowerPoint that well, but if it's so easy to do in PowerPoint why don't you just use that instead then? As far as I know you can import SWFs into Powerpoint so just create your "menu" and "chapters" in Powerpoint and import the Captivate files into those. Then you can save your PowerPoint files as EXE and that should sort out your problem.
    /Michael
    Visit my Captivate blog with tips & tricks, tutorials and Widgets.

  • PDF Open Options

    Hi,
    Is it possible to open a PDF file starting on a particular page?
    Are there more commandline options?
    Thanks
    Robert

    Thanks for the fast reply.
    Robert

  • WindowsUpdateAgent30-x64.exe fails to install during OSD

    I have a Task Sequence for Windows 7 x64 that is failing during the ConfigMgr client installation.  I am using a vanilla install.wim from the Windows 7 Enterprise SP1 x64 ISO.  It's the base Task Sequence and fails to install the ConfigMgr client
    as the Windows Update Agent is failing.  It does not fail when using a Hyper-V guest but fails on all newer Dell laptop and desktop models.  I cannot find the error codes given in the logs below to determine the cause.  Any help would be appreciated.
    smsts.log:
    <![LOG[Failed to install SMS Client (0x80004005)]LOG]!><time="11:56:52.844+360" date="01-16-2015" component="OSDSetupHook" context="" type="3" thread="3052" file="basesetuphook.cpp:1506">
    WindowsUpdate.log
    2015-01-22 17:10:51:321 1660 fc8 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0600)  ===========
    2015-01-22 17:10:51:321 1660 fc8 Misc   = Process: c:\cd1cca7cd081047701f51564a370\wusetup.exe
    2015-01-22 17:10:51:321 1660 fc8 Setup Windows Update Client standalone setup : resource dll path is c:\cd1cca7cd081047701f51564a370\en\wusetup.exe.mui
    2015-01-22 17:10:51:321 1660 fc8 Setup Evaluating CBS package "c:\cd1cca7cd081047701f51564a370\WUClient-SelfUpdate-Core-TopLevel.cab"
    2015-01-22 17:10:51:415 1660 fc8 Setup Package is not applicable
    2015-01-22 17:10:51:415 1660 fc8 Setup Evaluating CBS package "c:\cd1cca7cd081047701f51564a370\WUClient-SelfUpdate-ActiveX.cab"
    2015-01-22 17:10:51:431 1660 fc8 Setup Package is not applicable
    2015-01-22 17:10:51:431 1660 fc8 Setup Evaluating CBS package "c:\cd1cca7cd081047701f51564a370\WUClient-SelfUpdate-Aux-TopLevel.cab"
    2015-01-22 17:10:51:571 1660 fc8 Setup Package is not applicable
    2015-01-22 17:10:51:571 1660 fc8 Setup No packages to install
    2015-01-22 17:10:53:193 1660 fc8 Setup wusetup has finished. 
    Exit code is 17. Reboot is NOT needed
    ccmsetup.log
    <![LOG[C:\WINDOWS\ccmsetup\WindowsUpdateAgent30-x64.exe is Microsoft trusted.]LOG]!><time="10:28:02.131+360" date="01-19-2015" component="ccmsetup" context="" type="1" thread="3032" file="util.cpp:1520">
    <![LOG[Installing file 'C:\WINDOWS\ccmsetup\WindowsUpdateAgent30-x64.exe' with options '/quiet /norestart'.]LOG]!><time="10:28:02.131+360" date="01-19-2015" component="ccmsetup" context="" type="1"
    thread="3032" file="manifest.cpp:2189">
    <![LOG[File 'C:\WINDOWS\ccmsetup\WindowsUpdateAgent30-x64.exe' returned failure exit code 23. Fail the installation.]LOG]!><time="10:28:03.570+360" date="01-19-2015" component="ccmsetup" context=""
    type="3" thread="3032" file="manifest.cpp:2239">
    <![LOG[InstallFromManifest failed 0x80070017]LOG]!><time="10:28:03.570+360" date="01-19-2015" component="ccmsetup" context="" type="3" thread="3032" file="ccmsetup.cpp:7202">
    Thanks

    When running the WUA from the ccmsetup folder on failed machines I am getting the error:
    Windows Update Agent Installer encountered unrecoverable error.
    I am using the default WUA from ConfigMgr 2012 R2.
    I have also tried manually installing the newer version from
    http://blogs.technet.com/b/configmgrteam/archive/2014/07/14/how-to-install-the-windows-update-agent-on-client-computers.aspx which succeeds on machines that fail on the original.  But I don't know how I would integrate this update (see note)
    I also tried downloading the same version as what is from the default install of ConfigMgr 2012 R2 from
    https://support.microsoft.com/kb/949104/en-us?wa=wsignin1.0 and it fails with the same error when ran on failed machines.
    Note:  I am ONLY using the install.WIM from the Windows 7 Enterprise SP1 x64 ISO.  I am not doing a build and capture.  I have also not integrated any updates into the WIM with offline servicing.  I have configured a TS like this in the
    past with no issue on Dell machines.  The Hyper-V VM works perfect but it fails on all Dell desktops and laptops which are all newer models.  This is a very basic OSD TS.  All the latest drivers for the models have been imported and wmi conditions
    are applying the driver packages.  I have also tried letting it install any driver it wants and the error is the same.
    Thanks

  • Vcredist_x86.exe returned failure exit code 1602

    Client install is failing where I have copied source files to a restricted server and initiated install with /source.
    Installing file 'C:\Windows\ccmsetup\vcredist_x86.exe' with options '/q /norestart /c:"msiexec /i vc_red.msi /qn REBOOT=ReallySuppress" /msioptions "REBOOT=ReallySuppress"'. ccmsetup 12/8/2014 2:51:06 PM 4808 (0x12C8)
    File 'C:\Windows\ccmsetup\vcredist_x86.exe' returned failure exit code 1602. Fail the installation. ccmsetup 12/8/2014 3:01:18 PM 4808 (0x12C8)
    InstallFromManifest failed 0x80070642 ccmsetup 12/8/2014 3:01:18 PM 4808 (0x12C8)
    I have only Port 80 and 8530 opened on this restricted server talking to Primary Site Server (SCCM 2012 R2).
    Thanks

    Its VC++ 2010.
    Interesting after 8530 port opened... at 8pm CCMSetup installed fine from retry:
    Running on platform X64 ccmsetup 12/8/2014 8:01:22 PM 3828 (0x0EF4)
    Updated security on object C:\Windows\ccmsetup\cache\. ccmsetup 12/8/2014 8:01:22 PM 3828 (0x0EF4)
    Launch from folder C:\Windows\ccmsetup\ ccmsetup 12/8/2014 8:01:22 PM 3828 (0x0EF4)
    CcmSetup version: 5.0.7958.1000 ccmsetup 12/8/2014 8:01:22 PM 3828 (0x0EF4)
    Running on 'Microsoft Windows Server 2008 R2 Standard ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18 ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    Ccmsetup command line: C:\Windows\ccmsetup\ccmsetup.exe "/source:C:\Temp\SCCM2012Agent\Client" /RetryWinTask:1 ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required. ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    Command line: C:\Windows\ccmsetup\ccmsetup.exe "/source:C:\Temp\SCCM2012Agent\Client"
    /RetryWinTask:1 ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    SslState value: 224 ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    No version of the client is currently detected. ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    Folder 'Microsoft\Configuration Manager' not found. Task does not exist. ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    Updated security on object C:\Windows\ccmsetup\. ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    A Fallback Status Point has not been specified.  Message with STATEID='100' will not be sent. ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    ccmsetup service is stopped. ccmsetup 12/8/2014 8:01:23 PM 3828 (0x0EF4)
    Successfully deleted the ccmsetup service ccmsetup 12/8/2014 8:01:28 PM 3828 (0x0EF4)
    Successfully created the ccmsetup service ccmsetup 12/8/2014 8:01:28 PM 3828 (0x0EF4)
    Could you please confirm what other ports are required apart from 80 (communication to Primary site server) and 8530 (updates/defs)?
    Thanks

Maybe you are looking for

  • BAPI_PO_CHANGE with scheduling

    Hai frnds,   Im using BAPI_PO_CHANGE for changing the quantity of the existing item and need to create an new item also. For this im using scheduling table(poschedule),where one item has two scheduling line. Existing details Eg: POHEADER:    02100000

  • Problems with wrt5465

    I had my network working perfectly, and then I unplgged my router.  My power LED is not lighting up at all.  The 1,2,3,4 and internet LEDs stay solid.  Nothing happens at all to the LEDs when you plug an ethernet cable into any port.  The internet is

  • Failed authorization

    I keep getting failed authorization and when it does authorize it will not allow me to copy books over to my device.  What is up with this.  Had no problems with it at all for the longest time and now that is all i have.  HELP.. would like to read my

  • * Best option for 4:3 letterbox SD when shooting in 16:9 *

    Can some tell me what workflow or option is the easiest, fastest and looks the best for 4:3 letterbox? No.1 Shoot 16:9 HD Edit 16:9 HD Export 16:9 SD DVD Studio Pro 16:9 letterbox Display mode No. 2 Shoot 16:9 HD Down convert 16:9 SD Edit 16:9 SD Exp

  • What do i have to do to solve this? Battery Issue

    New MacBook. Bought sun 9th. Works perfectly. What`s wrong with it? It can`t work if it`s not plugged. It`s supossed to be a laptop, but it depends of a socket. I can`t turn it on if it`s not connected by the cable to the socket. On the screen appear