Run Program activity not exiting

I'm running SCOrch 2012 R2 and am having trouble with a runbook hanging. Here are the facts
My runbook executes a script (the code for which, I have included below) that gets a list of AD users and exports that list to a .csv file. 
When run manually, from a Powershell window, the script executes and returns the expected file, before returning to the prompt.
When run through the SCOrch, the script runs fine, with the output file created and the Powershell process exiting.
The commands I'm using to execute the script manually and through the runbook, are the same (see below) and the run-as accounts are the same.
The runbook never gets past the step that runs the Powershell script.
The activity looks like this: 
Command execution
Command: cmd.exe /c | C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe –c "C:\it\getADUserProperties-Parameterized.ps1 -SearchPath 'ou=customer,dc=domain,dc=tld' -DomainName domain.tld | Export-Csv C:\it\userList.csv -NoTypeInformation"
Run as account credentials specified
The rest of the options are set to the default values
The question is, why doesn't the Run Program activity close when powershell.exe exits? I know it won't matter, but here is the script anyway:
<#
.Synopsis
Get Active Directory user list with a user-specified set of properties
.DESCRIPTION
Get a list of Active Directory users from a user-specified list of containers (or the root of the domain) and return a user-specified set of attributes.
This script can connect to non-native domains (domains that the executing computer is not a member of) if DNS is configured properly. If accessing a
non-native domain, the script will prompt for credentials.
.NOTES
Author: Mike Hashemi
V1 date: 15 August 14
.LINK
.PARAMETER DomainName
Defines which DNS domain to connect to.
.PARAMETER SearchPath
Default value = cn=users,dc=domain,dc=tld. This parameter represents the AD to search and can contain multiple values.
.PARAMETER OutputProperties
Default value = Name,Enabled. This parameter represents a comma-spearated list of AD attributes to return.
.EXAMPLE
.\getADUserProperties-Parameterized.ps1 -DomainName domain.tld
This example will output the name and enabled status of all users in "cn=users,DC=domain,DC=tld" and below.
.EXAMPLE
.\getADUserProperties-Parameterized.ps1 -OutputProperties name,telephoneNumber | Export-Csv C:\userList.csv -NoTypeInformation
This example will output the name and telephone number of all users in "cn=users,DC=domain,DC=tld" and below. Output will be sent to c:\userList.csv.
#>
[CmdletBinding()]
param(
[Parameter(Mandatory=$True)]
[string]$DomainName,
[string[]]$SearchPath = 'cn=users,DC=domain,DC=tld',
[string]$OutputProperties = 'Name,Enabled'
Import-Module ActiveDirectory
If ((Get-Module ActiveDirectory -ErrorAction SilentlyContinue) –eq $null) {
Write-Error "This script requires the Powershell Module: 'ActiveDirectory'. Please make sure you've got the correct tools installed."
Exit
Else {
Foreach ($ou in $SearchPath) {
Try {
Write-Verbose ("Getting users from {0}." -f $ou)
Get-ADUser -Filter * -SearchBase $ou -Properties $OutputProperties.Split(",") -Server $DomainName | Select $OutputProperties.Split(",")
Catch [System.Security.Authentication.AuthenticationException] {
Write-Output ("Connection failed. Prompting for credentials to {0}" -f $DomainName)
$cred = Get-Credential -Message "Enter credentials for $DomainName."
Write-Verbose ("Getting users from {0}. with user: {1}" -f $ou, $cred.Username)
Get-ADUser -Filter * -SearchBase $ou -Properties $OutputProperties.Split(",") -Server $DomainName -Credential $cred | Select $OutputProperties.Split(",")
Thanks.

mhashemi,
I had a simliar issue as you did where my runbook would run until it got to the "Run .Net Script" Activity and then the Runbook would just stop. What I found was you can not have the command "Exit" in your script. The command "Exit"
will force the Activity to close and will not output any variables.
I am not the only one to find this issue.
Check out the article labeled
"Run .Net Script (powershell), "exit" and published data" on technet under
System Center Orchestrator > System Center Orchestrator - General
(not able to post the link, I am restricted)
Doesn't sound like there is going to be a fix anytime soon
Hope this helps
-Ozarkclay

Similar Messages

  • Telnet with Run Program Activity

    Hello Experts,
    I have a quick question with respect to the Run Program Activity. Is it possible to have a telnet session with the run program activity without loosing the connection ? 
    So my first activity will be the telnet connection. Once the connection is established I will then execute a command to get the output. 
    However, when I execute the runbook it establishes the connection and closes it immediately. As a result the next command does not get executed. When I throw the output to a text file, it says invalid command which means that the telnet session gets closed.
    Is there any other way to do this ? 
    Regards,
    Abdul Karim. (http://sites.google.com/site/scomblogs Twitter:@Abdul_SCOM)

    Hello, 
    Yes I tried the same with SSH and the activity still fails.
    I also tried pwershell script, however the .Net Activity fails saying telnet is unrecognized command.
    So how are we to achieve telnet commands using SSH or Run Program Activity.
    Is it supported in the first place ? If I only have a run program activity to telnet and I try to capture the output in a text file, I see that the telnet session itself fails and the exit code is -1.
    If I use something like dir or ipconfig/flushdns etc they all return exit code of 0.
    Moreover, for telnet sessions since it will be based on a unique process ID, how can we configure the next set of command using the same ID  ? 
    Regards,
    Abdul Karim. (http://sites.google.com/site/scomblogs Twitter:@Abdul_SCOM)

  • Winscp in Run Program activity

    Hi,
    The Run Program activity never ends when running winscp.com using these parameters; /command "option batch abort" "option confirm off" "open ftp_test_account" "put d:\data\* /VPT/*.TMP" "exit". The log file
    shows the program ran and ended but the Run Program Activity stays active. < 2014-07-24 02:54:19.751 200 Command PORT okay.
    > 2014-07-24 02:54:19.751 STOR test.001.TMP
    < 2014-07-24 02:54:19.767 150 File status okay; about to open data connection.
    < 2014-07-24 02:54:19.970 226 Transfer complete.
    > 2014-07-24 02:54:19.970 MFMT 20140724005400 test.001.TMP
    < 2014-07-24 02:54:19.986 213 ModifyTime=20140724005400; test.001.TMP
    . 2014-07-24 02:54:19.986 Upload successful
    . 2014-07-24 02:54:19.986 Got reply 1 to the command 4
    . 2014-07-24 02:54:19.986 Session upkeep
    > 2014-07-24 02:54:19.986 Script: exit
    . 2014-07-24 02:54:19.986 Session upkeep
    . 2014-07-24 02:54:19.986 Script: Exit code: 0
    . 2014-07-24 02:54:19.986 Got reply 1004 to the command 4
    . 2014-07-24 02:54:19.986 Disconnected from server

    Hello Abdul Karim,
    You need TCP 445 for the installation of the service (which seems to work fine),
    TCP 135 for communication with the endpoint mapper and after that comunication switches over
    to the highport that was assigned by the endpoint mapper
    for communication with the service manager (for controlling the Orchestrator Run Program Service).
    By default the dynamic port range on Windows Server 2008 is 49152 to 65535
    (refer to: The default dynamic port range for TCP/IP has changed in Windows Vista and in Windows Server 2008:
    http://support.microsoft.com/kb/929851).
    But since there is no firewall I doubt that to be the problem...
    Oh, by the way: Is the "RPC Endpoint Mapper" Service running on your target server (and what about "Remote Procedure Call (RPC)")?
    Regarding my question about the OS: There was a (meanwhile fixed) problem some time before with Win2003 but on that occasion the service was not installed at all.
    Are you using Orchestrator SP1 or R2?
    Regards,
    PIfM

  • Need help in using [RUN PROGRAM] Activity against a server in another domain

    Hi Experts,
    We have two domains with two way trust enabled. Orch server exists in DomainA and target server exists in DomainB.
    We are trying to execute some scripts(g:IPCONFIG) from orch server to target server using RUN PROGRAM activity. This is  running fine and give expected results, if I give Built-in Administrator credentials in Security Tab. But I'm getting some
    strange values like chinese/japanese language strings, If I use a DomainB/DomainA user (Part of local admin of the target server) in security tab as well as Advanced tab-->Runas.
    Things I tried:
    - DomainA/DomainB user in Security Tab as well as RunAs tab  ---> Strange Strings
    - DomainA/DomainB user in Security Tab and BuiltIn Administrator in RunAs tab  ---> Strange Strings
    - BuiltIn Administrator in Security Tab ---> Expected result
    - BuiltIn Administrator in Security Tab and DomainA/DomainB user in RunAs tab  --> ProgramExitCode = -10xxxxxx
    But our requirement is to run the script on the target server as Domain User(Part of local admin).
    Thanks in Advance
    Thanks and Regards, Narayana Babu

    Hi Experts,
    We have two domains with two way trust enabled. Orch server exists in DomainA and target server exists in DomainB.
    We are trying to execute some scripts(g:IPCONFIG) from orch server to target server using RUN PROGRAM activity. This is  running fine and give expected results, if I give Built-in Administrator credentials in Security Tab. But I'm getting some
    strange values like chinese/japanese language strings, If I use a DomainB/DomainA user (Part of local admin of the target server) in security tab as well as Advanced tab-->Runas.
    Things I tried:
    - DomainA/DomainB user in Security Tab as well as RunAs tab  ---> Strange Strings
    - DomainA/DomainB user in Security Tab and BuiltIn Administrator in RunAs tab  ---> Strange Strings
    - BuiltIn Administrator in Security Tab ---> Expected result
    - BuiltIn Administrator in Security Tab and DomainA/DomainB user in RunAs tab  --> ProgramExitCode = -10xxxxxx
    But our requirement is to run the script on the target server as Domain User(Part of local admin).
    Thanks in Advance
    Thanks and Regards, Narayana Babu

  • Contacting workgroup server requires run program-activity?

    Dear Technet-group
    I am currently working on runbooks within our environment.
    The current setup is that we have several Domain-joined servers and some Workgroup servers. The runbookserver is domain joined.
    When contacting workgroup servers, I encountered an issue where I need to add the "Run Program" activity and fill in the local credentials in the "Run As" tab instead of filling in the security tab to make the runbook run succesfully.
    Has anybody encoutered this bug before or does anyone have a possible fix for this?
    KR,
    Mitch

    Hello Stefan,
    Thank you for replying.
    I think I might have formed my question incorrectly. Let me explain my problem in detail.
    My situation is as followed.
    1 workgroup server as testpurpose.
    My Orchestrator-environment in a domain.
    As a form of testing, I created a very simpel runbook with the local admin credentials in the security tab, so that account has more than enough permissions.
    The runbook contains 2 activities. 1 intialize data, which only contains the input of the server's IP to connect to and 1 get Disk Space Status, which gets data from the testpurpose-server. Inside the "Get Disk Space Status" I filled in the local
    admin's account under the security tab, enabling him all permissions.
    When I run this runbook, it fails giving me the message: "Failed to connect to disk"
    However, I found out that when I add the "Run Program"-activity infront of the "Get Disk Space Status", clear out the security tabs and fill the account in under the Run As-tab and add a simpel "date" command to be executed,
    I do manage to get a success.
    This is however a workaround for the issue we are having. Have you ever encountered something like this?
    Thank you for your time.
    Kr,
    Mitch

  • Timed Loop in Shared Lib caused LabWindow program to NOT exit

    I have a shared Lib created in LabView that I call from LabWindows.  If I create a VI with nothing but a Timed Loop and no other code, my Labwindows program will not terminate.  (Even if I don't call the library function (VI) containing the Timed Loop). 

    I have a conditional that after 3 iterations, the loop is terminated.  (tied to stop) 
    The timed loop is empty. 
    The timed loop is definitely the cause of LabWindows not terminating.
    I have attached a sample of the problem.
    Attachments:
    Timed Loop.zip ‏67 KB

  • JFXPanel can cause the program to not exit

    This is a separate issue that came to light in another discussion: [url http://forums.oracle.com/forums/thread.jspa?threadID=2236566]Image conversion between AWT and FX
    I've concluded that the culprit is the JFXPanel. Hopefully this will be sorted out by the final release. The minimum code required to reproduce the problem is:import javafx.application.Application;
    import javafx.embed.swing.JFXPanel;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.stage.Stage;
    public class JFXPanelHang extends Application {
      public static void main(String[] args) {
        Application.launch(JFXPanelHang.class, args);
      @Override
      public void start(Stage primaryStage) throws Exception {
        JFXPanel panel = new JFXPanel();
        panel.setScene(new Scene(new Group()));
        primaryStage.setVisible(true);
    }The program doesn't terminate when the <tt>Stage</tt> is closed. If however you comment out the <tt>setScene(...)</tt> line, the program terminates normally.
    I wanted to log an issue on Jira, but I'm getting an error:
    JIRA Startup Failed
    You cannot access JIRA at present. Look at the table below to identify the reasonsIf anybody can reach the bug reporting page, please do report it. Thanks.
    db

    Hi,
    If this helps you somehow
    here is what i got when listing Threads :
    when line setScene... is not commented
    java.lang.ThreadGroup[name=main,maxpri=10]
        Thread[main,5,main]
        Thread[JavaFX-Launcher,5,main]
        Thread[QuantumRenderer-0,5,main]
        Thread[JavaFX Application Thread,5,main]
        Thread[Thread-2,5,main]
        Thread[AWT-Shutdown,5,main]
        Thread[AWT-Windows,6,main]
        Thread[AWT-EventQueue-0,6,main]
        Thread[Disposer,10,main]and when it is commented
    java.lang.ThreadGroup[name=main,maxpri=10]
        Thread[main,5,main]
        Thread[JavaFX-Launcher,5,main]
        Thread[QuantumRenderer-0,5,main]
        Thread[JavaFX Application Thread,5,main]
        Thread[Thread-2,5,main]
        Thread[Disposer,10,main]same output like in another discussion.
    Difference is:
    Thread[AWT-Shutdown,5,main]
    Thread[AWT-Windows,6,main]
    Thread[AWT-EventQueue-0,6,main]
    When i close stage those 3 are still running.

  • Could not find main class. Program will now exit. *SIGH*.....

    At first I thought it was just my own programs that I created with netbeans that had this problem; however, even the demo programs under the sdk folder give me this problem when i try to run them. Virtual Machine Loader will just come up with pop up saying "Could not find the main class. Program will not exit"
    I am a fairly competent programmer, not new to java. But I am new to guis in java, and using netbeans to create them. The program I am creating gives me this error with javaw and with java it will tell me NoClassDef for grouplayout. I checked the manifest file it looks alright:
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 10.0-b19 (Sun Microsystems Inc.)
    Main-Class: desktopapplication2.DesktopApplication2
    Class-Path: lib/appframework-1.0.3.jar lib/swing-worker-1.1.jar lib/swing-layout-1.0.1.jar lib/ant-swing.jar lib/SwingSet2.jar lib/swing-layout-1.0.3.jar
    X-COMMENT: Main-Class will be added automatically by build
    }(brackets not included)
    I am sort of lost.... Do I need to install ant separately?
    I feel like there may be some classpath issues?
    I have java 1.6 update 4 and netbeans 6.0
    I am completely lost I have been working on fixing this for the past 2 or 3 days now, and reading up all the information.
    Note: This is just a standard desktop application.
    Also I just thought of something. If I have install the development kit do I also need to install the framework or whatever for 6.0 separately? Meaning installing the latest version of jvm. Sorry if this isn't clear i forgot what it is called.
    Sorry if this sounds like a beginner question or something, but I am going crazy. If i am having this much trouble running my own program i really hope distributing files won't be this much of a nightmare....

    Please become familar with resources at the NetBeans site. There are tutorials and FAQs that cover usage of NB, and how to do things like you're asking.
    See my reply in this thread for more information
    http://forum.java.sun.com/thread.jspa?threadID=5270931&tstart=0

  • Powershell Hang when using Run Program (2012 R2)

    I've seen a couple posts about this in the past but nothing recent. I am calling a powershell and passing through some variables to run program activity in orchestrator. The program runs (in this case the DB is created) and the script finishes, however the
    activity does not. I've tried two solutions:
    http://blog.coretech.dk/jgs/sco-2012-running-powershell-scripts-via-run-program-activity/
    and
    http://www.sc-orchestrator.eu/index.php/scoblog/67-running-powershell-with-the-run-program-activity-from-orchestrator
    Neither of which seem to do the trick. Here is my command
    Note: The script runs fine when called on the machine locally. For sake of cleanliness I've removed my <Nul 2>&1 attempts. 

    I have found in these situations that having a non-stop error seems to get it from freezing (along with <Nul 2>&1).  I use 'Get-Content "C:\Farce.txt"' as my last line.

  • [SOLVED] Autostarted programs not exiting on logout with openbox

    Hi,
    I'm pretty sure I'm just overlooking something obvious, but I simply can't find a solution to the following basic problem. I'm using a simple openbox session started from xdm (also tried lightdm with the same results). In case of xdm, I'm using a .xsession file to start openbox like this:
    exec dbus-launch --exit-with-session openbox-session
    In case of lightdm, it also works without a .xsession or .xinitrc file.
    I'm using "~/.config/openbox/autostart" to start some tools upon login. Until now, I have only started programs which exit right away which worked fine. But now I'd like to use autostart to start a (non-X11) program which should continue to run until I log out. For testing this, I used a simple infinite loop script, let's call it "loop.sh". When I start loop.sh in autostart using "loop.sh &", this script continues to run even if I log out of openbox using the openbox menu. In fact, if I log out and log in multiple times, multiple instances will keep running forever. When I start loop.sh simply using "loop.sh", also the parent processes, namely "/bin/sh /usr/lib/openbox/openbox-autostart OPENBOX" and "sh /home/ochi/.config/openbox/autostart" continue to run.
    What is the correct way to have all processes spawned during the X session killed upon logout?
    For reference, this is the loop script I use:
    #!/bin/bash
    while true; do
    # If you like, you can also play a sound for feedback.
    #paplay /usr/share/sounds/freedesktop/stereo/complete.oga &
    sleep 1
    done
    Update: Using gdm seems to "fix" the problem, i.e. all programs started by the autostart script seem to get killed correctly. However, gdm pulls a LOT of dependencies I don't want to have. I wonder what gdm does differently...
    Last edited by Ochi (2015-04-18 23:38:21)

    I continued to study this subject, and here is what I found at this time.
    First I precise again that I use openbox launched by startx at login in tty.
    When I exit openbox, I return to a -bash prompt, and I then can log out of tty.
    After logging in into openbox, I have:
    └─user.slice
    └─user-1000.slice
    ├─[email protected]
    │ ├─1421 /usr/lib/systemd/systemd --user
    │ └─1422 (sd-pam)
    └─session-c1.scope
    ├─1414 login -- berbae
    ├─1425 -bash
    ├─1432 /bin/sh /usr/bin/startx
    ├─1454 xinit /home/berbae/.xinitrc -- /etc/X11/xinit/xserverrc :0 vt1 -auth /tmp/serverauth.xxxxxxxxxx
    ├─1455 /usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -auth /tmp/serverauth.xxxxxxxxxx
    ├─1459 /usr/bin/openbox --startup /usr/lib/openbox/openbox-autostart OPENBOX
    ├─1464 dbus-launch --sh-syntax --exit-with-session
    ├─1465 /usr/bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
    etc...
    When I exit openbox, without logging out, I have:
    └─user.slice
    └─user-1000.slice
    ├─[email protected]
    │ ├─1421 /usr/lib/systemd/systemd --user
    │ └─1422 (sd-pam)
    └─session-c1.scope
    ├─1414 login -- berbae
    └─1425 -bash
    If I ran something in background from konsole, when in openbox, this is not killed:
    └─user.slice
    └─user-1000.slice
    ├─[email protected]
    │ ├─1421 /usr/lib/systemd/systemd --user
    │ └─1422 (sd-pam)
    └─session-c1.scope
    ├─1414 login -- berbae
    ├─1425 -bash
    ├─1296 /bin/bash /home/berbae/bin/loop.sh
    └─1338 sleep 60
    If I log out, the process is still not killed!
    └─user.slice
    ├─user-1000.slice
    │ ├─[email protected]
    │ │ ├─517 /usr/lib/systemd/systemd --user
    │ │ └─519 (sd-pam)
    │ └─session-c1.scope
    │ ├─1296 /bin/bash /home/berbae/bin/loop.sh
    │ └─1338 sleep 60
    As seen the '[email protected]' with the 'systemd --user' process is not ended too, even after logging out.
    Edit: This is due to the session c1 still active; see next post.
    I don't know if this is intentional, maybe it is a feature.
    Now I found and propose a way to change this apparently default behavior, if it is not wanted.
    First to end the 'systemd --user' process at logout, it is easy; just run:
    $ systemctl --user enable exit.target
    Edit: This is useless, sorry; see next post
    Then to run a process in background, which should end when logging out, just launch it like this:
    $ systemd-run --user loop.sh
    This will launch the command 'loop.sh' as a service in the 'systemd --user' manager, instead of the 'session-c1.scope';
    and it will be ended at logout, because the manager is now ended at logout, with the normal end of the manager.
    Edit: see next post
    I will continue studying this matter, to see if something else interesting can be found.
    Edit: See the 'Edit:' lines above for the modifications, before the explanations in the next post.
    Last edited by berbae (2015-04-16 14:38:35)

  • Having error message when i try to download some application it says that the program is not a Win32 application so can't open or run it..

    like on graiglist when I look for job and press the reply button to send my resume info to the employer, I get this error message all the time.
    The add-in “C:\PROGRAM 1\AVG\AVG8\avgxch32.dll” could not be installed or loaded
    This problem may be resolved by using Detect and Repair on the Help enu. Unable to load.
    You may be out of memory out of a system resources, or missing a .dll file.
    and the error message i get when i try to run or download an application
    is is not a valid Win32 application

    [[Firefox is already running but is not responding]] has steps that you can try. It sounds like you may have something that is hanging your browser on exit (probably an extension or a locked profile) and the steps on that page should help clear it up.

  • Trying to update creative cloud, comes error: The installation program could not access the important files / directories. Try to run the installer again. (Error code: 43), please contact customer support. The same error comes updating Muse. Mac 10.9.5. W

    Trying to update creative cloud, comes error: The installation program could not access the important files / directories. Try to run the installer again. (Error code: 43), please contact customer support. The same error comes updating Muse. Mac 10.9.5. What shall I do?

    Alauda_positos I would recommend reviewing your installation log files to determine the exact directory which the installer is unable to access.  You can find details on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors discovered to this discussion.
    For information on how to adjust file permissions please see Error "Exit 6" or "Exit 7" | Install log | Read, write, system file errors | CS5, CS5.5 - http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html.

  • I deactivated Photoshop CC on my Mac Mini and downloaded PS CC on my MacBook 1.1. I didn't realize the program will not run on MB 1.1. I uninstalled the app on the MacBook. I tried to reactivate on my Mac Mini and it tells me I already have the program lo

    I deactivated Photoshop CC on my Mac Mini and downloaded PS CC on my MacBook 1.1. I didn't realize the program will not run on MB 1.1. I uninstalled the app on the MacBook. I tried to reactivate on my Mac Mini and it tells me I already have the program loaded on two computers. How do I solve the problem?

    The activation server shows that it is now activated on two computer, it has been deactivated once .
    When you install it on the third computer or for the third time & when you to activate it, if it installed & activated already twice, there will be an option of deactivating it from the previous computers, please click on that.(To deactivate from preinstalled machine, Open any Adobe CC application > Help Menu > Signout.)
    Next it will allow you to activate on your new machine,
    Now you can go back to your first computer, log out & log back in of Desktopp CC App, launch any product, if there is any product to buy, in that prompt there will be an option to " license the software", please click on that & sign in.
    It will reactivate the CC on the first machine.
    You have already deactivated it from one machine, hence you can activate it on third computer.
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivat ion-products.html#deactivate-problem
    In case the is still not resolved, please contact Adobe at
    http://adobe.ly/yxj0t6
    Please refer to:
    Creative Cloud applications unexpectedly revert to trial mode | CS6, CCM
    I'm a Creative Cloud member, why is my app launching as a trial? Mac OS 10.7.4
    creative cloud software says my free trial has expired, but I have a paid subscription
    Re: Creative Cloud for Teams - second computer will only install as trial version
    Creative Cloud Help | Install, update, or uninstall apps
    Hope it helps.
    Regards

  • Why does Firefox give this message when I do not have another program running "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system."

    Question
    why does Firefox give this message when I do not have another program running or another window open - "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." edit

    See also "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    *https://support.mozilla.com/kb/Firefox+hangs

  • I just purchased an IMac with lion and I tryed to install an old math program that is for winmac running systems. When I try to boot the cd it comes up with a notepad window with a bunch of weird symbols and codes but the program will not start up.

    I just purchase my first IMac with lion and I was trying to install a math program I bought 6 years ago. When I went to boot it off the disk while following the program instructions a window popped up with a note pad format with symbols and codes but the program would not download or open. How do I get this program to work? It is a mac compatible program by the way.

    Your Mac probably does not know with which application to open the file and is opening a file with a text editor that really needs to be opened by the application itself.  Try starting the application first, then use the File > open command to open the file.
    As varjak paw comments, there isn't a "winmac" so that's not telling us anything.
    Note that it is possible that software purchased 6 years ago may no longer run on your computer.  Once we know what it is we can help more.

Maybe you are looking for

  • HP Scanner Not Working

    I am running a fully updated version of Tiger on an intel imac and my HP C3100 scanner/printer now no longer recognizes the scanner. The printer function is working fine, so I am connected, it's just the scanner function. I have been using the HP sof

  • Delete overlapping requests from cube not working in processchain.

    In a process chain, 'deletion of overlapping requests from the cube ' step is used. Before this step a DTP step runs with a full update to load the cube. This process chain is scheduled every day. Issue is, the process chain failed at the DTP step an

  • What do I have to do to bring iPhoto up so that I can use the program?

    This morning we received a software update for iPhoto (36MB) immediately after this download and installation we received a second software update for iPhoto (57.7MB). Shortly after finishing the second update I tried to open iPhoto to work on a slid

  • Podcast approval no response

    Most of my submitted podcasts got approval in 1-2 days, except those two: http://feeds2.feedburner.com/cctvglobal_soccervideo http://feeds2.feedburner.com/cctvexploringvideo I wonder why I never got response back for them. Please take a look, thanks.

  • XLR - Incoming Payment - Open Balance field not found

    I'm trying to build an aged debtors report in XLR and the last piece I need is the Open Balance (ORCT.OpneBal) on an Incoming Payment that was made on account. I've not been able to find this field in XLR. Does anyone know if its available from insid