Open SCSM Console with arguments

Hi,
I'm trying to find a way to open SCSM Console with arguments.
I will explain it with an example: we have a tool which keep a track of all incidents that have been escalated to our managers. If a manager is responding on an escalation via email, it would be great, that we can add a link in the mail which immediately
opens up the concerning incident.
I can however not find the option to open a specific incident from a program other then SCSM console.
This should be possible for normal end users who are using SCSM console day-by-day.
Kind regards.

Hello Marat,
Thanks for the answer, this is indeed a good starting point. However:
You can only search for Requests (incidents) where you are the affected user. The person who wants to consult the incident, is not always the affected user. In the SCSM Console, you can search for any incident, and even if you are not the affected user,
you can still read the ticket, and that is what I want to achieve.
That is why I asked if it was possible to open the Service Manager Console with arguments. Like for example: I want to open Internet Explorer and navigate directly to
http://www.bing.com/ I can execute this command on my PC: "C:\Program Files\Internet Explorer\iexplore.exe"
http://www.bing.com/
Or when I want to open a remote desktop connection to a specific server I can run: mstsc /v <servername> /f
Is it possible to do a command like this: "C:\Program Files\Microsoft System Center 2012\Service Manager\Microsoft.EnterpriseManagement.ServiceManager.UI.Console.exe" /s 93035d8c-f810-b6c6-f117-604d9f002ef3  ? Or with other arguments, which
can trigger the search option like you see it every screen of the SCSM console on the upper righthandsite ? Maybe without the GUID and only using the name of incident (IR654650) ?
Thanks for helping me out.

