CF10 Multiserver - Create windows service

Hi,
I've installed ColdFusion 10 on my development machine (Windows 7 64bit) and yesterday created a new server instance in CF10 using the "Enterprise Manager" in the ColdFusion Administrator.  During the creation of this new instance, I didn't check the checkbox to create a Windows service.
Now, I've changed my mind and would like to have a Windows service for this new instance, however I can't figure out how to do it.
I expect you use the coldfusionsvc.exe for this, however I am not having any success with it. What parameters do I need to pass to this to make it work?  The -h option gives the following, but I can't understand what I need to put for <jrun-server>:
c:\ColdFusion10\nws\bin>coldfusionsvc.exe -h
Usage: coldfusionsvc
-install [-norestart] <jrun-server> [service-name [service-display [service-description]]] [-<jrun-option>...]
or -remove service-name
or -start service-name
or -starttimeout <seconds> service-name
or -stop service-name
or -stoptimeout <seconds> service-name
or -logfilesize <no_of_kbs> service-name
or -logfileRotationLimit <no_of_files> service-name
or -status service-name
or -console service-name [-<jrun-option>...]
If I try something like this, I get an error:
c:\ColdFusion10\nws\bin>coldfusionsvc.exe -install nws "cf10-nsw" "ColdFusion 10 - NWS Instance"
CreateService failed with error status 123
The filename, directory name, or volume label syntax is incorrect.
Can anyone please point me in the right direction?
Many thanks,
Andrew.

The best solution I can find is to not use coldfusionsvc.exe to install the service.
I did it using the sc command, as follows:
sc create "ColdFusion 10 NWS Server" binPath= "C:\ColdFusion10\nws\bin\coldfusionsvc.exe" displayname= "ColdFusion 10 NWS Server" start= auto
(note that the spaces after the equals signs are required)
If you're a pedant like me and also want a description, it looks like you have to do this using a separate execution of the command:
sc description "ColdFusion 10 NWS Server" "The ColdFusion 10 NWS Service"

