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)

Similar Messages

  • 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

  • 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

  • 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

  • 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

  • Error with Run Program Service in invoke runbook.

    I made main runbook (it do some things) and on the end i pute invoke runbook. In this child runbook i have
    Run Program activities with Java srcipt. 
    When started this rb finaly i get error Could
    not start Orchestrator Run Program Service service on 10.56.7.17 - Access is denied. (code 5), 
    but when manually i run this child runbook with any chaneges and this same date it works well. 
    In this Run Program i set that it ryn from admin acount but that don't nothing changes. 
    Where is problem?

    When you run it manually (with Runbook tester I assume) the Runbook will use
    your admin credentials to perform all of the actions. When it runs scheduled or with an invoke from somewhere else it will use the credentials of the user account you've assigned to the Runbook service.
    As a test, check which user is assigned to the service (via services.msc) and make that one a temporary local admin on the target machine. If it works, then you know it's permissions related to that specific account.
    I give up ;), Yes, I testing by Runbook tester. But not shure that we understand :)
    I  have two scenarios (i can't put images, i need to verify my account).
    1) One runbook. Exp. name" child. Inside is Run Program, that program is on different server.
    Its work only when in options this activity i set local admin account from that server.
    2). I created new runbook - parent. In this I put invoke runbook linked to that child. I do not change anything else. Now i will try run it (from tester, web console or scheduled) i get error
    Could not start Orchestrator Run Program Service service on 10.56.7.17 - Access is denied. (code 5). 
    What I do wrong, what I think wrong?

  • Problems with running programs after upgrade

    I have tried to look for a solution elsewhere, but was not lucky to get it. My problem is that I have upgraded my Macbook pro from Tiger to Snow Leopard. Unfortunatelly when I try to start certain programs I get error message that Version of the software I want to run can not be run on installed Mac OS. For example error says that I want to run Safari version 3.0.4. However, I have upgraded all software and I know that Safari 4.0.3 was installed. I also get a similar error for Disk Utility, ICal and some others. I also can not start Quicktime. Icon just jump once and nothing happens further. Other programs work fine. Could someone please help me with that?

    HI and Welcome to Apple Discussions...
    Applications that ran on Tiger may not be compatible with Snow Leopard. You've gone from 10.4 to 10.6.
    The most recent version of Safari is 4.0.5. Go to the Apple Menu/Software Updates. If you are running Safari 4.0.3, then the updater should download and install the 4.0.5 update for you.
    You may need to install QuickTime7 from your SL disc.
    Insert the Snow Leopard install disk. Open the Optional Installs folder, then open Optional Installs.mpkg. An Installer will start... click Continue. When you get to the Installation Type in the window on the right you will see: Applications. Click the Disclosure triangle so it faces down. Select QT 7 then click Continue.
    Then repair disk permissions...
    Quit any open applications/programs. Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Good read here regarding upgrading to Snow Leopard by; "a brody"...
    http://discussions.apple.com/thread.jspa?messageID=10180165#10180165
    You may want boot from the SL disc and run Disk Utility from there to verify the startup disk for errors.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    *(Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)*
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your start up disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. *Make sure there is always 10% to 15% free disk space*
    Carolyn
    Message was edited by: Carolyn Samit

  • Problems with running programs

    Hi,
    I have written a program and have no problem to compile it. But when I try to run it by typing:
    java filename ,
    I get an error message saying: "Exception in Thread "main" java.lang.NoClassDefFoundError: Filename.."
    Whats my problem??
    Thanks

    Hi there,
    I believe it's a problem with your CLASSPATH settings.
    You can either set ur CLASSPATH in ur Autoexec.bat file by typing the following:
    SET CLASSPATH=.;%CLASSPATH%
    where,
    1. "." refers to the current directory your compiled class files are found (i.e. the default directory that your class file will be generated when you compile ur .java file)
    2. %CLASSPATH% appends whatever you have already set in ur CLASSPATH settings before, to the current one you be setting, i.e. "." - the current directory.
    However, to save urself from all these hassle, you may want to try executing the following command:
    java -cp . filename
    replace "filename" with the filename of ur .class file.
    It should work.
    Cheers
    PTC

  • Is it ever "not safe" to close the lid with running programs?

    I'm new to Apple (and loving it) but have a basic question about closing the lid.  Is it safe to close the lid (entering sleep mode) when I am running a bunch of programs.  Or should I shut down programs before closing the lid?

    It depends on the nature of the applications. I certainly would not sleep a computer in the process of installing a program or performing an update. Sleeping a computer in the middle of a download or file transfer tends toward unintended negative consequences. This would also apply when in the middle of a backup.
    The general rule I suppose is don't interrupt the performance of apps which are adding or changing files. Some do better than others at resuming the process after waking.

  • Help with running programs that require admin rights to laptop

    We are not able to run java, flash, or shockwave on our laptops unless we
    log into the workstation first as an administrator. Is there a way to fix
    this so that the students do not have to log onto the workstation first as
    administrator?
    Thanks,
    Kathy

    Originally Posted by Kathy
    We are not able to run java, flash, or shockwave on our laptops unless we
    log into the workstation first as an administrator. Is there a way to fix
    this so that the students do not have to log onto the workstation first as
    administrator?
    Thanks,
    Kathy
    Hi Kathy, we have have a product that enables you to remove admin rights on XP/Vista by elevating ActiveX controls, apps, scripts etc Avecto - Eliminate Admin Rights, Implement Least Privilege

  • Running Telnet with automator

    I am a recent Mac convert so excuse me if I am looking in the wrong place.
    I have a networked Tivo and run an executable called 'vserver' in order to run a Mac prog called Tivotool. Currently I enter these commands (from my Windows box - I haven't got to grips with telnet on my Macbook yet):
    telnet 192.168.0.200
    cd /var/hack/bin
    ./vserver
    Can I script this in Automator?
    I am grateful for your help,
    Gary
    Macbook   Mac OS X (10.4.8)  

    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)

  • 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.

  • Architecture/Engineering Student - can a MBP cope with the programs I need?

    I'm thinking of buying a MBP(r?) for Uni as my old Vaio is struggling to cope. I study structural engineering and architecture, and so will need it to be able to cope with running programs such as Vectorworks, AutoCAD, MATLAB, Photoshop, Illustrator etc. Obviously portability is a neccessity, but I don't whether to go for the MBPr 13" and upgrade (is it necessary?) or the normal 15"? I can't really afford the MBPr 15" so will the other to be able to cope?
    Also will the graphics card in the 13" be good enough?
    Thank you.

    Blue Plum, you need to sift the information you are getting very carefully.  The PC and Mac are not the same, they may use the same components in the sense that they both use cpus, gpus, memory, mass storage, internet intervase cards, but that is as far as it goes.  The cpus are NOT the same.  The Mac uses much higher end cpus in all of their equipment than any entry level PC.  When Apple announced it would switch to the Intel cpu seven years ago the president of Intel said at the press conference that Intel was looking forward to a close relationship with Apple developing advanced processors.  The Intel processors used by Apple ever since have been much higher grade than normally available.
    Three years ago I had to buy a Dell PC laptop for supposed compatibility with my office network.  That machine was half the price of a MacBook Pro...but, when I priced raising the CPU, graphics, network interface card, memory, and hard drive to be equal to the MBP, the cost of the Dell was actually greater than the MBP.  Yes they both use cpus, etc., but they are NOT the same no matter what anyone might tell you.
    The MBP runs very well off an external hard drive...I run my MBP booting to either the internal drive or an external drive on which I have two different versions of operating systems.  I also have an iMac with which I do the same thing.  Both machines are fast and efficient booting either internal or external.  Makes little difference with the fast ports now available.
    There is also a huge difference in operation between a PC and a Mac...the PC takes between 15 and 30 minutes to startup, scan for viruses, download software upgrades (Windows is upgraded almost daily) and be ready for me to work.  The Mac starts up and is ready in under one minute...not what I call the same.
    Final point, you can boot a Mac using either Mac OS X or Windows...the Mac is happy doing either.  You can NOT boot a PC using Mac OS X...will not work.  So the Mac gives you the option of using native Mac software or native Windows software...an option you do not get going the other way.
    Best regards in making your decision.
    Ralph

  • When I run activity monitor with no programs running my dock shows fluctuating usage...between 4% up to 20%.  Random figures that come and go with corresponding CPU usage.  A little help?

    My activity monitor show random and fluctuating CPU usage at the Dock site with absolutelyno programs running.  %'s fluctuate between 3 - 20 and they pretty much come and go.  What might be causing this?

    There's a lot of background processes running that aren't documented as Apps as such. And some of them are the Time Machine backups, Spotlight searches, all kinds of small little bits of maintenance caches, there's a lot going on. So it's not completely out of the question that this is 'normal' for a Mac. If it were 50% or more I would be concerned but if it spikes up to 20% for a second or two you are probably not in any trouble of any kind.

  • Running Programs with Screen Closed

    I cant figure out how to run programs with my screen closed. For instance, I'm signed on AIM and I close the screen and when I open it back up, I'm no longer signed on AIM. It's very frustrating. Any type of assistance would be greatly appreciated. Also, is there any phone number available that will connect me directly with customer service?

    Unfortunately, unlike PC counterparts, your laptop has 1 function with the laptop on, and screen closed - Sleep.
    Sleep can be reversed with closing the lid as described above, having an EXTERNAL mouse and or keyboard and activating the computer that way.
    It is really designed to run closed when use with a large display - that is what that feature is.
    Unfortunately you either have to keep your lid open, or accept the fact that you won't be on AIM when you close the lid.
    Now please don't get offended with the last part I have to say about AIM:
    I used to hate the fact that when I closed the lid, I was kicked off AIM. I now love it. The reality is that none of us are really all THAT important that signing out of AIM is the end of the world. There's email, and there's the telephone if someone has something emergent, urgent, important, or barely important to tell someone.
    I feel like AIM has dumbed down communication as we know it, creating a world of "acquaintances" and "buddies" instead of "friends".
    Like I said, please take no offense, i just think we all deserve time away from AIM...
    Sorry there aren't any other solutions for you.