Similar Messages

  • Not able to open Admin console with other Administrator account other than "system"

    I am trying to create new users and add them to "Administrator" and "Administrators"
    so that they can access Admin console. I tried open up "http://localhost:7001/console"
    and entered in this new id and password, but it did not allow me in. At the same
    time if i enter "system" and "password" i was able to logon successfully.
    Can some one please let me know what i am missing here? Do i have to update any
    "Realm" files? And changes have to be made any other location?
    My idea is to have 3 people in different sub teams to access console and not use
    "system" user account.
    Please let me know if you need any more information.
    Thanks

    I've tried this in 6.1 and it doesn't seem to work. Is there a special
    configuration issue. essentially, I want to create a user name dev1 that has
    administrative privileges to start and stop selected servers within a
    domain.
    "Mihir Kulkarni" <[email protected]> wrote in message
    news:[email protected]..
    | An issue has been filed with engineering on this.
    | This feature is available in WLS 61, though!
    | mihir
    |
    | Kiran Meda wrote:
    |
    | > I am trying to create new users and add them to "Administrator" and
    "Administrators"
    | > so that they can access Admin console. I tried open up
    "http://localhost:7001/console"
    | > and entered in this new id and password, but it did not allow me in. At
    the same
    | > time if i enter "system" and "password" i was able to logon
    successfully.
    | >
    | > Can some one please let me know what i am missing here? Do i have to
    update any
    | > "Realm" files? And changes have to be made any other location?
    | >
    | > My idea is to have 3 people in different sub teams to access console and
    not use
    | > "system" user account.
    | >
    | > Please let me know if you need any more information.
    | >
    | > Thanks
    |

  • Start an application from console with arguments

    Why do I get an ArrayIndexOutOfBoundsException when I try to start the application with
    > java Application 12345
    public static void main(String[] args)
              String host = args[0];
              String port = args[1];
              if(port.length() == 0)          
                   port = "500";
              System.out.println(host+"\n"+port);
         }

    I have modified the main method and here it is. My problem is described below the code.
    public static void main(String[] args) throws IOException
         String host;
         int port;
              if(args.length == 0)
                   host = "address.to.server";
                   port = 1000;
              else if(args.length == 1)
                   host = args[0];
                   port = 1000;
              else
                   host = args[0];
                   try
                        port = Integer.parseInt(args[1]);
                   catch (NumberFormatException ioe){ port = 1000; }
              try
                   new Client(host, port);
              catch (ConnectException ce){ System.out.println(ce.getMessage()+" "+host+" "+port); }
              catch (NullPointerException npe){ System.out.println(npe.getMessage()+" "+host+" "+port); }
    }If I try to start the program through
    > java Clientthe connection is set up to host = "address.to.server";      port = 1000; and the program works.
    If I try to start the program through
    > java Client localhostI get Connection refused: connect localhost 1000
    If I try to start the proram through
    > java Client localhost 1000I get Connection refused: connect localhost 1000
    If I connect to a host that doesn´t exist, like
    > java Client localho 1000I get null localho 1000
    I have no Idea what´s wrong.
    Please, help!

  • Can't Copy text unless console is opened before applet with JTextField

    If an applet uses JTextFields, it is impossible to copy text from the console to the clipboard (or anywhere else) if the console is opened after the applet.
    See http://demo.capmon.dk/~pvm/nocopy/nocopy.html for a working applet with source and class file to try it out on...
    So if something bad has happened, and there are hints in the console e.g. a stack trace, it all has to be retyped by hand, since all Copy or export is impossible...
    Does anyone know of a workaround for this? I'd like to be able to e.g. copy stack traces to bug reports.
    Try these test cases:
    * Close all browser windows. Open a browser and visit this page. After the page with this applet has loaded, then open the console with "Tools/Sun Java Console" (or "Tools/Web Development/Java Console" in Mozilla). Select some text in the console. There is no way to put this text on the clipboard; the "Copy" button doesn't work, and neither does CTRL+Insert, CTRL+C or anything else.
    * Close all browser windows. Open a browser window no some non-java page and then open the console with "Tools/Sun Java Console" (or "Tools/Web Development/Java Console" in Mozilla). Then visit this page. Select some text in the console. Now the "Copy" button does work, enabling "export" of e.g. stack traces to other applicaitons e.g. email.
    The difference is which is opened first: The console or the applet. If you look at the very rudimentary Java source code, it is the mere creation of a JTextField is what disables or breaks the Copy functionality.
    I've tried this on Windows XP with IE 6.0 and Mozilla 1.3 and they behave exactly the same. The JVM is Sun's 1.4.2 and I've tried 1.4.1_02 also with the same behavior. I've also tried javac from both 1.4.2 and 1.4.1_01

    hey .. this seems like a bug.. can you please file a bug at
    http://java.sun.com/webapps/bugreport
    thanks...

  • SCSM Console Hang with WebEx Connect

    I have reviewed all the questions found at this location and although similar setups it looks that there are no resolves.  Here is the setup:  SCSM 2012 sp2 using console and works like a champ.  Installed WebEx Connect and now my SCSM console
    hangs when trying to open incidents.  Once I remove the webex connect IM client, SCSM console resumes to normal ops and responses.
    All the workarounds say rdp to another workstation, etc and is not a resolve.  Interesting enough both applications play nice with all other apps and work great independently so its hard to decipher which one is the root cause.  My theory is that
    they somehow share a dll.  Once this is identified, we can actually get coexistence of these two applications.  They are mainline apps so I'm perplexed at why either vendors have addressed this issue.  It appears to have been going on for the
    past year as researched so why isn't anyone doing anything.
    Do I have to write a bug request to connect.microsoft.com and then to webex and do their work for them?
    Nick

    Hi Nick,
    Did you put in a request on connect for this? Is this issue resolved for you?
    My Blog | www.buchatech.com | www.systemcenterportal.com
    If you found this post helpful, please give it a "Helpful" vote. If it answered your question, remember to mark it as an "Answer". This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion
    in a test environment before implementing!

  • Opening a console window with NetBeans?

    I'm curious if anyone knows a solution on opening a console window when executing within a Netbeans project? I searched the help docs and the web and I have not come across much luck. The source code I have requires it and it just looks horrible in the output window Netbeans provides. Any help would be appreciated.

    I think this is it...
    http://wiki.netbeans.org/wiki/view/CLIProjectInConsoleWindow

  • How to run jar files with arguments?

    Hi everybody,
    Is it possible to run a jar file with arguments passed to its MAIN class?
    If yes can you help me on how to do it?
    Thanx

    I am in complete agreement with FahleE. I'll refine it a bit.
    On my machine (running RedHatLinux8.0) you can run the demos like this.
    1. open a console window
    2. go to the directory where the demo you wish to run, say, demo.jar, is located
    for instance for the SwingSet2-demo
    cd /usr/lib/java/demo/jfc/SwingSet2
    3. run the jar file
    java -jar demo.jar
    In order to run it windows style, ie, launching by double clicking, save these lines in a file called
    LaunchJar.sh
    cd /usr/lib/java/demo/jfc/SwingSet2
    java -jar demo.jar
    where demo.jar is the jar file you want to run.
    Right click on the LaunchJar.sh and go to the 'Properties' tab. Check the 'Execute' permissions for Owner/groups/others. You can also do the same thing by chmod command.
    Now double-click on the LaunchJar.sh file: your application should be launched.
    Palash.
    Please Note: It is important to set the path variable to your JAVA_HOME directory....
    Otherwise, instead of
    java -jar demo.jar, you will need to use the full path to your JAVA_HOME/bin directory like:
    JAVA_HOME/bin /java -jar demo.jar.
    Where JAVA_HOME is the directory where you have installed java. Typically it is usr/java or usr/local/java

  • Error when opening BPEL Console:No domains accessible to the user logged in

    Hi,
    I have upgraded the SOA SUITE from 10.1.3.1 to 10.1.3.4 by applying the patch. Before applying the patch, I run the scripts to upgrade the database for both ESB and BPEL. After applying the patch I made the change in <ORACLE_HOME>\j2ee\oc4j_soa\configdata-sources.xml file for the BPELPM_CONNECTION_POOL parameter. But when I am opening BPEL Console it is showing the error like “No domains accessible to the user logged in". And in the log file I am getting the error like
    ORABPEL-03003
    Incorrect db schema version.
    The database schema version "2.0.4" from the database does not match the version "10.1.3.4.0" expected by the server.
    The database schema currently in place has probably been configured for a previous release; please re-install the database schema and try to start the server again.
    Does anybody knows how to fix this problem?
    Thanks,
    Anju

    Hello,
    I had the same problem and reconfiguring the datasources.xml was the solution. Because the installer replace its values with all wrong values. For example: using polite driver instead OracleDriver, 1522 instead 1521, user and password.
    That solved my problem, maybe you must check all parameters of the datasources.xml and restart the server.

  • Unable to open b2b console after SOA 11.1.1.6 installation

    Hi Gurus,
    I had installed oracle SOA 11.1.1.6.0 successfully but i am unable to open b2b console after the installation.
    Now
    1)With Oracle installation can i able to open b2b console?
    2)If not,Should i install oracle b2b soft also?
    if yes,I can see the soft in 3 CDs (CD 1 of 1 ,CD 1 of 2 and CD 1 of 3)is it sufficient to install CD 1 of 1 so that others will also get install)
    after the installation can i able to open b2b console?
    please clarify?
    Regards
    Ramesh

    Hi Anju,
    Thanks for the help.
    Can you send me some blog to guide me step by step to build Oracle b2b SOA application.
    Please clarify:Do i need to install B2B document editor soft(CD 1of 1,CD 1 of 2,CD 1 of 3) or Installation of CD 1 of 1 is sufficient for b2b document editor.
    Is B2B server is different from SOA server?If at all i need to deploy some doc in server,Can i deploy in SOA server using document editor?
    Can i have some clarity on 1.How to install b2b doc in server?
    Can i have a step by step sample to run a simple b2b application?
    Regards
    Ramesh

  • How to open jsx file with 'do javascript'?

    I am making a folder action to run an Illustrator script on a file.  I am struggling with how to make Illustrator run a jsx file from within applescript.  The default action seems to be to evaluate the string as javascript, not open the path as a jsx file.  Thanks!

    Im not having any issues are you passing a string or file as alias specifier? This worked with CS2 and basic test…
    set JavaFile to choose file without invisibles
    tell application "Adobe Illustrator"
    set Doc_Ref to current document
    tell Doc_Ref
    do javascript JavaFile
    end tell
    end tell
    the java snippet…
    #target illustrator
    alert('Hello');
    And also this option with arguments…
    set JavaFile to choose file without invisibles
    tell application "Adobe Illustrator"
    set Doc_Ref to current document
    tell Doc_Ref
    do javascript JavaFile with arguments ¬
    {"Muppet", "Mark"} show debugger on runtime error
    end tell
    end tell
    using snippet…
    #target illustrator
    alert('Hello ' + arguments[0]);
    alert('Hello ' + arguments[1]);

  • Directory Console with user accounts.

    Hellos,
    Is it possible for me to create an "admin" user with just add/modify/update rights in a specific subtree but can view ALL attributes on Edit.
    I have tried using Access Permissions. I can set the user and rights and subtree OK.
    My problem is that when I open the Console and login as my user...
    I can only see 2 tabs.. Servers/Applications and Users/Groups.
    When I seach Users I can only see the 3 action buttons: Edit Delete Create
    Edit only allows me to edit certain common attributes...
    How do I get the Advanced Edit features which shows ALL attributes a user has, e.g. lastmodified title etc etc...
    Any hints accepted. I have trawled the manuals.
    Is advanced edit (or generic editor) only a "true" administrator user (Directory Manager) feature?

    I think I have solved my own problem - On the user accounts page there is a link to "change the way user accounts log on or off". When I clicked on this I got a message saying settings could not be changed because of an offline page setting. When I changed this setting, I was able to select the types of user switching, and my other user accounts became available.

  • How to use VMRC SDK to open VM console

    Hi,
    I'm looking for some help to setup a custom solution that opens a console of a VM from a corporate intranet site. I'm new to the whole VMWare SDK world, but I've been able to easily use vCloud Suite SDK for .NET to expose some details on my User Interface. So far so good, but when it comes to VMRC plugin honestly it is totally unclear how to use it.
    My need is just to show a button that opens a new web page with the console on it. In our infrastructure we're using vCloud Director 5.5.2.2233543
    According to VMWare developer center, I downloaded VMware Remote Console (VMRC) SDK (version 5.5.0.1280474), linked from the main page, that comes with VMRC plugin installers and a directory where I can found vmrc-embed-example.html and vmrc-embed-example.js files. The first weird thing I've noticed is that the vmrc plugin installer included in SDK is different from the one shipped by our installed vCloud Director application. The first is named "VMware Remote Console Plug-in 5.5.0.33581", the latter "VMware Client Support Plug-in 5.5.0.41167". It looks like the first is an old version, but I cannot be sure about that of course, and I can't find a newer sdk on the other hand.
    I payed attention to test the html page included in vmrc sdk with both plugins anyway (one at a time), just to try to understand. In both cases, running html page on the web browser and providing some data to use, I can connect succesfully to a VM, obtaining the following messages:
    starting VMRC instance: modes: 0, messages: 1
    startup returned "vmrc-np-t-{55D63FD3-925B-47C7-B96B-74659A57498E}"
    connect succeeded
    onConnectionStateChange - connectionState: 2, host: 172.18.x.y, datacenter: , vmId: vm-401, userRequested: true, reason: Connection successful.
    That's all: from the messages it seems that it's working, but the box that should show the console remains white and nothing else happens. Any action on the other form's button results in error messages, among them the most recurrent is "Error calling method on NPObject!", that is the same message that pops up when trying to connect to a VM with no parameter or without pressing the startup button.
    I really need some advice, any hint is appreciated, thanks in advance.

    After you've made a connection you should try setting the plugin to full screen mode by calling setFullScreen(true). I was receiving a black box in the middle of the screen until I had started setting to fullscreen. As far as the "Error calling method on NPObject", when I've had this message it was due to the fact the plugin was not ready for some reason, for example connecting to a vm and then immediately calling grapInput would result in this message. I was able to resolve by checking the plugin was ready (and in scope of the callee).

  • Please help this: JNLP association extensions confict with arguments

    Hello, Please help this:
    I use <argument> tag to transfer some parameters to JWS application.
    I also use <associatio> tag to associate a specila file(such as .zzz) to JNLP. But when I doulbe click .zzz file, my application only get "-open" and file path as argument, those parameters in <argument> tag in my jnlp are lost!
    What should I do

    ..Is this a bug for JWS? No.
    ..association extensions tag conflicts with <argument>?Quoting the 'JNLP Specification', section 3
    'JNLP file', part 5 'Descriptor Information', under
    association element/mime-type attribute
    "An application making such a request
    should be prepared to have its main
    method invoked with the arguments
    -open filename and -print filename
    instead of any arguments listed with
    the application-desc element."

  • Execute launch external program with arguments on Windows Mobile

    Hy, i try to *run an external application with arguments* from my MIDlet on Windows ME :
    microedition.platform     intent JTE
    microedition.configuration     CLDC-1.1
    microedition.profiles     MIDP-2.0
    String urlToLaunch = "/Program Files/MyProgram/MyProgram.exe";
    String arguments = "arg1 arg2 arg3";
    String urlToLaunchArgs = urlToLaunch = urlToLaunch+" "+arguments;
    platformRequest(urlToLaunchArgs);The PDA return : Can't open file '/Program Files/MyProgram/MyProgram.exe arg1 arg2 arg3'
    With no argument (urlToLaunchArgs = "/Program Files/MyProgram/MyProgram.exe") it's work fine.
    With arguments (urlToLaunchArgs = "/Program Files/MyProgram/MyProgram.exe arg1 arg2") it doesn't work...
    If somebody have a solution to propose...
    ... or another way/method to explain...
    Thank you.

    > SAPService<SID> and <SID>ADM both have Administrator rights for the server.
    > That means they should have full access.
    No - this is no more true like that since Windows 2008, it's a bit more complex:
    http://en.wikipedia.org/wiki/User_Account_Control
    > Where would you setup the permission/policy to "interact with the desktop"?
    Add the policy using group policy editor (gpedit.msc)
    Markus

  • Unable to open AV console on the windows.

    Hi All ,
    I have a windows 8 laptop on which i have created a Virtual Box image of the Audit vault. After Installation I am not able to open the console to completed the setup.
    I am also able to ping between both system.
    Am i Missing any steps ?
    pls find attached the details
    System
    ip address : 192.168.1.74
    Gateway 192.168.1.254
    Subnet    : 255.255.254.0
    AV
    ip Address 192.168.1.50
    Gateway 192.168.1.254
    Subnet    : 255.255.254.0

    1. How many VirtualBox interfaces do you have in your laptop?
    On my laptop I have one and on desktop -- two with different IPs: one with static IP and second with dhcp. You should specify correct one.
    2. Are you able to ping VirtualBox Host-Only Network IP? Let say 192.168.56.1.
    3. Check your laptop configuration:
    ipconfig /all
    This is my
    Ethernet adapter VirtualBox Host-Only Network:
      Connection-specific DNS Suffix  . :
      Description . . . . . . . . . . . : VirtualBox Host-Only Ethernet Adapter
      Physical Address. . . . . . . . . : 08-00-27-00-0C-49
      DHCP Enabled. . . . . . . . . . . : No
      Autoconfiguration Enabled . . . . : Yes
      IPv4 Address. . . . . . . . . . . : 192.168.56.1(Preferred)
      Subnet Mask . . . . . . . . . . . : 255.255.0.0
      Default Gateway . . . . . . . . . :
      NetBIOS over Tcpip. . . . . . . . : Disabled
    Ethernet adapter VirtualBox Host-Only Network 4.0:
      Connection-specific DNS Suffix  . :
      Description . . . . . . . . . . . : VirtualBox Host-Only Ethernet Adapter #2
      Physical Address. . . . . . . . . : 08-00-27-00-48-87
      DHCP Enabled. . . . . . . . . . . : No
      Autoconfiguration Enabled . . . . : Yes
      IPv4 Address. . . . . . . . . . . : 192.168.4.1(Preferred)
      Subnet Mask . . . . . . . . . . . : 255.255.255.0
      Default Gateway . . . . . . . . . :
      NetBIOS over Tcpip. . . . . . . . : Disabled
    4. Configure appropriate your VirtualBox Host-Only Network in VB:
    File -- Preferences -- Network
    Select Host-only networks. You should have names from the list above: VirtualBox Host-Only Ethernet Adapter, VirtualBox Host-Only Ethernet Adapter #2
    Double click adapter
    Check IP
    5. Check your laptop configuration after:
    ipconfig /all
    The result:

Maybe you are looking for

  • Service base IV flag need to be set for SRM PO u2013 SRM 7.0 Extended classic

    Hello We are on  SRM 7.0  Extended classic scenario -  business have following requirement  with Service PO Invoice need to be posted with reference to conformation (SES) u2013 While creating a service PO  when user maintain  GR required  flag ,  u20

  • Audio recorded too high - can I change

    I'm doing a slideshow for my daughter's cheer banquet & found that some of the video clips that I am using is at high levels and you can hear a high pitched sound - can I get rid of the high pitched sound (kinda like a stereo that is played too loud

  • Workflow not found error message

    Hi all, While creating P.O ,we are getting error message that workflow not found for some Product categories. However, its working fine for some other product categories. Any suggestion please. Points will be awarded for any usefull infromation. Thnx

  • VPN Password Required for Each Connection

    Prior to installing 10.5.6, when I accessed my VPN the password was automatically sent. Now I am required to type it in for each connection, although my setup remains the same as it was. Can someone tell me how to do this automatically?? Thanks

  • How do I set the size of the font so that it does not change from site to site or page to page?

    The font size happens when I visit a new site or move from page to page in any given site. I want to have the same size font at all times with out having to manually change it all the time.