Blocks in scripts

Hi
i got some variables declared in my script just like
*^GLOBAL TEXT_BOX BLOCK *                 
*^FIELD T166K_TXNAM *                         
PROTECT                                     
*@TEXT_BOX *                              
ENDPROTECT                                  
^undefine global:TEXT_BOX   
         what dothese symbols mean???
Regards
Nanda

what does this ^ symbol  mean and how they arecallinga particular block using this symbol

Similar Messages

  • Obiee 11g blocking.js script

    Hi ,
    I am trying to implement blocking.js script for my analysis.
    and below is the code for claimsblocking.js script.
    I have placed the script in ..OracleBIPresentationServicesComponent\coreapplication_obips1\analyticsRes folder
    function validateAnalysisCriteria(analysisXml)
    // create a new validator
    var tValidator = new CriteriaValidator(analysisXml);
      // logic is applied to the subject area only
    if (tValidator.getSubjectArea() == “Claims”)
      // Column must exists
    if (!tValidator.filterExists(“Provision”,”Provision Claim Relationship”) )
    return “Each Report should filter on Provision Claim Relationship”;
    //We come here if everything checks out
    return true;
    and modified the script answerstemplates in coreapplication_obips1\analyticsRes\customMessages
    and bounce the services from Enterprise manager.
    No clue on where things went wrong.

    This script is used to restrict obiee users to add a filter (for example Provision”,”Provision Claim Relationship) every time they execute their answer.
    If a user doesn't add a filter,  a message should populate  "please filter on the column..." , so that the user filters on the column.
    I hope this answers your question.
    Thanks.

  • Muse,Page items slow to load - eliminate render blocking java script?

    Everything was running smooth until I tried to cut and past new items into master pages. Now I have master page items loading out of sequence and very slowly at that. I went to google's page speed insites and I scored a 72% with a reccomendation to "Eliminate render blocking java script in above fold content" as well as "leverage browser caching"
    Well... I have no idea what that means
    any idea how I can improve the performance of my page? I've already compressed the images significantly, I don't think that's the problem. Google talks about expirey dates on cache items being too low or non existant causing delays on pages, and setting priority over viewable items. Can I do this in Muse?
    you can view the site here
    http://batco.businesscatalyst.com

    I've actually been having the same problem - the interesting thing is that I've only really noticed it in the past several weeks (before, everything loaded fine). Could there have been a change in Muse in the way it's loading scripts that is slowing it down?
    Examples:
    www.karlchristiankrumpholz.com
    www.pawdnerscolorado.com
    On the second site, I can't remember if I crunched the images, but on the first one, I used Image Optimizer to crunch down all of the pngs prior to publishing. For reference, I'm publishing both sites via Business Catalyst; one using a free CC account, and one using a paid eCommerce account.
    I ran it through Google PageSpeed, and here's what I get:
    Eliminate Render-Blocking JavaScript and CSS in above-the-fold Content
    Your page has 1 blocking script resources and 5 blocking CSS resources. This causes a delay in rendering your page.
    None of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.
    Remove render-blocking JavaScript:http://webfonts.creativecloud.com/bebas-neue:n4:all.js
    Optimize CSS Delivery of the following:
    http://www.karlchristiankrumpholz.com/StyleSheets/ModuleStyleSheets.css
    http://www.karlchristiankrumpholz.com/css/site_global.css?4210242644
    http://www.karlchristiankrumpholz.com/css/master_desktop-master.css?4254541493
    http://www.karlchristiankrumpholz.com/css/index.css?3941979157
    http://webfonts.creativecloud.com/c/c3d3d5/bebas-neue:n4.TGd:N:1/d
    Leverage Browser Caching
    Setting an expiry date or a maximum age in the HTTP headers for static resources instructs the browser to load previously downloaded resources from local disk rather than over the network.
    Interestingly, image size doesn't appear to be as much of an issue, according to PageSpeed:
    Properly formatting and compressing images can save many bytes of data.
    Optimize the following images to reduce their size by 30.3KiB (13% reduction).
    Losslessly compressing http://www.karlchristiankrumpholz.com/images/headerbackground.png could save 19.1KiB (22% reduction).
    Losslessly compressing http://www.karlchristiankrumpholz.com/images/laurel.png could save 4.9KiB (29% reduction).
    Losslessly compressing http://www.karlchristiankrumpholz.com/images/rebel_%402x.png could save 4.6KiB (7% reduction).
    Losslessly compressing http://www.karlchristiankrumpholz.com/images/karlheader2-u1353.png could save 1,019B (2% reduction).
    Losslessly compressing http://www.karlchristiankrumpholz.com/images/arrowmenudown.gif could save 707B (84% reduction).

  • FILE번호/BLOCK번호와 DBA 사이의 변환 SCRIPT

    제품 : ORACLE SERVER
    작성날짜 : 1999-02-24
    File 번호/Block 번호와 DBA 사이의 변환 script
    block dump나 block corruption 등의 해결을 위해 file 번호와
    block 번호를 DBA로 변환하거나 그 반대의 경우가 필요한 경우가 종종 있다.
    여기에서는 이를 수행하기 위한 간단한 script를 제공한다.
    아래의 script를 각각 별도의 file로 save한 후 file을 실행하여
    procedure를 생성시킨 후 usage에 적힌대로 수행하면 된다.
    usage 내의 procedure의 input 값은 단지 예이므로 실제 사용 시에는
    적당한 값을 사용하도록 한다.
    (주의)여기에서 dba값은 십진수이므로, 0x로 시작하는 값은 십진수로 변환한 후
    작업하여야 한다.
    1. DBA를 이용하여 file#, block# 를 찾아내는 procedure
    rem *************************************************************
    rem * *
    rem * usage : 1. procedure 생성 *
    rem * 2. SQL> set serveroutput on *
    rem * 3. SQL> exec dba_to_file(123456789) *
    rem * *
    rem *************************************************************
    create or replace procedure dba_to_file(in_dba number) is
    file_num integer;
    block_num integer;
    begin
    file_num := dbms_utility.data_block_address_file(in_dba);
    block_num := dbms_utility.data_block_address_block(in_dba);
    dbms_output.put_line('--------------------------------');
    dbms_output.put_line('File number => '|| file_num);
    dbms_output.put_line('Block number => '|| block_num);
    dbms_output.put_line('--------------------------------');
    dbms_output.put_line('Good luck to you');
    end;
    2. file#, block#를 가지고 DBA를 계산해 내는 procedure
    rem ************************************************************
    rem * *
    rem * usage : 1. procedure 생성 *
    rem * 2. SQL>set serveroutput on *
    rem * 3. SQL>exec file_to_dba(10, 100) *
    rem * *
    rem ************************************************************
    create or replace procedure file_to_dba(file_num number,
    block_num number) is
    dba number;
    begin
    dba := dbms_utility.make_data_block_address(file_num, block_num);
    dbms_output.put_line('--------------------------------');
    dbms_output.put_line('DBA => '|| dba);
    dbms_output.put_line('--------------------------------');
    end;
    3. file#, block#를 이용하여 해당 object를 알아내기 위한 script
    select owner, segment_name, segment_type, blocks, block_id
    from dba_extents
    where file_id = &file_number and
    &block between block_id and (block_id + (blocks - 1));

  • Firefox has crashed numerous times on me tonight, and I keep getting an unresponsive script error (Script: chrome://devany/content/main.js:254) regardless of what website I'm on. NoScript will not block this script, and it's popping up with an increasing

    Firefox has crashed numerous times on me tonight, and I keep getting an unresponsive script error (Script: chrome://devany/content/main.js:254) regardless of what website I'm on. NoScript will not block this script, and it's popping up with an increasing and alarming frequency. It's completely crippled my Firefox, and getting the a large enough window between unresponsive script warnings to get the Troubleshooting Information from Firefox took me a good 20 minutes. It's a very persistent script. I've already re-installed Firefox and restarted my computer, and scanned for viruses/malware. I'm on a Mac, if it makes a difference.
    == This happened ==
    Every time Firefox opened
    == Tonight. I can't say what site I was on, though I first noticed it on DeviantArt and thought it was their new layout producing problems. ==
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    yay, I had this same issue, and I too browsed deviantArt and also have got Deviantanywhere add-on installed. : D
    I'm so glad that You've found a solution and shared it with us.
    I was really getting worried that I'd done something to get malware installed on my 'puter. *Phew* !!
    I'm going to disable DeviantAnywhere after I post this and hopefully this will be fixed for me too!
    I actually hadn't kept my firefox up to date. but.. *shh...*
    I updated it and after I did, it told me that there was a script running that was not responding. : )
    yay for FireFox~
    ~QuinsY.

  • What could block a script, when there's nothing wrong with it?

    Hello, again
    I've just wasted some hours trying to get a script to execute. It threw an error saying that the 'object wasn't valid' I decided to give up, wen't home, and later at home started up again to see if I could sort it out.
    It executed well on the first run.
    Same computer. No changes to the script. ESTK was set to InDesign 5, I checked it a million times.
    What could cause this to happen? Caches overflowing? "Blocks" between InDesign and ESTK?
    The script isn't callng for any URIs or such.
    Here's the bit I was having trouble with:
    app.activeDocument.groups.everyItem().ungroup();    
    app.activeDocument.layers.everyItem().locked = false;
    app.activeDocument.pageItems.everyItem().locked = false;
    MoveTextFrame();
    function MoveTextFrame() {
        var doc = app.activeDocument;
        var stories = doc.stories;
        var STYLE = doc.paragraphStyles.item("Some Style");
        for (var i = stories.length-1; i >= 0; i--) {
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 1) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([38.8, 15, 48.249, 130]);  
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 2) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([9.2, 15, 18.6, 130]);               
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 3 && app.activeDocument.documentPreferences.facingPages == true) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([9.2,225, 18.6, 340]);
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 3 && app.activeDocument.documentPreferences.facingPages == false) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([9.2,15, 18.6, 130]);
            if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 4) stories[i].paragraphs[0].parentTextFrames[0].move([15,9.2]);

    Thanks for taking your time Harbs.
    Sorry to say, once I escape the ungroup-line, it still won't run. Says line " if (stories[i].appliedParagraphStyle == STYLE && stories[i].paragraphs[0].parentTextFrames[0].parentPage.name == 1) stories[i].paragraphs[0].parentTextFrames[0].geometricBounds = ([38.8, 15, 48.249, 130]);"
    ..is wrong and that 'null is not an object'.

  • Does Forefront Endpoint Protection 2010 block powershell scripts from running?

    Hi all,
    I have a task that runs a Powershell script on a set schedule on a particular machine.  It has failed to run and I thought 1 of the potential reasons would be that FEP 2010 blocks the Powershell script from being run.  Does FEP 2010 do that?  If so, where can I find the setting to allow Powershell scripts (or VB scripts or Java scripts) to be run by my task?
    Thanks for your help in advance.
    Howard Lee - Microsoft

    If the script detect as malicious , FEP will block it, otherwise it won't block normal and safe PowerShell scripts. You may take a look at event viewer and see whether it being blocked or detect as malicious code by FEP or not.

  • How can I turn off Mixed Content Blocking via script for an enterprise?

    Users in our enterprise (2,000+ clients) have to manually allow an MCB exception when using an in-house application every time we use it. I have exported the registry, made the change to mixed content blocking active content in about:config, and then re-exported the registry and have been unable to find any changes in the registry. Therefore, I am out of ideas as to how to deploy a package from Configuration Manager (Microsoft's enterprise client management) to disable this feature so people can work unhindered by Firefox.
    Currently we are getting around this by telling our users to NOT use Firefox. This will be a make or break for this browser in our environment.

    Preferences are stored in the ''prefs.js'' file under the user's profile folder. Barring any third-party tools, the registry doesn't have anything to do with it.
    * [[Profiles - Where Firefox stores your bookmarks, passwords and other user data]]
    You can modify preferences for a Firefox installation, which would affect all users running that copy. The preference you'll want to modify is ''security.mixed_content.block_active_content'' (set to '''true''' by default).
    * http://kb.mozillazine.org/Locking_preferences

  • Google maps blocking all other scripts

    I have googlemaps API in two places on my site:
    1) In my webapp - display search results on map
    2) In the detail layout of my webapp as a simple static map
    I get these messages in the console when trying to execute other functions:
    1) Blocked script execution in 'https://www.google.com/maps/embed/v1/place?q=32.826128,-96.7712&key=MY_API_KEY' because the document's frame is sandboxed and the 'allow-scripts' permission is not set.
    2) Blocked script execution in 'http://MY_WEBSITE_DOMAIN' because the document's frame is sandboxed and the 'allow-scripts' permission is not set.
    The problem is Google is not only blocking my scripts but business catalyst module scripts which is causing some very strange behavior. 
    I never put these maps into a frame, I simply dropped the module tag into my page. So there is no way to change the sandbox permission.
    Can someone please help me with a solution, because I have absolutely no idea what is going on!

    I had this problem, I checked my add-ons one by one as suggested and it was the Avast online security add-on slowing me down on Google. Disabled it and FF works ok.
    No idea why the avast add-on would do that? Still using the full version of avast but not the add-on.

  • Robohelp 10 -Solution -IE- Active X blocking script

    Currently we are using robohelp10 for generating webhelp documents. We purchased that too.. Now we are facing following issues,
        1. Active x is blocking our script in IE- Please suggest us some solution to unblock that programmatically .
        2. Google Chrome is not supported.
        3.Content layout remains empty in generated output.
    Please suggest us solution as soon as possible. Its very urgent.
    Thank You,
    Suganya
    Message was edited by Peter Grainge to remove email address. Never include an email address on any forum, unless you want spam!

    I have removed your email address for the reason now stated in your post.
    Also the idea is that answers are posted here so that others may benefit.
    Just to add to the replies, add the Mark of the Web setting in your settings when you generate the help. Alternatively, use an HTML5 layout.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • VBscript and Process Responding to flag a script exit?

    Hey All
    I work for a small game company called The Good Mood Creators and I am trying to build a software kit that can be handed to someone, and with minimal effort on their part. Copy the folder to their PC, plug in an xbox controller, click the BEGIN.*** and play
    while our testing tools and streaming software have a chance to successfully start.
    FYI I do not program for our game..
    The tool I am including with this kit is a controller emulator (XBCE) that allows us to print controller input directly to the screen.
    I am using Open Broadcasting Software to stream gameplay to a private twitch channel via a simple batch called in this vb.
    My problem is that XBCE often hangs, and with some computers requires reinstalling .NET frameworks as well as the full directx distribution before updating again to get it to start. When it works however, XBCE will hang once started 1/10 times or so, then
    randomly a few times in a row. I don't want the remote playtester to start recording video before the tools are started. So I wrote a script that checks to see if the program is running a short time after its been started.
    <job>
    <script language="VBScript">
    Option Explicit
    On Error GoTo 0
    Dim os
    Dim wmi
    Dim procs
    set os=CreateObject("WScript.Shell")
    set wmi = GetObject ("winmgmts:")
    os.CurrentDirectory = "C:\Users\Public\TESTPC-remote\"
    os.run "XBCE.exe"
    While True
        Set procs = wmi.ExecQuery("select * from Win32_Process Where Name = 'XBCE.exe'")
        If procs.Count > 0 Then
            Wscript.echo "Initiate Good Mood?"        
            os.run "DATA\Mekazoo.exe"
            WScript.Sleep 1000
            os.run "DATA\obsSTART.bat"
            WScript.Sleep 1000
            WScript.Quit
        Else
            WScript.Echo "Good Mood Initialization Had Failed! Please Close All Running Applications And Try Again"
            WScript.Quit
        End If
    Wend
    </script>
    </job>
    But when its hung and not responding to the task manager, the process XBCE.exe is still getting listed in Win32 Processes. The script believes all is good and initializes the stream, but XBCE wont show up on the recording because it has crashed and windows
    is waiting for me to wait or close.
    I have searched but to no avail have I found a way to check if the task manager thinks if XBCE is hung, then proceed to quit the script. That's all I really need. If its not hung proceed, if it's hung quit. Can someone please help?
    Edit
    I have updated the code above to reflect my current progress with this question and so you dont have to dig through my terrible formatting.

    I have a few questions that I haven't got the vocabulary to figure out I guess.
    -Is there anyway to automate changing the execution policy?
    I tried sending powershell two commands from a ps1. Set-ExecutionPolicy Restricted and Set-ExecutionPolicy Unrestricted. Obviously it blocks the script from running to change from restricted. So I either needed a way through the problem or around it. I could
    ask the person playtesting to Win+R powershell.exe and type Set-ExecutionPolicy to Unrestricted and then include a line in the script to change it back once everything has started. The problem with this is the user having to change the executionpolicy
    every time they try to play, and the biggest reason I dont like this is that the user has to mess with powershell at all. That was my way around the problem.
    My way through the problem was to find a way to bypass the execution policy. I tried running a few lines of code I picked up here in cmd as a batch file and a javascript file. The line I ran was:
    http://stackoverflow.com/questions/9271681/how-to-run-powershell-script-even-if-set-executionpolicy-is-banned
    powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -WindowStyle Hidden -File <C:\Users\Public\TESTPC-remote\switchrun.ps1>
    Batch through cmd gave me bad syntax, JS basically said the same thing and suggested adding semicolons to fix the problems.
    -What is the script syntax to start a diagnostic process and then check to see if its true?
    I can not figure out how to write the script to both start XBCE as a diagnostic process and then immediately after see if its responding. I can send the command to start but powershell doesnt move to the next line.
    $p=[System.Diagnostics.Process]::Start('C:\Users\Public\TESTPC-remote\XBCE.exe')
    While $p.Responding = True
    Invoke and start both cause powershell to stop..
    -Can I use this command and chain the start commands together?
    While writing the script I have now I thought about the possibility of running a program, check to see if responding equals true as a case to start the next program, or else stop the previous process and close the session. Here's my gibberish with that:
    $p=[System.Diagnostics.Process]::Start('C:\Users\Public\TESTPC-remote\XBCE.exe')
    While $p.Responding = True
    $p=[System.Diagnostics.Process]::Start('C:\Users\Public\TESTPC-remote\Mekazoo.exe')
    Else Stop-Process ('XBCE.exe')
    Exit-PSSession
    While $p.Responding = True
    $p=[System.Diagnostics.Process]::Start('C:\Users\Public\TESTPC-remote\OBS.exe')
    Else Stop-Process ('Mekazoo.exe', 'XBCE.exe')
    Exit-PSSession
    I have more questions but honestly with how many people have viewed my question vs answered it's clear I'm just an idiot and need to read more.. but Ill keep posting.
    Youneed to drop back andlearn a bit more about how software based systems wotj and how progrmming systems work.
    THe code you posted cannot funciton because it makes no technical sense.
    We cannot answer every little questionfor you. You need to spend time learning the basics and ask quesitons when a real issue confuses you.
    You cannot use a non-existent variable in a loop test becase it wil always evaluate to false and the loop will never execute.  This si programming 101.
    Execution policy IS automated via Group Policy. Please as you domain admmisn or Netowrk Admmin to explain the to you. 
    Your original question has been answered.  If you have another issue please open a new topic.
    ¯\_(ツ)_/¯

  • Missing from "Tools"- "Photoshop"-& all Scripts!

    When I select "Tools"->"Photoshop" and image processor and all scripts etc are missing. Not greyed out but completly gone!! Any suggestions?
    I am running CS@ on OSX10.4.6 I have reinstalled etc...
    Cheers Patrick

    Hi Patrick,
    This forum is for BridgeScripting and I'm not sure from the information you give that this is the correct forum for you.
    That being said let me offer the following.
    Make sure you have downloaded and installed all of the current updates. In Bridge click Help > Updates then download and install any available updates.
    Can you recall any changes that were done between the last good run and the now missing menu condition? Things like creating your own or modifying one of the existing Adobe Java Scripts.
    It would also be helpful to know if "Script Manager" is present under the Bridge menu (it will be the item right above Preferences).
    If this is not present then one of the startup scripts has encountered a problem and is blocking other scripts from loading.
    Cheers,
    O'Neal

  • Calling powershell script from a batch file

    Hello All,
    I have a batch script that calls a powershell script. Before calling the script I set the execution policy to unrestricted, but when it gets to the line that calls the batch script i still get the confirmation in the command window: "Do you want to
    perform this operation" I then have to press Y for the PS script to run and then my batch script finishes.
    Does anyone know the setting I need to change in order to suppress the confirmation?
    Note: this is Windows 8, see code below
    set THIS_DIR=%~dp0
    powershell Set-ExecutionPolicy unrestricted
    powershell %THIS_DIR%MyScript.ps1 "param1"

    I may sound like a jerk but you really want to look at PowerShell.exe /?
    PowerShell[.exe] [-PSConsoleFile <file> | -Version <version>]
        [-NoLogo] [-NoExit] [-Sta] [-Mta] [-NoProfile] [-NonInteractive]
        [-InputFormat {Text | XML}] [-OutputFormat {Text | XML}]
        [-WindowStyle <style>] [-EncodedCommand <Base64EncodedCommand>]
        [-File <filePath> <args>] [-ExecutionPolicy <ExecutionPolicy>]
        [-Command { - | <script-block> [-args <arg-array>]
                      | <string> [<CommandParameters>] } ]
    PowerShell[.exe] -Help | -? | /?
    -PSConsoleFile
        Loads the specified Windows PowerShell console file. To create a console
        file, use Export-Console in Windows PowerShell.
    -Version
        Starts the specified version of Windows PowerShell.
        Enter a version number with the parameter, such as "-version 2.0".
    -NoLogo
        Hides the copyright banner at startup.
    -NoExit
        Does not exit after running startup commands.
    -Sta
        Starts the shell using a single-threaded apartment.
        Single-threaded apartment (STA) is the default.
    -Mta
        Start the shell using a multithreaded apartment.
    -NoProfile
        Does not load the Windows PowerShell profile.
    -NonInteractive
        Does not present an interactive prompt to the user.
    -InputFormat
        Describes the format of data sent to Windows PowerShell. Valid values are
        "Text" (text strings) or "XML" (serialized CLIXML format).
    -OutputFormat
        Determines how output from Windows PowerShell is formatted. Valid values
        are "Text" (text strings) or "XML" (serialized CLIXML format).
    -WindowStyle
        Sets the window style to Normal, Minimized, Maximized or Hidden.
    -EncodedCommand
        Accepts a base-64-encoded string version of a command. Use this parameter
        to submit commands to Windows PowerShell that require complex quotation
        marks or curly braces.
    -File
        Runs the specified script in the local scope ("dot-sourced"), so that the
        functions and variables that the script creates are available in the
        current session. Enter the script file path and any parameters.
        File must be the last parameter in the command, because all characters
        typed after the File parameter name are interpreted
        as the script file path followed by the script parameters.
    -ExecutionPolicy
        Sets the default execution policy for the current session and saves it
        in the $env:PSExecutionPolicyPreference environment variable.
        This parameter does not change the Windows PowerShell execution policy
        that is set in the registry.
    -Command
        Executes the specified commands (and any parameters) as though they were
        typed at the Windows PowerShell command prompt, and then exits, unless
        NoExit is specified. The value of Command can be "-", a string. or a
        script block.
        If the value of Command is "-", the command text is read from standard
        input.
        If the value of Command is a script block, the script block must be enclosed
        in braces ({}). You can specify a script block only when running PowerShell.exe
        in Windows PowerShell. The results of the script block are returned to the
        parent shell as deserialized XML objects, not live objects.
        If the value of Command is a string, Command must be the last parameter
        in the command , because any characters typed after the command are
        interpreted as the command arguments.
        To write a string that runs a Windows PowerShell command, use the format:
            "& {<command>}"
        where the quotation marks indicate a string and the invoke operator (&)
        causes the command to be executed.
    -Help, -?, /?
        Shows this message. If you are typing a PowerShell.exe command in Windows
        PowerShell, prepend the command parameters with a hyphen (-), not a forward
        slash (/). You can use either a hyphen or forward slash in Cmd.exe.
    Hope that helps! Jason

  • Can we include the customize results in the Open Script Result Summary

    hi all
    can we include the customize results in the Open Script Result Summary if we include what is the code.
    customize result i mean
    Scenario: i am checking the concurrent job is completed successfully or not
    result:Concurrent Job Completed Successfully
    i am want to see the above result in the Open Script Result Summary can anybody help me on this.

    You want to launch a concurrent program, right? And to check the result, right?
    Is that for a functional test script or a load test script?
    Let's say it's functional. You have basically 2 options:
    * Do it separately. You create a scenario which launches the program and you write the RequestID in a file, then you create a second script which read the file and then go to the concurrent processing dashboard and search for the RequestID and check the status. You have to desynchronize the 2 scripts. Launch the first one. And then, later on, launch the 2nd one when you are sure the program is finish.
    * You do it in one single script and you wait til you get the status. See the code below I've written for a customer (for a POC);
    This is not the best option in my opinion because you don't know how long you need to wait and therefore you block other scripts execution... But the customer wanted it like this.
                   do {
                        delay(5000);
                        forms
                                  .textField(
                                            "//forms:textField[(@name='JOBS_PHASE_0')]")
                                  .storeAttribute("Batch_Phase", "text");
                        info("Phase du traitement: {{Batch_Phase}}");
                        forms
                                  .button(56,
                                            "//forms:button[(@name='JOBS_REFRESH_0')]")
                                  .click();
                   } while ((eval("{{Batch_Phase}}").equals("Running")));
    But wait, after having written all the stuff above, maybe you just want to check the toolbar status, is that correct?
    Normally, OpenScript automatically insert a "status bar test".
    Then I guess there's a default time-out (30 or 60 sec I think), you can maybe change to adapt.
    Well, looping could also be an option as i describe above.
    Let me know
    JB

  • Script Error report when trying to "Find Album Info" for music in Windows Media Player

    When I click on "Find Album Info" in Windows Media Player, it finds the correct media info. But when I click "Finish" after verifying everything is correct, it says "An error has occurred on this script page" and asks if I want to continue. I click
    yes, it goes back to the last page of finding album info, I again click "Finish" to find the same "Script error" page?

    Sir, that means the Windows Firewall Blocked the Script So try these steps hope it works for you :
    1.) - Open the "Start Menu".
    2.) - Go to the "Control Panel".
    3.) - Double click "Security Center".
    4.) - Click "Windows Firewall" in the top left.
    5.) - Click "Change settings".
    6.) - Click "Continue".
    7.) - Click the "Exceptions" tab.
    8.) - Scroll down and check all of the "Windows Media Player" options.
    Regards,
    MCP | MCTS | MCITP

Maybe you are looking for