Similar Messages

  • How to Create Windows Service?

    Dear Gurus,
    We have created a service in windows 7 for our Application {PRINTSERVICE} as per below commands.
    C:\Users\Administrator>sc create myservice1 binpath= "C:\VAFC Exes\Print Server\
    Print server\printserver.exe" type= own type= interact error= ignore start= dema
    nd
    [SC] CreateService SUCCESS
    WARNING:  The service myservice1 is configured as interactive whose support is b
    eing deprecated. The service may not function properly.
    Please help in this regard, As we are thinking to run the PRINT SERVER as a windows service when the user is logged off.
    Your urgent reply will be highly appreciated.
    NOTE:- 
    Thanks
    Adeel Imtiaz
    Malik Adeel Imtiaz

    Hi Imtiaz, 
    Please have a look at this thread which is already discussed in our forum
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/28f1b9a6-d649-4b8a-946b-4f80fc2fd9ee/how-to-create-a-service-from-application-in-windows-server-2008-standard?forum=winservergen
    More over your query related to windows 7 . So seek help from concerning forum https://social.technet.microsoft.com/Forums/windows/en-us/home?category=w7itpro
    Regards, Ravikumar P

  • Created windows service fails to start

    Hi all. We have a piece of software that must always be running on a Windows Server 2008 box. 
    Currently due to poor development, this software is only run by a local user (not as SYSTEM nor initiated via a Windows Service) so when our user gets logged off, the software goes down with it.
    I have to find a way to get a particular command to run (as administrator) when the machine turns on (even if a user a user does not log in). I have been playing with the SC command to create a service but I cannot get the service to start. I keep receiving
    the error:
    FAILED 1053: The service did not respond to the start or control request in a timely fashion.
    Another option I was trying as a temporary fix was to use the PsTools to launch the software. When the processes are running they are running as SYSTEM, but they still shut down when the user is logged off. Is there an easier way to get services to work?
    Or another way entirely to get software to launch on System boot? Please note that I am very restricted in this environment so doing this without the use of 3rd party tools is preferable. Thank you!!

    If you're the dev, then these might help:
    http://msdn.microsoft.com/en-us/library/zt39148a%28v=vs.110%29.aspx and
    http://www.codeproject.com/Articles/106742/Creating-a-simple-Windows-Service
    This might help you also:
    http://www.timdavis.com.au/general/creating-a-user-defined-service-in-windows-7/

  • Create windows service

    Hi!
         I'm trying to create a windows service from PB Classic 12.5. Does anyone know or have a sample about how can I create this? I tried to create a simple application that  change a registry key. I generated an exe file and executed this command line on cmd [sc create <new_service_name> binpath= "<path_to_the_executable>"]. This created the service on Windows service list, but this error occurred: error 1053 the service did not respond to the start or control request in a timely fashion.
    Can anyone help me?
    Thanks in advance.
    Pedro Soares

    Hi Pedro;
      FYI .. here is what I use ...  http://www.firedaemon.com/
    HTH
    Regards ... Chris

  • Create windows service in azure

    I want to create one window service in azure.
    actually i want do that my task running in cloud all the time in azure.
    i have tried to search it on net but i dont get any good solution.
    Also i want free trial azure account. (i tried to create it but at last it ask me for credit card info).
    So please tell me what is requied to do it.
    sagar patel

    Hello sagar_patel,
    1. Whay kind of a task are you trying to deploy onto azure platform?
    2. When you say that you want to create a Windows service, do you mean that you want to create a Web Server?
    3. Are you trying to deploy any website, web application?
    Please refer to the link below that will give you information on the type of services offered and How to get started:
    http://azure.microsoft.com/en-us/documentation/services/cloud-services/
    About signing up for free trial, you will need to enter your credit card information when you sign up for azure services. To ensure a valid credit card, Microsoft will charge your credit card $1 when signing up for the Free Trial Offer. This is only an authorization
    hold, the charge will be reversed within 3-5 business days.
    http://azure.microsoft.com/en-in/pricing/free-trial-faq/
    Thanks,
    Syed Irfan Hussain

  • How create Windows Services in Azure using Visual Studio 2012

    Hi,
    I have a need to write a Windows Service (Batch Job), which would execute everyday at a specified time, say 4:00AM. This job will do some processing and will send out an email to predefined users. I am using Visual Studio 2012 for the development.
    Based on some research, it looks like that Azure doesn't have a concept of Windows Service. Rather, we need to create WorkerRole to achieve the same.
    I wrote the code to implement the WorkerRole. The problem, I am facing is that
    1. How to prevent the continuous looping of the code below? I want the task to be executed only once a day at 4:00AM
    2. How do I schedule this functionality in Azure?
    Any help will be highly appreciated. I have provided the code sample below.
    Thanks.
       public class WorkerRole : RoleEntryPoint
            public override void Run()
                while (true)
                    SendNewsEmail();
                    Thread.Sleep(10000);
           private void SendNewsEmail()
                /*Email Logic Goes Here*/
            public override bool OnStart()
                // Set the maximum number of concurrent connections
                ServicePointManager.DefaultConnectionLimit = 12;
                return base.OnStart();

    HI
    I think JuneT's answer is what you want.
    However it's for Azure website.
    If you still want to use a workerRole, you need much harder work.
    You can use Timers Class to do such things:
    http://stick2basic.wordpress.com/2013/02/22/how-to-schedule-a-c-windows-service-to-run-a-method-daily/
    How do I schedule this functionality in Azure
    I suggest you save the settings file in a cloud table, and notify your webrole using WCF service to let the service get the new settings when your changed it.
    My Blog
    Please use Make as Answer if my post solved your problem and use
    Vote As Helpful if a post was useful.

  • Creating windows service

    Hi
    I have created a program to access a oracle database using oracle.dataaccess, .net framework 4, visual studio 2010 in C#.
    The program runs without any problem.
    If I try to create a windows service, I recieve the error
    Service cannot be started. System.BadImageFormatException:
    Could not load file or assembly 'Oracle.DataAccess, Version=2.112.3.0, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies.
    An attempt was made to load a program with an incorrect format.
    File name: 'Oracle.DataAccess, Version=2.112.3.0, Culture=neutral, PublicKeyToken=89b483f429c47342'
    when i execute the command
    GlobalVariables.conn = new OracleConnection(oracelString);
    in the OnStart.

    Thank you for your reply.
    If I change from Any CPU to x86 build I recieve the following error when I run
    installutil epics1.exe
    C:\My Documents\Visual Studio 2010\Projects\Epics1Service\Epics1\bin\Release>installutil epics1.exe
    Microsoft (R) .NET Framework Installation utility Version 4.0.30319.1
    Copyright (c) Microsoft Corporation. All rights reserved.
    Exception occurred while initializing the installation:
    System.BadImageFormatException: Could not load file or assembly 'file:///C:\My Documents\Visual Studio 2010\Projects\Epics1Service\Epics1\bin\Release\epics1.exe' or one of its dependencies.
    An a attempt was made to load a program with an incorrect format..

  • How do you create a program in Labview that can be run as a Windows Service?

    I would like to create a Labview program that can be run as a Windows service.  I have read the following Knowlegebase articles and have done what they say. 
    Creating a Windows NT Service Using LabVIEW http://www.ni.com/white-paper/3185/en 
    Running a LabVIEW Application as a Windows NT/2000/XP/Server 2008/7  User-Defined Service http://digital.ni.com/public.nsf/allkb/21BA0F671A63A60386256CB4004DF99B
    When trying to start the service I get an error that says the program didn't respond to the start in a timely manner.  I also set the "run when opened" parameter in the VI.  I am programming in Labivew 2010, proffesional version.  The server is running Windows Server 2008.  Can anyone help?  Is the ini file important in Windows Server 2008?

    I haven't looked through all those links.  But I have created Windows Services from LabVIEW executables way back when WinXP came on the market.
    The problem with services is that they have no UI.  So you can't really see what is going on.  Your EXE might be failing or hanging due to some kind of error (most liklely a security/permissions error), but you can't see the error.  So my advice is to either:
    1.  Have your EXE write lots of info to a log file.  Write info that log every step in the application.  If an error ocurrs, have it write the error info to the log file.  That is a very useful debugging tool.
    2.  Use VI Server functions to monitor the service to see what is going on. 

  • Manually creating the oracle services inside windows services

    Hi All,
    After discussion we came up for the following conclusion and would like to have further discussion on the topic.
    - We have node 1 windows 2003 enterprise sp2 available on one of the server which has Oracle 11g R1 having custom database installed on it.
    - All database and Oracle server files are stored on shared storage.
    - It created windows services inside which we will be registered under cluster administrator
    - We will install Oracle 11g R1 on node 2 (Passive node of windows cluster) with the software only option.
    - We will manually create the oracle services on this node with the same name as we have on node 1.
    In case the node 1 will be failed, node 2 will fail over and will become active node for the users.
    Is there any one involve in such practice? did it work ?
    Thanks,

    I am installing 10g client and create an ORCL service using the Net configuration Assistant. I don't see this service when i open ontrol panel/administrative tools/services. Is this normal?
    I thought i wld see it and start the service and listener. Some confusion here.... first of all, listener is a server process, which listens for incoming calls, you don't have it on a client.
    Secondly, the service you created with Net Configuration Assistant is just an alias you'll use to connect a remote database to, and does not create any Windows service. You can find its specifications within tnsnames.ora file, in ORACLE_HOME\network\admin directory.
    I'd read some documentation

  • Windows service write to event log

    Have strange conduct of code within my application. I've created windows service the same as according to MSDN default instruction:
    https://msdn.microso...=vs.110%29.aspx
    its working and logging to event log correctly. After that i copied that project and based on it i started to create second one almost similar one. my issue is within below part of code belongs to ProjectInstaller.vb when i installed it and tried to Start i
    get message that Windows service started and stoped imedietly.
    Imports System.ComponentModel
    Imports System.Configuration.Install
    Public Class ProjectInstaller
    Public Sub New()
    MyBase.New()
    'This call is required by the Component Designer.
    InitializeComponent()
    'Add initialization code after the call to InitializeComponent
    End Sub
    Protected Overrides Sub OnBeforeInstall(ByVal savedState As IDictionary)
    Dim parameter As String = "MySvcDeon2"" ""MyLogFileSvcDeon2"
    Context.Parameters("assemblypath") = """" + Context.Parameters("assemblypath") + """ """ + parameter + """"
    MyBase.OnBeforeInstall(savedState)
    End Sub
    End Class
    Within this line: Dim parameter As String = "MySvcDeon2"" ""MyLogFileSvcDeon2"
    When i change it to this form then service its starting correctly without any error meassage:
    Dim parameter As String = "MySvcDeon1"" ""MyLogFileSvcDeon1"
    its working. But Deon2 is already created by my first windows service. Whats wrong?

    i also tried from official msdn site  but same error, anyhow, see my code below:
    ProjectInstaller.vb:
    Imports System.ComponentModelImports System.Configuration.InstallPublic Class ProjectInstaller    Public Sub New()        MyBase.New()        'This call is required by the Component Designer.        InitializeComponent()        'Add initialization code after the call to InitializeComponent    End SubEnd Class
    ProjectInstaller.Designer.vb
    <System.ComponentModel.RunInstaller(True)> Partial Class ProjectInstaller    Inherits System.Configuration.Install.Installer    'Installer overrides dispose to clean up the component list.    <System.Diagnostics.DebuggerNonUserCode()> _    Protected Overrides Sub Dispose(ByVal disposing As Boolean)        Try            If disposing AndAlso components IsNot Nothing Then                components.Dispose()            End If        Finally            MyBase.Dispose(disposing)        End Try    End Sub    'Required by the Component Designer    Private components As System.ComponentModel.IContainer    'NOTE: The following procedure is required by the Component Designer    'It can be modified using the Component Designer.      'Do not modify it using the code editor.    <System.Diagnostics.DebuggerStepThrough()> _    Private Sub InitializeComponent()        Me.ServiceProcessInstaller1 = New System.ServiceProcess.ServiceProcessInstaller()        Me.ServiceInstaller1 = New System.ServiceProcess.ServiceInstaller()        '        'ServiceProcessInstaller1        '        Me.ServiceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalSystem        Me.ServiceProcessInstaller1.Password = Nothing        Me.ServiceProcessInstaller1.Username = Nothing        '        'ServiceInstaller1        '        Me.ServiceInstaller1.Description = "Chorus windows service collector"        Me.ServiceInstaller1.DisplayName = "SvcChorusCollector"        Me.ServiceInstaller1.ServiceName = "SvcChorusCollector"        Me.ServiceInstaller1.StartType = System.ServiceProcess.ServiceStartMode.Automatic        '        'ProjectInstaller        '        Me.Installers.AddRange(New System.Configuration.Install.Installer() {Me.ServiceProcessInstaller1, Me.ServiceInstaller1})    End Sub    Friend WithEvents ServiceProcessInstaller1 As System.ServiceProcess.ServiceProcessInstaller    Friend WithEvents ServiceInstaller1 As System.ServiceProcess.ServiceInstallerEnd Class
    SvcChorusCollector.vb:
    Public Class SvcChorusCollector
        Private Const EvtLogSource As String = "MySourceSvcChorusCollector"
        Private Const EvtLogName As String = "MyLogSvcChorusCollector"
        Private syncRoot As New Object
        Dim timer As System.Timers.Timer = New System.Timers.Timer()
        Sub New()
            ' This call is required by the designer.
            InitializeComponent()
            ' Add any initialization after the InitializeComponent() call.
            If Not System.Diagnostics.EventLog.SourceExists(EvtLogSource) Then
                System.Diagnostics.EventLog.CreateEventSource(EvtLogSource, EvtLogName)
            End If
            EventLog1.Source = EvtLogSource
        End Sub
        Protected Overrides Sub OnStart(ByVal args() As String)
            ' Add code here to start your service. This method should set things
            ' in motion so your service can do its work.
            EventLog1.WriteEntry("In OnStart")
            ' Set up a timer to trigger every minute.
            timer.Interval = 1000 ' 1 seconds
            'unfortunetly OnTimer event handler will be executed even already one is running if Interval is riched by default.
            'This is because it will go multiple threading and not in main thread unless a SynchronizingObject is supplied. (Which it wasn't.) below :
            'timer.SynchronizingObject = Me
            'this is solving problem. OTher way is to make lock within OnTimer event handler as its done right now.
            AddHandler timer.Elapsed, AddressOf Me.OnTimer
            timer.Start()
        End Sub
        Protected Overrides Sub OnStop()
            ' Add code here to perform any tear-down necessary to stop your service.
            EventLog1.WriteEntry("In OnStop")
        End Sub
        Protected Overrides Sub OnContinue()
            EventLog1.WriteEntry("In OnContinue.")
        End Sub
        Private Sub OnTimer(ByVal sender As Object, ByVal e As Timers.ElapsedEventArgs)
        End Sub
    End Class
    SvcChorusCollector.Designer.vb
    Imports System.ServiceProcess<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _Partial Class SvcChorusCollector    Inherits System.ServiceProcess.ServiceBase    'UserService overrides dispose to clean up the component list.    <System.Diagnostics.DebuggerNonUserCode()> _    Protected Overrides Sub Dispose(ByVal disposing As Boolean)        Try            If disposing AndAlso components IsNot Nothing Then                components.Dispose()            End If        Finally            MyBase.Dispose(disposing)        End Try    End Sub    ' The main entry point for the process    <MTAThread()> _    <System.Diagnostics.DebuggerNonUserCode()> _    Shared Sub Main()        Dim ServicesToRun() As System.ServiceProcess.ServiceBase        ' More than one NT Service may run within the same process. To add        ' another service to this process, change the following line to        ' create a second service object. For example,        '        '   ServicesToRun = New System.ServiceProcess.ServiceBase () {New Service1, New MySecondUserService}        '        ServicesToRun = New System.ServiceProcess.ServiceBase() {New SvcChorusCollector}        System.ServiceProcess.ServiceBase.Run(ServicesToRun)    End Sub    'Required by the Component Designer    Private components As System.ComponentModel.IContainer    ' NOTE: The following procedure is required by the Component Designer    ' It can be modified using the Component Designer.      ' Do not modify it using the code editor.    <System.Diagnostics.DebuggerStepThrough()> _    Private Sub InitializeComponent()        Me.EventLog1 = New System.Diagnostics.EventLog()        CType(Me.EventLog1, System.ComponentModel.ISupportInitialize).BeginInit()        '        'EventLog1        '        '        'SvcChorusCollector        '        Me.ServiceName = "SvcChorusCollector"        Me.CanStop = True                   'if this is not set to true then will be not possible to stop service manually from service window services.msc !!!        Me.AutoLog = True        CType(Me.EventLog1, System.ComponentModel.ISupportInitialize).EndInit()    End Sub    Friend WithEvents EventLog1 As System.Diagnostics.EventLogEnd Class
    The second service is on same basis, of course service names, source,logname are diffrent. What i do wrong? Error message appearing really fast after ~8 sec

  • My application doesn't start when I run the domain as windows service

    I am using weblogic 10.3.2 and i created a domain called rec_domain and i have AdminServer
    also i deployed application called myApplication to the rec_domain
    then i created windows service to run the server as a windows service
    The Script for Setting Up a Server as a Windows Service:
    echo off
    SETLOCAL
    set DOMAIN_NAME=rec_domain
    set USERDOMAIN_HOME=C:\Oracle\Middleware\user_projects\domains\rec_domain
    set SERVER_NAME=AdminServer
    set WLS_USER=usernmae
    set WLS_PW=password
    set PRODUCTION_MODE=true
    set JAVA_VM=-jrockit
    set JAVA_VENDOR=BEA
    set JAVA_HOME=C:\Oracle\Middleware\jrockit_160_05
    set MEM_ARGS=-Xms40m -Xmx250m
    call "C:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL
    the service was created successfully and when i restart the computer it runs the adminserver successfully
    but it doesn't start myApplication_
    does anyone know where is the problem?
    Edited by: Wael Ibrahim on 28/12/2009 05:48 ص

    Hi Wael,
    Can you please specify, What do u mean by Application Doesn't start? Is it Moving to PREPARED State Rather than ACTIVE state? Or the Application Health is not OK? Are you seeing any Warning or Error Message while starting the Server related to Deployment?
    As the Production Mode is On...So I just wanted to confirm that By Mistake have u used the AutoDeploy feature to deploy Applications...Because the AutoDeploy Feature Doesn't Work in Production_Mode=true.
    After Configuring the Windows Service Have you tried to Deploy the Application Freshly? Was it Successful?
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)
    Edited by: Jay SenSharma on Dec 29, 2009 9:11 AM

  • Requirement is to run CMD.EXE under the Local System Account. So that we can map a network drive to be used by a windows service, which will be created by command: - net use z: \\servername\sharedfolder /persistent:yes

    Environment:
    OS:  Windows 7 32/64 bit, Windows 2008 Server 64
    bit/ Windows 2012 Server 64 bit
    Priority:
    - Critical
    Requirement: - Since
    the Windows Service is running under the Local System Account, we would like to emulate this same behaviour.
    Basically, we would like to run CMD.EXE under the Local System Account. So that we can map a network drive to be used by a service using following
    command
    net use z: \\servername\sharedfolder /persistent:yes.
    Already Attempt:
    We tried to launch the CMD.exe using the DOS Task Scheduler AT command.  Here’s a sample command:
    AT 10:36 /interactive cmd.exe
    But I received a warning that “due
    to security enhancements, this task will run at the time excepted but not interactively.”
    It turns out that this approach will work for XP, 2000 and Server 2003 but due to session isolation
    Interactive services no longer work on Windows 7, Windows Server 2008 and above.
      2.  We
    tried to create a secondary Windows Service via the Service Control (sc.exe) which merely launches CMD.exe.
    <Drive>:\sc create RunCMDAsLSA binpath= "cmd" type=own type=interact <Drive>:\sc
    start RunCMDAsLSA
    In this case the service fails to start and results it the following error message:
    FAILED 1053: The service did not respond to the start or control request in a timely fashion.
      3. One
    suggestion, we found to launch CMD.exe via a Scheduled Task, but
    it is not giving any option to launch CMD.exe in interactive mode; so that I can map network drive using net command.
      4. I read an article, which
    demonstrates the use of PSTools from SysInternals. I launched the command line and executed following command
    psexec -i -s cmd.exe
    PSTools worked fine, but It seems that in scope of Sysinternals Software License
    Terms. You may not "use the software for commercial software hosting services."
    Application will deploy on client, which will be like commercial,
    so we are not able to use PSTools.         
    Kindly assist us for achieving the requirement. We have tried all the ways, but nothing is working for us. Kindly suggest.
    I will be really thankful.

    Hi Sir,
    Nothing worked from above for us. You can see our remarks on posted query.
    That’s why, we posted on forum.
    And there will not be any vulnerability, because, if we will use "net
    use ..."
    in network domain; definitely,
    we will provide username and password of mapped drive system.
    And, that system, itself is given by client; so that, there must not be any vulnerability; they are ready to provide user name and password.
    We need a way; by which we can complete the requirement. Kindly assist.
    Regards,
    S. P. Singh

  • Install of WAS 6.40 java on windows no windows services created

    We are trying to install a NW04 SR1 WAS on windows. The latest Install Master CD download now requires Oracle 10. The Oracle 10 install is the first part of the install process. The Note number 949116  says to use the procedure for the Oracle install in the NW 2004s SR1 install guide.
    We have followed these instructions and after running the Oracle installer via sapserver.cmd we get a successful completion with 0 byte error file.
    We are installing over Remote Desktop as a user who is a member of the local Admin group.
    But the only windows service created is iSQL.
    I tried using both mstsc & mstsc /console but the services are still not created.
    Has anyone had the same problem?
    Regards
    Chris

    Thanks for your help Gopal
    The documentation is very bad on this process so for anyone who is following the the upgrade of R/3 internet sales from J2EE Engine 6.20.
    Use the following;
    6.20/6.40 based products Installation Master (Edition Sept. 2006) Number 51032143
    Download IGS, SCS, Crypto Lib & SAP:J2EE-CD:640SR1:J2EE-CD::
    Download Oracle 10, 5 files rebuild cd by clicking on the.exe file
    Install Oracle 10 (Don't expect to see an operational RDBMS i.e no services)
    Install NW04s SR1 java via Install Master SAPInst
    Install CRM Component ISA R/3 via Install Master SAPInst
    Hope this helps
    Regards
    Chris

  • Need to create a PDF Portfolio programatically using the Adobe SDK in C# from a Windows Service.

    What classes/methods should I be using?
    We need to create a PDF portolio from a windows service written in C#.
    We need to merge several PDF documents into a single PDF portfolio from our windows service (programatically).
    I have seen documentation in the Adobe help on how to do it using the Adobe UI, but we need to do this step programatically from our windows servie.
    Thanks!

    You can't access Acrobat from a service - since we won't run in Service mode...only in standard Application mode.  In addition, we don't run on a server.
    But if you were doing this from a standard application - then you'll want to read the JavaScript documentation in the SDK as well as the documents about the .NET/JS bridge.

  • Creating the Windows Service for the Database Instance

    Hello, I am using the PeopleTools 8.52 Installation for Oracle documentation and was in Task 6A-2: Creating the Windows Service for the Database Instance.
    After I type in
    oradim -new -sid ORCL -intpwd manager -startmode auto -pfile C:\Oracle\database\initORCL.ora
    I had encountered these errors:
    OPW-00005: File with same name exists - please delete or rename
    DIM-00019: create service error
    O/S-Error: (OS 1073) The specified service already exists.
    Please advise.... Thank you in advance!

    Hi, thank you for your reply!
    After I typed oradim -delete -sid ORCL, it shows this:
    Unable to stop service, OS Error = 1062
    Instance deleted.
    Then, I:
    Set ORACLE_SID=ORCL
    oradim -new -sid ORCL -intpwd manager -startmode auto -pfile C:\Oracle\database\initORCL.ora
    Then, it shows:
    OPW-00005: Files with same name exists - please delete or rename
    Instance created.
    Does it mean no error already and I can proceed?

Maybe you are looking for

  • Error Message in BAPI ... 'BAPI_ACC_INVOICE_RECEIPT_POST'

    Hello, I recently used a BAPI called 'BAPI_ACC_INVOICE_RECEIPT_POST'. However an error message appeared in my return table stating "No currency line exists for line item ....". Is there a way to resolve this? Thank you all and good day.

  • How to set a fixed path while clicking the save button in sap adobe form

    Hi Experts, I would like to save a form to the same location but there seems to be no way to set a default folder. Its popup save as dialog box asking when i was save the first time. Kindly give the solution to close this requirement. Warm regards, S

  • Preview working on Desktop Content Viewer - not on iPad

    Hello all, As the title suggests, I have a page layout with MSO's and buttons within it that works perfectly well on the content viewer, but then doesn't work on iPad. To give a brief overview... I have one MSO with 5 states... It is a block of text

  • Trouble deleting content

    Hello! I am having trouble deleting content off my internal drive. it is komplete ultimate which is a music production software and it has a ton of content on it that I just realized can be installed on my external drive instead. I am having trouble

  • I need sample basic data file containing Product,Market,Measures etc

    I need sample basic data file containing Product,Market,Measures etc to load data in to Sample Basic applications. Where can I get this?