Script to Transfer to agent

                   Hello Guys I need help! Can anyone shared a script to select to specify agent of Queue to trnasfer calls?
Thanks.

u can  try the  cisco script repository  for uccx ,,, there are some beautiful script with detailed document file .
there is one  BaselineAdvQueue script,,,the  Queue part u can use it,,,or modify to  suit u r requrments.
just give a search for cisco script repository for 7.0.1.
hope this helps

Similar Messages

  • Need script to transfer email content to word document

    Looking for a script to transfer email content into a word document.

    Make sure that you have selected "Web Page, complete" to save the page.

  • Questions on scripts, tables & transfer objects between clients.

    1. In script, how to use the same print program for two different layouts? with procedure.!
    2. Why cant sapscripts be client independent.?
    3. Want to maintain a table in dev server and if i update the data, it should simultanously update in Quality and Production servers. How? please explain in details.
    4. How to transfer object between clients.? explain.
    Points will be promptly rewarded for HELPFULL answers.!

    Hi!
    3. With SE01, you can create a transport request for all table entries.
    SE01 - Create button - Workbench request - Give description and save
    Select the created request and click on Display object list.
    Click on Display - Change button
    Insert line button
    ProgID: R3TR
    Object: TABU
    Object name: Z_YOUR_TABLE
    Double click on the table name
    Insert line
    Key: *
    Save everything
    Release the transport in SE10 transaction and transport with STMS transaction.
    Regards
    Tamá

  • Script uninstall of ZEN agent

    Can someone point me to the correct commands to script a silent, complete removal of the ZENworks management agent?
    Thanks in advance!
    Alan

    Originally Posted by spond
    Zeffan,
    there's an Agent Cleanup tool on download.novell.com/patch/finder - do
    bear in mind that's intended just to clean off enough of the agent to
    allow you to reinstall, it does not remove all files/registry entries
    Thank you, I appreciate it.

  • SIMPLE login script install of zfd4 agent?

    Is there is simpler way of installing the zfd4 agent via a login script when
    I'm not using an intermediate tier or use the application explorer. The
    login script examples I've found onlnie (and information in the Novell docs
    and Novel Press books) seem complex and frought with pitfalls...
    Thanks,
    KB

    > I'm reviewing this TID; I may be able to do this on my own. However, if
    > anyone has an example, working "simple" login script they could post as
    an
    > example, it would be REALLY appreciated....
    >
    > Thanks!
    > KB
    > "KB" <[email protected]> wrote in message
    > news:mHgfg.738$[email protected]..
    > > Forgot to mention - I want to run this in silent mode, and need to
    handle
    > > the issue where someone already has the agent installed...
    > >
    > > Thanks,
    > > KB
    > >
    > > "KB" <[email protected]> wrote in message
    > > news:Dfgfg.703$[email protected]..
    > >> Is there is simpler way of installing the zfd4 agent via a login
    script
    > >> when I'm not using an intermediate tier or use the application
    explorer.
    > >> The login script examples I've found onlnie (and information in the
    > >> Novell docs and Novel Press books) seem complex and frought with
    > >> pitfalls...
    > >>
    > >> Thanks,
    > >> KB
    > >>
    > >
    > >
    >
    >
    Hi,
    your Login Script must be seen like this:
    #z:exist c:\programme\novell\zenworks\nalwin32.exe
    if "%ERRORLEVEL"="0" THEN GOTO NOTHING
    #z:\zfdagent\agent.bat
    NOTHING:
    END
    the agent.bat is a batch File to install the agent in silent mode
    it looks like that:
    msiexec /i z:\zfdagent\zfdagent.msi /qn ADDLOCAL=ALL EDITABLE_MT_ADDRESS=1
    STARTUP_APPWINDOW=1 STARTUP_APPEXPLORER=0 REBOOT=ReallySuppress /l*v %
    WINDIR%\zfdagent.log
    the z:\zfdagent is a subdirectory in the sys:\system\Public where
    zfdagent.msi file exists.
    hier is a link to download exist.exe
    Download: http://www.novell.com/coolsolutions/...oads/exist.zip
    Best regards
    Issam

  • Script uninstall of zenworks agent how ?

    Hi!
    Anyone knows how to uninstall zenworks agent with a script ?

    The uninstall string should be in the registry along with the other programs
    in add/remove programs.
    hklm\software\microsoft\windows\currentversion\uni nstall
    Craig Wilson
    Novell Product Support Forum Sysop
    Master CNE, MCSE 2003, CCNA
    Editor - http://www.ithowto.com
    (Seeking Full-Time Expert? Drop me a note :> )
    <[email protected]> wrote in message
    news:eu6Ef.1563$[email protected]..
    > Hi!
    >
    > Anyone knows how to uninstall zenworks agent with a script ?

  • Power-shell script to install scom agent to multiple servers

    Hi
    we are trying to upgrade/install scom 2012 r2 agents to our windows servers (300+) server via powershell script.
    we are wanting the result to be written to csv file but we are facing difficulty in trying to find the object/value to look at to the put the condition against.
    we found the script that does for ping(below part script) result but we want to capture any failure. is there anything we can use to achieve what we ant to do?
    Thank you in Advance.
    -------------------Sample script--------------------------
    # Ping the computer
        $pingStatus = Get-WmiObject -Class Win32_PingStatus -Filter "Address = '$computer'";
        if($pingStatus.StatusCode -eq 0)
            #If computer is up, write message and launch agent install
    InstallSCOMAgent $Computer
    "Success , $computer." | out-file "D:\output.csv" -Append -NoClobber
    #Write-Host -ForegroundColor Green  "Reply received from $computer.";
        else
            #Else, just write a message indicating computer unreachable 
           "Failed , $computer." | out-file "D:\output.csv" -Append -NoClobber

    Just in case Newbie like me wondering how it can be done
    Here is the code (of course i got the help) simple but does what i want at this stage.  Next I am looking at how I can push the agents in parallel, this script will take fairly long time when trying to push to huge number of servers.
    #Import PowerShell Modules 
    import-module OperationsManager
    #Variables
    $InstallAccount = Get-Credential domainname\username
    $PrimaryMgmtServer = Get-SCOMManagementserver -Name <managementservername>
    #Connect to OpsMgr Management Group
    Start-OperationsManagerClientShell -ManagementServerName: <managementservername> -PersistConnection: $true -Interactive: $true;
    $list = Import-Csv -Path 'D:\temp\serverlist.csv'
    foreach ($entry in $list)
    $computer = $entry.ServerName
        try
        Install-SCOMAgent -Name $computer -PrimaryManagementServer $PrimaryMgmtServer -ActionAccount $InstallAccount -ErrorAction Stop
    #Write Success message into file
    "$computer, Success." | out-file "D:\temp\result.csv" -Append -NoClobber
        Catch
    #just write a failure message into file
            "$computer, Failled." | out-file "D:\temp\result.csv" -Append -NoClobber
    --------------------------End---------------------------------------------------------------------------

  • Script for transfer the file from windows to UNIX machine

    Hi expert
    1. I neeed one script that will transfer the files from windows machine to UNIX machine.
    2. And the data updated in Windows file should also be update in UNIX file.
    3. Please send me the steps how can i schedule this script.
    Thanks in advance
    Regards
    Frnd

    It depends on what you need.
    It's possible to use:
    -winscp
    But that means using a program to drag and drop files. This is most commonly used.
    -setup samba on the unix system (the samba package/software needs to available for your unix)
    This requires some setup on the unix system, and your windows system (connect the unix system and put a share defined on the unix system to a driveletter on your windows system), but lets you easily make a batchfile which copies data from one windows drive to another. A batchfile can be scheduled using 'at'.

  • Apple Script should transfer text into a numbers table.

    Hello together,
    at first i want to appologize my english.
    So at second i want to write an AppleScript, that starts with a display dialoge and ask me some things. Thats not the real problem i have started it so...
    tell application "Numbers"
      activate
              tell document 1
                        tell table 1
                                  set DD1 to display dialog "Adresse" default answer "" buttons {"OK"} default button 1
                                  set Strasse to text returned of DD1
                                  set DD2 to display dialog "Datum" default answer "actal date" buttons {"OK"} default button 1
                                  set Datum to text returned of DD2
                                  set Schilder to display dialog "Gestellt oder abgeholt" buttons {"Gestellt", "Abgeholt"} default button 1
                                  set ButtonReturned to button returned of Schilder
                                  display dialog "Speichern?" buttons {"Abbruch", "Speichern und beenden", "Speichern und neu"} default button 3
                                  if the button returned of the result is "Speichern und neu" then
      -- action for 1st button goes here Repeat
                                  else
      -- action for 2nd button goes here End
                                  end if
                        end tell
              end tell
    end tell
    Now i want that the script tells my current table in numbers the new variables.
    I have no idea how to get this or where i can read something about this theme.
    Thank you for helping.
    Tim

    Using the Cells Inspector, you can pre-format the cells before you input your data. That way you won't be surprised. Leaving the format set on Automatic sometimes leads to unexpected results. If you want your input to remain literally as you typed it, use the Text format. If you want a certain number of decimals to be displayed, select the Number format and set the number of digits to be displayed using the Inspector.
    Jerry

  • Sap-script pdf  transfer

    hi experts,
    how to convert sap-script to PDF format?
    and where we get option to print script directly.
    thanks in advance.

    HI,
    SAP have created a standard program <b>RSTXPDFT4</b> to convert your Sapscripts spools into a PDF format.
    Specify the spool number and you will be able to download the sapscripts spool into your local harddisk.
    It look exactly like what you see during a spool display.
    If you want a Program, look at the below link
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci1121833,00.html
    To print the Script directly, you can give this option in the NACE transaction, there we can give Print Immedialt option ..
    Regards
    Sudheer

  • Script errors using Cisco Agent Desktop - BE

    When pulling a website with java in the integrated browser on the CAD, we get Script Error pop-ups. Normally through IE you can disable debugging and notifications via the Advanced tab but this doesn't replicate to the integrated browser. Is there a fix?

    For this correct JavaScript errors in web page or use external browser. Newer versions of IE by default suppress pop-ups displaying JavaScript errors to the user.
    Refer to the bug: CSCsk02359

  • Script data transfer to form

    I have developed new print program (from scratch) and form ( script).
    In driver program i got the data into final internal table and used open_form,write_form and close_form. I have mentioned all the text elements in the corresponding function modules(write_form).
    In script windows i have included all the text elements correspondingly.
    My question is how to pass the data from final internal table of driver program to script(form). Weather we need to maintain "form name" and "driver program" and output types in NACE transaction code as the whole was developed from scratch and not copied from standard program.
    Pl advice me.
    Regards
    Badari
    <b>would suitably rewarded.</b>

    hi Badari,
    If your script is for a standard transaction like Sales order , Purchase order,Invoice etc, you need to configure output type and attach your driver program and SAPScript name in the NACE transaction.
    If your SAPScript is a standalone one, and not related to any SAP Standard transaction, you can run your driver program using se38 transaction - No need for NACE configuration in that case.
    Hope this helps.
    BR,
    Preema
    *Reward points for helpful answers

  • Script Error - Cisco NAC Agent

    I have no idea why this program stopped working. The attached files shows just exactly what's happening.
    This program originally worked perfectly fine, and i've only recently have had these errors pop up.
    I've also reinstalled, and tried to repair it during the installation process, but these problems still arised.
    Does anyone know how to fix it?

    Hi Kyle,
    I have seen these errors sometimes when a DLL file is missing or not registered properly. Can you run a tool like Process Monitor or Process Explorer from Microsoft Sysinternals and load the agent and when the error messages pop up see if there are any errors in the DLLs the agent is trying to access?
    Also the Microsoft event viewer logs may show some additional information as well.
    Thanks,
    Nate

  • UCCX Scripting to transfer call to service when office closed.

    I am pretty new to scripting and need some assistance.  I have a simple script for UCCX that checks the date and time to determine if the office is open.  I have the script working for when the office is open, which is step one.  Now I have to be able to get the script to make a call to an answering service during closed hours/days.  I am just not sure which action to choose from the menus.  I am guessing that it is one of the Call Contact actions, but not sure.
    Any help would be appreciated!

    netbakter,
    Have you come across an issue when using Call Redirect step? I'm using it to redirect the call to an extension (in an AA like environment). I notice the system marks it as Aborted - com.cisco.app.ApplicationTaskInactiveException in the Aborted and Rejected Call Detail Report when the other party doesn't pick up the call. Is this normal?
    Thanks!
    -JT-

  • Post call survey subflow script after agent hangs up?

    Hi,
    I am trying to have the caller, whom is remaining on the line, sent to a post call survey subflow after the agent hangs up. However, the main script terminates upon the agent hanging up so the subflow script is not being called.
    I have been doing a lot of searching and scratching my head and I'm leading to believe that the On Exception Goto step may work? Although, it seems that this step is intended if the caller hangs up, not the agent. Or does it matter?
    I want the main script to call the subflow script seamlessly without any agent intervention (although this may have to be my last resort). Any insight?
    Thank you so very much.

    Simply stated, what you are trying to do is not possible.  The reason is because when the caller is connected to an Agent, the Contact for that script (--Triggering Contact--) is not active any longer, and therefore you have no control over it.  The caller would have to land on a Trigger a second time, in order for the Contact to become active once more.
    Now, let's talk about what options do exist.
    You can either:
    Have the Agent send the caller to the survey trigger via transfer
    Have the caller call back in to the survey trigger via verbal instructions during the initial IVR
    Have the IVR dial the caller back at a later time to take the survey (could use HTTP triggers or Outbound Campaign)
    This is a limitation of UCCX.  UCCE on the other hand maintains call control the entire time, so when the caller disconnects from the Agent, it can route the caller through another routing script if desred.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

Maybe you are looking for