Maybe you are looking for

  • BPEL adapter issues??

    Questions below are relative to SOA Suite 10.1.3.3 adapters: 1. In creating a File Read/Write adapter - how can I specify a variable portion of the file name - can XPath expressions be used. I know that in specifing the file name one uses a %---% but

  • RGB or CMYK colour formatting for iPhoto Albums printing.

    Hi. I'm putting my first iPhoto Album together. Info given from Apple about what colour format to use for your photos, says to use RGB. While this is corrcet for digital monitors and screens. Mass printing uses CMYK. Any images supplied to a printers

  • Decimal Value for Percentage distribution on Account Assignement in SES

    Dear Experts, While creating service entry, the qty should be distributed on percentage basis for Account assignment with decimal value. For Example Say Service 100% done but value is 10,000..but there is distribution to different cost center say K,

  • Automatic Process order settllement

    Hi all, Client has a strong requirement of Moving average price for the In house manufacturing materials. We have also shown the SAP note" Disadvantages of having moving avg price for the FG", but not convinced. They have taken a final call to go ahe

  • Defining Maximum Periods in Fiscal Polices.

    Hi everyone! Can You support me with meaning from "Enter the number of fiscal calendar periods that may be open at one time for this fiscal policy company. Reserved for future use" In the user's guide say that, but I don't know if I can open more tha