Scan string for tokens

Can anyone help me out on how to detect a new line using the scan string for tokens function? I am using the "\n" delimiter but it is not working
 

Syntyche wrote:
I opened a text file and display it on string indicator. The following is an example of my text file
START
SETMASS 5
WAIT 5s
SETVELOCITY 10
WAIT 3s
END
So what I want to do is to obtain the string line by line.
I am thinking I can use scan string for tokens with delimeter \n.
So if i put this in while loop, in the first iteration, I would want the ouput to be START
Second iteration: SETMASS 5
Third iteration WAIT 5s. and etc....
In C programming i believe this can be done by using strtok. So i want to have a similar function.
See James' post above, which is what I was hinting at when I said it could be less complicated.  And that's why I asked WHAT you were trying to do, instead of HOW.  In this latest post, you show WHAT you wanted to do, and doing that in the first place would have made the thread a lot shorter. 

Similar Messages

  • VISA and Scan string for tokens

    Hi there,
    I am currently developing a piece of software which needs to take in data from an Arduino board via the serial port and parse the input accordingly.
    I have the 2 pieces of code working perfectly well separately, but I can not seem to figure out why they are not functioning properly together.
    Just now, the input is being retrieved fine and passed into the Scan string for tokens method, but it is not being split on the tokens, it is just outputting the string as a whole.
    The input is in the form of 1:0 2:0 3:1 etc. so I am trying to split it on any spaces found.  If I attach a string to the Scan strings for tokens it works fine, just not when I am attaching the data from the serial port to it.
    Any help would be appreciated.
    Attachments:
    input manipulation.vi ‏16 KB

    Hi,
    In the output which you are getting from the serial port, is there space between 1:0 and 2:0 and 3:1? If there is no space between them, then it wont be able to scan for tokens and will output the whole string. I don't have the hardware here and so don't know what exactly is the output which you are receiving. Try to see in the read buffer indicator whether the tokens are seperated by a space or not.
    I have attached your vi after adding a small part in it. If the problem is with the spacing then this will work fine for 1:0 2:0 3:1.
    Regards,
    Nitzz
    (Give kudos to good Answers , Mark it as a Solution if your problem is Solved) 
    Attachments:
    input manipulation.vi ‏18 KB

  • Is Scan String for Tokens documented correctly?

    I attempted to parse the following string using " as the only delimiter (no operators):
    this "is a test" for "you and me"
    The first call produced: "this " w/o the quotes.
    I expected "is a test" w/o the quotes.
    The documentation says the function will return tokens "surrounded by" delimiters. If this is not a bug, I think the documentation should be improved.
    W. Brown

    Thank you for commenting on the Scan String for Tokens documentation. We will look into this issue and try to make the documentation more clear about how this function works.
    We're constantly striving to improve the documentation, so any specific suggestions you have are welcome. In the future, please send any comments on National Instruments documentation to [email protected] so we can address your concerns in a timely matter.
    Kelly Holmes
    LabVIEW Documentation Team
    Kelly H
    LabVIEW Documentation
    National Instruments

  • "Scan String For Tokens" weird behaviour

    I am trying to carry out the simple task of getting a string with
    comma delimiters and produce a string_array with the values in between
    the commas; this would simplify calling the different parts of the
    string.
    Example:
    INPUT: this,is,an,example
    OUTPUT: this|is|an|example (this would be an array of strings)
    Using a while loop with the two VI "Scan String For Tokens" and
    "Insert to array" should be enough to carry this task. I started
    using a FOR loop as the number of tokens I´ll be using is fixed.
    However I wanted to make the subVI more general by allowing any
    #tokens in the input string and using the token index with a WHILE
    loop to do this. The "token index" output from the "Scan String For
    Tokens" is said to be use
    d in a while loop to process the whole
    string.
    However,I´m getting -1 as an output even if I´ve got more tokens left
    and the while loop therefore exits.
    What am I doing wrong?
    Should I use -2 as the comparison to decide whether I´m at hte end or
    not of the string?
    Cheers and TIA

    Check the offset for -1, not the token index. (See attached image). If course if this is a multiline string, the you also need /n etc as delimiter.
    If the string ends in a delimiter, you need to clip the last array element. I usually use "reshape array" with the output from [n] as input.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    ScanForTokens.gif ‏17 KB

  • Scan string for "returns"

    Hi,
    I have a multi lined string and want to put it as list into a listbox (i
    did it with a for loop and the "i"attached to the line index of the
    "pick line" vi) but now a have let my for loop know how many rounds it
    must do! How can scan a multi lined strings for "number of lines"?
    Regards Thijs

    Thijs,
    Use the "Spreadsheet String to Array" function (in string functions). Wire
    it as follows:
    format string: string constant containing "%s"
    spreadsheet string: your string
    array type: (empty) array string constant
    delimiter: string constant containing enter ("\n" with string in code
    display mode)
    The output "spreadsheet" is an array with strings that can be wired to the
    attribute node of the listbox.
    Important notice: \n is not the same as \r ! If your string comes from a
    ..txt file, this can cause unexpected results!
    Regards,
    Wiebe Walstra.
    AIR technical Automation.
    By the way, Thijs. If your in the Nederlands, maybe you'd like to visit our
    annual LabVIEW meeting, PierVIEW. This also applies to the rest of the
    group. Check out www.air.nl, and follo
    w PierVIEW 2001.
    AIR technical Automation
    www.air.nl
    "Thijs Boeree" wrote in message
    news:[email protected]..
    Hi,
    I have a multi lined string and want to put it as list into a listbox (i
    did it with a for loop and the "i"attached to the line index of the
    "pick line" vi) but now a have let my for loop know how many rounds it
    must do! How can scan a multi lined strings for "number of lines"?
    Regards Thijs

  • Scan string for computer user name

    Good morning NI Forums,
    I need direction on a file path scan. I'm trying to get to the user name on any system, primarily XP or 7. I'd like to compare the user name from the "Get System Directory" VI with a constant user name.This way I can pass that to a case structure and close LabVIEW if the computer is logged into the wrong user (there are network read/write permissions which is why I need to control where the program isrun from). Any suggestions for the format string constant or maybe a better mouse trap?
    I've attached my VI for reference.
    Thanks!
    Tyler C. | Certified LabVIEW Associate Developer
    Solved!
    Go to Solution.
    Attachments:
    Check Computer Name.vi ‏12 KB

    I don't have LV2011.
    Have you seen this Knowledgebase article?
    Programmatically Retrieving a Windows User Name in LabVIEW
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Scanning string for uppercase letters

    Hey guys just a simple question that i'm stuck on. im working on a program and i need to scan a string to see if it has uppercase letters. the only thing i know about that even seems helpful is isUppercase but im not sure how i'd use it. i'm basically generating a sentence form categories which are in uppercase and need to expand the sentence as long as there are categories left. id appreciate any help! Thanks!

         String  ts = "i Have a capital";
         boolean hc = false;
         for (int i=0; i < ts.length(); i++)
              if (Character.isUpperCase(ts.charAt(i)))
                   hc = true;
                   break;
         System.out.println(""+hc);

  • Scan String Token Problem with leading Tokens

    Hi, I'm using the scan string for token to read in a string of tokens that contain a leading "*" char in front of each string and terminates when the token index = -2. This works great if I have say *12345*1234 and so forth, but if there is bad data, say 1234 without the leading "*" in front, the token index return value is still -1 and it returns data which I read in thinking it found the "*". Maybe I shouldn't use the string for token function since it's probably just designed for ending tokens and not data with leading tokens. Is there a way to make this work properly or should I use another method to search for leading tokens in a string?
    Thanks.
    Solved!
    Go to Solution.

    Here.  Try this one.  It does the same thing and uses exposed functions.
    The string functions look for something to mark the end of a string.  All languages that I know of do this.  So, like I said, remove the first element.  I recommend the Subarray function with the index set to 1 and length unwired.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Parse Message.png ‏10 KB

  • String of letters to 1-D Array of strings for spreadsheet

    What I would like to do is be able to take this string as it is the A's and B's that are being generated as the program runs,
    I would like to take this string and get it into file in delimited tabs just as the numbers are. If there is a created 1-D array of
    strings that works, but that is controlled on the front panel, I would like to create this from data that is comming in. In other words
    I am stuck on how to create a 1-D array of Sting from the string value comming in. I want to do this so that I can get all the different
    values A's or B's into the different tab fields. As it is they are comming all up in the first column and not "tabbing" Please see the
    attached file in the rows 5 an
    d 7.
    Thanks,
    Brian
    Attachments:
    Array_of_strings_to_spreadsheet2.vi ‏28 KB
    Turn_data1.xls ‏1 KB

    Brian
    You need to convert your string to contain single tabs as separator. The problem is that your string is "dirty", i.e. it contains a variable amount of spaces to seperate the items. If you strictly had single space separators, you could just replace all spaces with tabs.
    "Scan string for tokens" by default does not allow empty tokens, thus takes care of the multiple spaces.
    The attached simplified code assumes a fixed number of items (12), if this is a variable, you need to use a while loop and sense the end of the input string. Let me know if this is clear.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    StringToArrayofstringsToSpreadsheetstring.vi ‏21 KB

  • Labview novice with a question about scanning strings

    Hello, I'm a research assistant tasked with taking data received via TCP-IP and plotting it. I've had a couple of problems, probably because I've never used Labview before.
    The data is sent in sets of six values separated using semicolons as delimiters, for example
    "0.086842;0.00020341;0.00039838;-0.14057;-0.12614;​-0.1327;" is one such data set
    Receiving these strings through TCP connection is working just fine, however I just noticed that after passing a string such as my example into a 'Scan String for Tokens' block, the negative signs are dropped from the latter three values. I assumed it has something with setting '-' as an operator, but simply wiring negative sign in as an operator didn't change anything. I know there has to be a way to retain my negative signs, but I can't figure it.

    Is this what you need?
    Attachments:
    SNAG-002.jpg ‏91 KB
    SNAG-003.jpg ‏20 KB

  • JAXB unmarshalling error for " " token as part of xsd:string type element

    JAXB unmarshalling error for "<" token as part of xsd:string type element
    We are getting a JAXB unmarshalling error:
    while processing the following <condition> tag which is of type xsd:string
    <condition> x < 100 </condition>
    The error is probably happening due to "<" token as a part of string type.
    xml.bind.JAXBException: Unexpected error in Unmarshalling
    at oracle.xml.jaxb.JaxbUnmarshaller.unmarshal(JaxbUnmarshaller.java:224)
    Any ideas how to resolve this issue?
    Note
    <condition> x > 100 </condition> is getting unmarshalled successfully by JAXB unmarshaller.
    Thanks

    Hi,
    Did you tried to put & lt; (without space) instead of < ?
    Best Regards,
    Paweł

  • Using Strings and tokens . . .

    Hello,
    I was wondering if anyone could help me out with this problem(s). I'm designing a java program that (when a statement is typed in by a user) (1) tells you if it's a sentence, question, or exclamation, (2) it gives you the total amount of words in the statement, (3) tells you the longest word in the statement, (4)and also outputs the number of words that contain 1-3 characters. So far, i've been able to figure out how to do (1) and (2), but I'm really stuck on (3) and (4). Could someone please take a look at my program and tell me what I'm doing wrong. Thanks, Ana : )
    // ProgramTwo.java Author: Ana
    // Program Two. Demonstrates the use of strings and tokens.
    import java.util.Scanner;
    import java.io.*;
    import java.util.StringTokenizer;
    public class ProgramTwo
    // Prints a string and various mutations of it.
    public static void main (String[] args)
    Scanner scan = new Scanner (System.in);
    System.out.print("Enter a statement >");
    String myString = scan.nextLine();
    String oneWord;
    if (myString.endsWith("!"))
    System.out.println("Your statement ends with an exclamation.");
    else
    if (myString.endsWith("."))
    System.out.println("Your statement is a sentence.");
    else
    System.out.println("Your statement is a question.");
    StringTokenizer st = new StringTokenizer(myString);
    System.out.println("There are " + st.countTokens() +
                   " word(s) in your statement.");
    st = new StringTokenizer(myString);
    while (st.hasMoreTokens())
    oneWord = st.nextToken();
    if (oneWord.length() <= 3)
    System.out.println(oneWord); //supposed to determine the number of words that contain up to three
    //characters
    String longestWord = "";
    while (st.hasMoreTokens())
    String w = st.nextToken();
    if (w.length() > longestWord.length())
    longestWord = w;
    System.out.print(longestWord); // It's supposed to determine the longest word in the statement
    }

    Hey Guys,
    I just wanted to thank all of you who responded to my message. With your help, I was able to figure out a bunch of other stuff. ChuckBing, I replaced some parts like you said and it worked like a charm! KPSeal, you brought up a good point, I doubled checked with my instructor and he said it was Ok for me to leave that part as is. Lutha, thanks for your input. I was just wondering, is Python similar to Java? I've never heard of it before, then again I've never heard of Java until a couple of months ago : ) Anyways, thanks again!! Ana : )
    By the way, here's how my program came out.
    // ProgramTwo.java Author: Ana
    // Program Two. Demonstrates the use of strings and tokens.
    import java.util.Scanner;
    import java.io.*;
    import java.util.StringTokenizer;
    public class ProgramTwo
    // Prints and groups various word types and amounts.
    public static void main (String[] args)
    Scanner scan = new Scanner (System.in);
    System.out.print("Enter a statement >");
    String myString = scan.nextLine();
    String oneWord;
    if (myString.endsWith("!"))
    System.out.println("Your statement ends with an exclamation.");
    else
    if (myString.endsWith("."))
    System.out.println("Your statement is a sentence.");
    else
    System.out.println("Your statement is a question.");
    StringTokenizer st = new StringTokenizer(myString);
    System.out.println("There are " + st.countTokens() +
                   " word(s) in your statement.");
    int shortWordCount = 0;
    int medWordCount = 0;
    int longWordCount = 0;
    String longestWord = "";
    String shortestWord = "";
    while (st.hasMoreTokens())
    oneWord = st.nextToken();
    if (oneWord.length() <= 3)
    shortWordCount++;
    if (oneWord.length() >= 4 && (oneWord.length() <= 6))
    medWordCount++;
    if (oneWord.length() >= 7)
    longWordCount++;
    if (oneWord.length() > longestWord.length())
    longestWord = oneWord;
    if (oneWord.length() < shortestWord.length())
    shortestWord = oneWord;
    System.out.println("The shortest word is " + shortestWord + ".");
    System.out.println("The longest word is " + longestWord + ".");
    System.out.println("There are " + shortWordCount + " short words.");
    System.out.println("There are " + medWordCount + " medium words.");
    System.out.println("There are " + longWordCount + " long words.");

  • Install error "unable to locate folder for token UserDocuments"

    I'm trying to install a trial of CS5.5 Design Premium and I keep getting this error. I've been working on it for the past two days and I can't find anything useful on the kb or forums.
    Installer said on exit: (full install log below)
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 62 error(s), 53 warning(s)
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    ERROR: Unable to locate folder for token UserDocuments.
    ERROR: Unable to locate folder for token UserDocuments.
    ERROR: Unable to locate folder for token UserDocuments.
    ERROR: Unable to locate folder for token UserDocuments.
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe WinSoft Linguistics Plugin CS5: Install failed
    ERROR:  - Adobe CSXS Infrastructure CS5: Install failed
    ERROR:  - SiteCatalyst NetAverages: Install failed
    ERROR:  - Adobe Photoshop CS5 Support: Install failed
    ERROR:  - Adobe Bridge CS5: Install failed
    ERROR:  - HIL Help Search: Install failed
    ERROR:  - AdobeHelp: Install failed
    ERROR:  - Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack: Install failed
    ERROR:  - Suite Shared Configuration CS5: Install failed
    ERROR:  - Photoshop Camera Raw: Install failed
    ERROR:  - AdobeColorCommonSetCMYK: Install failed
    ERROR:  - DeviceCentral_DeviceCentral3LP-en_US: Install failed
    ERROR:  - Camera Profiles Installer: Install failed
    ERROR:  - Adobe Mini Bridge CS5: Install failed
    ERROR:  - Adobe Player for Embedding: Install failed
    ERROR:  - Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack: Install failed
    ERROR:  - Adobe SING CS5: Install failed
    ERROR:  - Adobe SwitchBoard 2.0: Install failed
    ERROR:  - AdobeColorJA CS5: Install failed
    ERROR:  - Adobe ExtendScript Toolkit CS5: Install failed
    ERROR:  - Adobe BrowserLab CS Live: Install failed
    ERROR:  - CSXS Story Extension: Install failed
    ERROR:  - Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_US: Install failed
    ERROR:  - Adobe Photoshop CS5 English Language Pack_AdobePhotoshop12-en_US: Install failed
    ERROR:  - Adobe XMP Panels CS5: Install failed
    ERROR:  - Adobe Illustrator CS5: Failed due to Language Pack installation failure
    ERROR:  - DeviceCentral: Failed due to Language Pack installation failure
    ERROR:  - AdobeColorEU CS5: Install failed
    ERROR:  - AdobeTypeSupport CS5: Install failed
    ERROR:  - AdobeColorVideoProfilesCS CS5: Install failed
    ERROR:  - Adobe Fireworks CS5: Failed due to Language Pack installation failure
    ERROR:  - AdobeColorCommonSetRGB: Install failed
    ERROR:  - Adobe Utilities CS5: Install failed
    ERROR:  - Adobe Photoshop CS5 Core: Failed due to Language Pack installation failure
    ERROR:  - Adobe CSXS Extensions CS5: Install failed
    ERROR:  - Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_US: Install failed
    ERROR:  - Adobe Toolhints CS5: Install failed
    ERROR:  - AdobeOutputModule: Install failed
    ERROR:  - Adobe InDesign CS5 Application Feature Set Files: Install failed
    ERROR:  - Adobe InDesign CS5 Application Base Files2: Install failed
    ERROR:  - Adobe InDesign CS5 Application Base Files: Failed due to Language Pack installation failure
    ERROR:  - PDF Settings CS5: Install failed
    ERROR:  - Adobe Linguistics CS5: Install failed
    ERROR:  - Adobe InDesign CS5 Common Base Files: Install failed
    ERROR:  - DynamiclinkSupport: Install failed
    ERROR:  - Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack: Install failed
    ERROR:  - AdobePDFL CS5: Install failed
    ERROR:  - AdobeCMaps CS5: Install failed
    ERROR:  - Required Common Fonts Installation: Install failed
    ERROR:  - Creative Suite 5 Design Premium: Install failed
    ERROR:  - AdobeColorNA CS5: Install failed
    ERROR:  - AdobeColorPhotoshop CS5: Install failed
    ERROR:  - Adobe Buzzword CS5: Install failed
    ERROR:  - Adobe Dreamweaver CS5: Failed due to Language Pack installation failure
    ERROR:  - Recommended Common Fonts Installation: Install failed
    ERROR:  - Adobe Extension Manager CS5: Install failed
    ERROR:  - Adobe ReviewPanel CS5: Install failed
    Full installation log:
    [       0] Mon Sep 19 00:06:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 4.0.50.0
    OSX version: 10.7.1 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming install mode
    ::START TIMER:: [Bootstrap]
    Perform Bootstrapping ...
    :: END TIMER :: [Bootstrap] took 12421 milliseconds (12.421 seconds) DTR = 6347.96 KBPS (6.19918 MBPS)
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 1401 milliseconds (1.401 seconds) DTR = 23763 KBPS (23.2061 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium
    Updating media info for: {007A2A28-D6A8-4D91-9A2B-568FF8052215}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeWinSoftLinguisticsPluginAll/AdobeWinSoftLinguisticsPluginAll.dmg
    Updating media info for: {02731921-5711-4E7A-A898-D6BCF0F2A1CD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCSXSInfrastructure2-mul/AdobeCSXSInfrastructure2-mul.dmg
    Updating media info for: {03EEF3DA-71F9-4FE5-92AD-D10142E26459}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/SiteCatalystNetAverages1-mul/SiteCatalystNetAverages1-mul.dmg
    Updating media info for: {042F50EC-2C9E-43D8-B3D7-2BB204A20E44}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeIllustrator15en_GBLanguagePack/AdobeIllustrator15en_GBLanguagePack. dmg
    Updating media info for: {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePhotoshop12-Support/AdobePhotoshop12-Support.dmg
    Updating media info for: {0D067D13-C3D7-4EA6-B346-740CD91FD547}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeBridge4-mul/AdobeBridge4-mul.dmg
    Updating media info for: {14A2CC02-4638-405D-8190-ECD7BFD32D6E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFlash11-en_USLanguagePack/AdobeFlash11-en_USLanguagePack.dmg
    Updating media info for: {1EC2407F-6A7B-4A3C-9F46-C812EE3D44FD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/HIL_Help_Search/HIL_Help_Search.dmg
    Updating media info for: {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeMobileExtension_Flash11-en_US/AdobeMobileExtension_Flash11-en_US.dm g
    Updating media info for: {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFireworks11en_GBLanguagePack/AdobeFireworks11en_GBLanguagePack.dmg
    Updating media info for: {298CF0B0-8B47-46DF-B726-8E4BFAD5432E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeHelp/InstallAdobeHelp
    Updating media info for: {2C8C0585-5083-4032-94B8-A9AD04ED0716}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeAIR1.5.3-mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Updating media info for: {2D5B4A04-0A9F-4FB9-862A-C49400325A90}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDreamweaver11en_USLanguagePack/AdobeDreamweaver11en_USLanguagePack. dmg
    Updating media info for: {30221E3E-4C47-4560-A296-DD9ABB500C21}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AIR2_Flash11-mul/AIR2_Flash11-mul.dmg
    Updating media info for: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeSuiteSharedConfiguration-mul/AdobeSuiteSharedConfiguration-mul.dmg
    Updating media info for: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCameraRaw6.0All/AdobeCameraRaw6.0All.dmg
    Updating media info for: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorCommonSetCMYK3-mul/AdobeColorCommonSetCMYK3-mul.dmg
    Updating media info for: {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/DeviceCentral3LP-en_US/DeviceCentral3LP-en_US.dmg
    Updating media info for: {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCameraRawProfile6.0All/AdobeCameraRawProfile6.0All.dmg
    Updating media info for: {41372141-B568-4B5A-80DD-649980B825AC}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/DeviceCentral3LP-en_GB/DeviceCentral3LP-en_GB.dmg
    Updating media info for: {4438C826-1FD0-4D04-A70B-24FE1580AB21}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeMiniBridge1-mul/AdobeMiniBridge1-mul.dmg
    Updating media info for: {44EAE408-3960-11DF-ACCC-D8A62C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7CommonLang-en_GB/AdobeInDesign7CommonLang-en_GB.dmg
    Updating media info for: {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeAMP1.8-mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Updating media info for: {4687A306-D716-4D7A-B0AA-EAB65D17F149}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeAPE3-mul/AdobeAPE3-mul.dmg
    Updating media info for: {47DF3210-E261-4D06-A073-92F6C426C352}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AMECore5All/AMECore5All.dmg
    Updating media info for: {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFireworks11en_USLanguagePack/AdobeFireworks11en_USLanguagePack.dmg
    Updating media info for: {4C08199E-0D93-4227-8325-F024E71CA7A1}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeSING3-mul/AdobeSING3-mul.dmg
    Updating media info for: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/SwitchBoard2.0All/SwitchBoard2.0All.dmg
    Updating media info for: {54F4466A-091A-46DA-B697-43D55CEF9DF6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorJA_ExtraSettings3-mul/AdobeColorJA_ExtraSettings3-mul.dmg
    Updating media info for: {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeMobileExtension_Flash11-mul/AdobeMobileExtension_Flash11-mul.dmg
    Updating media info for: {5A60CD44-B38B-47CD-BE38-219C81AE3345}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeExtendScriptToolkit3.5.0-mul/AdobeExtendScriptToolkit3.5.0-mul.dmg
    Updating media info for: {5C5F61E0-E13B-4FD6-9F4B-C034FFD0672A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/Players_Flash11-mul/Players_Flash11-mul.dmg
    Updating media info for: {5E08533A-2C1B-469D-AFD5-953C9D00031F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/BrowserLabCSLive-mul/BrowserLabCSLive-mul.dmg
    Updating media info for: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/iPhone_Flash11-mul/iPhone_Flash11-mul.dmg
    Updating media info for: {66173EC7-974E-4652-9468-4A93D2481BF0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeStoryExtension-mul/AdobeStoryExtension-mul.dmg
    Updating media info for: {68489BE8-3960-11DF-8F88-C4A72C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7CommonLang-en_US/AdobeInDesign7CommonLang-en_US.dmg
    Updating media info for: {69582206-7E5D-4476-A8F4-ECF90E9C8A69}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePhotoshop12-en_US/AdobePhotoshop12-en_US.dmg
    Updating media info for: {6A2E619B-E4AC-433B-A648-D458CE543A96}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeXMPPanelsAll/AdobeXMPPanelsAll.dmg
    Updating media info for: {6A75E573-6909-4D48-BDFA-D8ED118605A5}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeIllustrator15-mul/AdobeIllustrator15-mul.dmg
    Updating media info for: {6E505C8F-2896-11DF-9B64-0013724DD917}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDeviceCentral3-all/AdobeDeviceCentral3-all.dmg
    Updating media info for: {6E7E143C-395D-11DF-80BB-4B252C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppLang-en_GB/AdobeInDesign7AppLang-en_GB.dmg
    Updating media info for: {6F29BE46-E5F3-4146-8A84-20301E5C985A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorEU_ExtraSettings3-mul/AdobeColorEU_ExtraSettings3-mul.dmg
    Updating media info for: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeTypeSupport10-mul/AdobeTypeSupport10-mul.dmg
    Updating media info for: {73A4DC5E-226E-42BA-8ECA-2822592AC044}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeVideoProfilesCS3-mul/AdobeVideoProfilesCS3-mul.dmg
    Updating media info for: {755A9707-8A74-4B18-A6FD-F80F5893BDF2}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFireworks11All/AdobeFireworks11All.dmg
    Updating media info for: {7745F18B-FD8A-4011-BE16-588900C503D0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFlashFonts1-mul/AdobeFlashFonts1-mul.dmg
    Updating media info for: {78A53622-CDBA-49D1-A3D0-D563FB398D0C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorCommonSetRGB3-mul/AdobeColorCommonSetRGB3-mul.dmg
    Updating media info for: {796659A8-114A-4E16-9994-14DF6A1B1683}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeUtilities3-mul/AdobeUtilities3-mul.dmg
    Updating media info for: {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePhotoshop12-Core/AdobePhotoshop12-Core.dmg
    Updating media info for: {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePhotoshop12-en_GB/AdobePhotoshop12-en_GB.dmg
    Updating media info for: {8B4C951B-F853-4B05-B892-9D5B3CD8AC98}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePDFSettings10-ja_JP/AdobePDFSettings10-ja_JP.dmg
    Updating media info for: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCSXSExtensions2-mul/AdobeCSXSExtensions2-mul.dmg
    Updating media info for: {8D3FB5B0-395D-11DF-AEA7-642B2C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppLang-en_US/AdobeInDesign7AppLang-en_US.dmg
    Updating media info for: {9032BC04-1CB6-11DF-8041-A9C0CF51210B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeToolhints-mul/AdobeToolhints-mul.dmg
    Updating media info for: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeOutputModuleAll/AdobeOutputModuleAll.dmg
    Updating media info for: {935FF832-3963-11DF-9CE8-97BA2C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppFSet-Roman/AdobeInDesign7AppFSet-Roman.dmg
    Updating media info for: {955EB78F-C938-4EA8-8470-C6EA71685834}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AIR2_Flash11-en_US/AIR2_Flash11-en_US.dmg
    Updating media info for: {9BE768D2-3963-11DF-B0A5-B7BA2C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppBase2-mul/AdobeInDesign7AppBase2-mul.dmg
    Updating media info for: {9EEF9016-4356-11DF-9781-28A32C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppBase-mul/AdobeInDesign7AppBase-mul.dmg
    Updating media info for: {A2502D10-2D75-4620-8A8B-73F39D5C1243}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePDFSettings10-mul/AdobePDFSettings10-mul.dmg
    Updating media info for: {A44863BF-8DB8-4D22-88DB-5A02BE319840}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeLinguisticsAll/AdobeLinguisticsAll.dmg
    Updating media info for: {A4747434-3965-11DF-B081-A0842D404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7CommonBase-mul/AdobeInDesign7CommonBase-mul.dmg
    Updating media info for: {A4EE8093-4250-4D8B-BDE4-A4675BB44953}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFlashCatalyst-mul/AdobeFlashCatalyst-mul.dmg
    Updating media info for: {A8798E04-96FF-4564-9157-0D4C89CB794C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDynamiclinkSupport5All/AdobeDynamiclinkSupport5All.dmg
    Updating media info for: {B4975576-60AD-4181-AED4-253FC150B404}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeIllustrator15en_USLanguagePack/AdobeIllustrator15en_USLanguagePack. dmg
    Updating media info for: {B60B8713-F828-44F9-BEEE-7596F814E540}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorEU_Recommended3-mul/AdobeColorEU_Recommended3-mul.dmg
    Updating media info for: {BAE5212B-6651-4AD8-B26A-1B284D2665C6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePDFL9.9-mul/AdobePDFL9.9-mul.dmg
    Updating media info for: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCMaps3-mul/AdobeCMaps3-mul.dmg
    Updating media info for: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorNA_ExtraSettings3-mul/AdobeColorNA_ExtraSettings3-mul.dmg
    Updating media info for: {C7BDD22E-AD27-4B06-BEB9-F97BC4D89671}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/FPPluginMac_STI/FPPluginMac_STI.dmg
    Updating media info for: {CBDD7465-CE11-4A58-9497-C370B65923F1}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFontsRequired-mul/AdobeFontsRequired-mul.dmg
    Updating media info for: {CDC977A9-B3BA-4320-BD28-96F2CC91B9E9}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDesignPremium5-mul/AdobeDesignPremium5-mul.dmg
    Updating media info for: {CFC9F871-7C40-40B6-BE4A-B98A5B309716}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFlash11-mul/AdobeFlash11-mul.dmg
    Updating media info for: {D26EEF95-420A-4726-B85D-AFBE752EF526}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorNA_Recommended3-mul/AdobeColorNA_Recommended3-mul.dmg
    Updating media info for: {D31D91FE-F0E8-4DF1-812C-9400BE92A386}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorPhotoshop3-mul/AdobeColorPhotoshop3-mul.dmg
    Updating media info for: {DC541ECE-2FFE-11DF-823C-BF762D404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeBuzzword-mul/AdobeBuzzword-mul.dmg
    Updating media info for: {DD5B1FAF-47FA-4B6D-A31C-5E313EB0DD07}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDreamweaver11-mul/AdobeDreamweaver11-mul.dmg
    Updating media info for: {E39A5ABD-516B-46F9-A042-694BBA6A4E08}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFontsRecommended-mul/AdobeFontsRecommended-mul.dmg
    Updating media info for: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeExtensionManager5.0All/AdobeExtensionManager5.0All.dmg
    Updating media info for: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorJA_Recommended3-mul/AdobeColorJA_Recommended3-mul.dmg
    Updating media info for: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/TLF_Flash11-mul/TLF_Flash11-mul.dmg
    Updating media info for: {F8918124-1CFB-4AB9-9BC2-39B961DBBBEE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/aifsdk-mac/aifsdk-mac.dmg
    Updating media info for: {FFEDE6AE-3052-11DF-89B7-E7102C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeReviewPanel2-mul/AdobeReviewPanel2-mul.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,4.0.50.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {4687A306-D716-4D7A-B0AA-EAB65D17F149} Adobe Player for Embedding 3.1.0.0: 1 (0,11)
      {796659A8-114A-4E16-9994-14DF6A1B1683} Adobe Utilities CS5 3.0.0.0: 2 (0,4)
      {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0: 3 (0,5)
      {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5 2.0.0.0: 4 (0,9)
      {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5 2.0.0.0: 5 (0,7)
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0: 5 (0,7)
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0: 5 (0,7)
      {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 9.9.0.0: 6 (0,6)
      {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule 3.0.0.0: 7 (0,5)
      {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0: 8 (0,4)
      {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport 5.0.0.0: 8 (0,4)
      {298CF0B0-8B47-46DF-B726-8E4BFAD5432E} AdobeHelp 0.0.0.0: 9 (0,9)
      {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 5.0.0.0: 10 (0,7)
      {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0: 11 (0,6)
      {5A60CD44-B38B-47CD-BE38-219C81AE3345} Adobe ExtendScript Toolkit CS5 3.5.0.0: 12 (2,6)
      {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0: 13 (1,4)
      {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5 2.0.0.0: 14 (0,6)
      {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0: 15 (0,4)
      {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK 3.0.0.0: 15 (0,4)
      {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB 3.0.0.0: 15 (0,4)
      {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5 3.0.0.0: 15 (0,4)
      {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5 3.0.0.0: 15 (0,4)
      {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5 3.0.0.0: 15 (0,4)
      {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5 3.0.0.0: 15 (0,4)
      {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5 3.0.0.0: 15 (0,4)
      {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5 3.0.0.0: 15 (0,4)
      {9BE768D2-3963-11DF-B0A5-B7BA2C404F28} Adobe InDesign CS5 Application Base Files2 7.0.0.0: 16 (0,1)
      {935FF832-3963-11DF-9CE8-97BA2C404F28} Adobe InDesign CS5 Application Feature Set Files 7.0.0.0: 16 (0,1)
      {A4747434-3965-11DF-B081-A0842D404F28} Adobe InDesign CS5 Common Base Files 7.0.0.0: 16 (0,1)
      {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support 12.0.0.0: 16 (0,1)
      {F8918124-1CFB-4AB9-9BC2-39B961DBBBEE} Pixel Bender Toolkit 2.0.0.0: 17 (1,1)
      {2C8C0585-5083-4032-94B8-A9AD04ED0716} Adobe AIR 1.5.3.0: 18 (0,7)
      {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player 1.8.0.0: 18 (0,7)
      {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0: 19 (0,5)
      {FFEDE6AE-3052-11DF-89B7-E7102C404F28} Adobe ReviewPanel CS5 2.0.0.0: 19 (0,5)
      {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral 3.0.0.0: 20 (3,5)
      {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB 3.0.0.0: 21 (0,0)
      {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US 3.0.0.0: 21 (0,0)
      {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension 1.0.0.0: 22 (0,4)
      {1EC2407F-6A7B-4A3C-9F46-C812EE3D44FD} HIL Help Search 1.0.0.0: 22 (0,4)
      {8B4C951B-F853-4B05-B892-9D5B3CD8AC98} PDF Settings CS5 10.0.0.0: 22 (0,4)
      {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5 10.0.0.0: 22 (0,4)
      {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation 1.0.0.0: 22 (0,4)
      {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation 1.0.0.0: 22 (0,4)
      {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages 1.0.0.0: 22 (0,4)
      {0D067D13-C3D7-4EA6-B346-740CD91FD547} Adobe Bridge CS5 4.0.0.0: 23 (12,4)
      {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live 1.0.0.0: 24 (0,3)
      {47DF3210-E261-4D06-A073-92F6C426C352} Adobe Media Encoder CS5 5.0.0.0: 25 (1,3)
      {C7BDD22E-AD27-4B06-BEB9-F97BC4D89671} Flash Player 10.1.52.15: 26 (0,2)
      {4438C826-1FD0-4D04-A70B-24FE1580AB21} Adobe Mini Bridge CS5 1.0.0.0: 27 (1,2)
      {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro 2.0.0.0: 28 (0,1)
      {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US 2.0.0.0: 29 (0,0)
      {DC541ECE-2FFE-11DF-823C-BF762D404F28} Adobe Buzzword CS5 1.0.0.0: 30 (0,1)
      {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1 1.0.0.0: 30 (0,1)
      {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0: 30 (0,1)
      {9032BC04-1CB6-11DF-8041-A9C0CF51210B} Adobe Toolhints CS5 1.0.0.0: 30 (0,1)
      {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5 3.0.0.0: 30 (0,1)
      {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5 3.0.0.0: 30 (0,1)
      {5C5F61E0-E13B-4FD6-9F4B-C034FFD0672A} Players For Adobe Flash Pro 10.0.0.0: 30 (0,1)
      {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro 1.0.0.0: 30 (0,1)
      {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing 1.0.0.0: 30 (0,1)
      {CDC977A9-B3BA-4320-BD28-96F2CC91B9E9} Creative Suite 5 Design Premium 5.0.0.0: 31 (1,0)
      {A4EE8093-4250-4D8B-BDE4-A4675BB44953} Adobe Flash Catalyst CS5 1.0.0.0: 32 (11,0)
      {DD5B1FAF-47FA-4B6D-A31C-5E313EB0DD07} Adobe Dreamweaver CS5 11.0.0.0: 33 (15,0)
      {2D5B4A04-0A9F-4FB9-862A-C49400325A90} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack 11.0.0.0: 34 (0,0)
      {755A9707-8A74-4B18-A6FD-F80F5893BDF2} Adobe Fireworks CS5 11.0.0.0: 35 (16,0)
      {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack 11.0.0.0: 36 (0,0)
      {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack 11.0.0.0: 36 (0,0)
      {6A75E573-6909-4D48-BDFA-D8ED118605A5} Adobe Illustrator CS5 15.0.0.0: 37 (35,0)
      {B4975576-60AD-4181-AED4-253FC150B404} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack 15.0.0.0: 38 (0,0)
      {042F50EC-2C9E-43D8-B3D7-2BB204A20E44} Adobe Illustrator CS5_AdobeIllustrator15en_GBLanguagePack 15.0.0.0: 38 (0,0)
      {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} Adobe Photoshop CS5 Core 12.0.0.0: 39 (39,0)
      {69582206-7E5D-4476-A8F4-ECF90E9C8A69} Adobe Photoshop CS5 English Language Pack_AdobePhotoshop12-en_US 12.0.0.0: 40 (0,0)
      {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B} Adobe Photoshop CS5 International English Language Pack_AdobePhotoshop12-en_GB 12.0.0.0: 40 (0,0)
      {CFC9F871-7C40-40B6-BE4A-B98A5B309716} Adobe Flash CS5 11.0.0.0: 41 (44,0)
      {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD} Adobe Flash CS5_AdobeMobileExtension_Flash11-mul 4.0.0.0: 42 (0,0)
      {14A2CC02-4638-405D-8190-ECD7BFD32D6E} Adobe Flash CS5_AdobeFlash11-en_USLanguagePack 11.0.0.0: 42 (0,0)
      {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655} Adobe Flash CS5_AdobeMobileExtension_Flash11-en_US 4.0.0.0: 42 (0,0)
      {9EEF9016-4356-11DF-9781-28A32C404F28} Adobe InDesign CS5 Application Base Files 7.0.0.0: 43 (47,0)
      {8D3FB5B0-395D-11DF-AEA7-642B2C404F28} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_US 7.0.0.0: 44 (0,0)
      {6E7E143C-395D-11DF-80BB-4B252C404F28} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_GB 7.0.0.0: 44 (0,0)
      {68489BE8-3960-11DF-8F88-C4A72C404F28} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_US 7.0.0.0: 44 (0,0)
      {44EAE408-3960-11DF-ACCC-D8A62C404F28} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_GB 7.0.0.0: 44 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "INSTALLDIR" to: /Applications
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Setting property "installSourcePath" to: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium
    Overwrite property "userASUPath" to: /Users/Jonathan/Applications/Adobe/OOBE/PDApp
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {4687A306-D716-4D7A-B0AA-EAB65D17F149} Adobe Player for Embedding 3.1.0.0 is: false
    Action string for {4687A306-D716-4D7A-B0AA-EAB65D17F149} Adobe Player for Embedding 3.1.0.0  is none
    Value returned on lookup of payload: {796659A8-114A-4E16-9994-14DF6A1B1683} Adobe Utilities CS5 3.0.0.0 is: false
    Action string for {796659A8-114A-4E16-9994-14DF6A1B1683} Adobe Utilities CS5 3.0.0.0  is none
    Value returned on lookup of payload: {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 is: false
    Action string for {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0  is none
    Value returned on lookup of payload: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5 2.0.0.0 is: false
    Action string for {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5 2.0.0.0  is none
    Value returned on lookup of payload: {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5 2.0.0.0 is: false
    Action string for {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5 2.0.0.0  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 is: false
    Action string for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 is: false
    Action string for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0  is none
    Value returned on lookup of payload: {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 9.9.0.0 is: false
    Action string for {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 9.9.0.0  is none
    Value returned on lookup of payload: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule 3.0.0.0 is: false
    Action string for {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule 3.0.0.0  is none
    Value returned on lookup of payload: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0 is: false
    Action string for {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0  is none
    Value returned on lookup of payload: {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport 5.0.0.0 is: false
    Action string for {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport 5.0.0.0  is none
    Value returned on lookup of payload: {298CF0B0-8B47-46DF-B726-8E4BFAD5432E} AdobeHelp 0.0.0.0 is: false
    Action string for {298CF0B0-8B47-46DF-B726-8E4BFAD5432E} AdobeHelp 0.0.0.0  is none
    Value returned on lookup of payload: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 5.0.0.0 is: false
    Action string for {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 5.0.0.0  is none
    Value returned on lookup of payload: {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0 is: false
    Action string for {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0  is none
    Value returned on lookup of payload: {5A60CD44-B38B-47CD-BE38-219C81AE3345} Adobe ExtendScript Toolkit CS5 3.5.0.0 is: false
    Action string for {5A60CD44-B38B-47CD-BE38-219C81AE3345} Adobe ExtendScript Toolkit CS5 3.5.0.0  is none
    Value returned on lookup of payload: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0 is: false
    Action string for {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0  is none
    Value returned on lookup of payload: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5 2.0.0.0 is: false
    Action string for {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5 2.0.0.0  is none
    Value returned on lookup of payload: {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0 is: false
    Action string for {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0  is none
    Value returned on lookup of payload: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK 3.0.0.0 is: false
    Action string for {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK 3.0.0.0  is none
    Value returned on lookup of payload: {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB 3.0.0.0 is: false
    Action string for {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB 3.0.0.0  is none
    Value returned on lookup of payload: {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5 3.0.0.0 is: false
    Action string for {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5 3.0.0.0  is none
    Value returned on lookup of payload: {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5 3.0.0.0 is: false
    Action string for {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5 3.0.0.0  is none
    Value returned on lookup of payload: {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5 3.0.0.0 is: false
    Action string for {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5 3.0.0.0  is none
    Value returned on lookup of payload: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5 3.0.0.0 is: false
    Action string for {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5 3.0.0.0  is none
    Value returned on lookup of payload: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5 3.0.0.0 is: false
    Action string for {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5 3.0.0.0  is none
    Value returned on lookup of payload: {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5 3.0.0.0 is: false
    Action string for {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5 3.0.0.0  is none
    Value returned on lookup of payload: {9BE768D2-3963-11DF-B0A5-B7BA2C404F28} Adobe InDesign CS5 Application Base Files2 7.0.0.0 is: false
    Action string for {9BE768D2-3963-11DF-B0A5-B7BA2C404F28} Adobe InDesign CS5 Application Base Files2 7.0.0.0  is none
    Value returned on lookup of payload: {935FF832-3963-11DF-9CE8-97BA2C404F28} Adobe InDesign CS5 Application Feature Set Files 7.0.0.0 is: false
    Action string for {935FF832-3963-11DF-9CE8-97BA2C404F28} Adobe InDesign CS5 Application Feature Set Files 7.0.0.0  is none
    Value returned on lookup of payload: {A4747434-3965-11DF-B081-A0842D404F28} Adobe InDesign CS5 Common Base Files 7.0.0.0 is: false
    Action string for {A4747434-3965-11DF-B081-A0842D404F28} Adobe InDesign CS5 Common Base Files 7.0.0.0  is none
    Value returned on lookup of payload: {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support 12.0.0.0 is: false
    Action string for {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support 12.0.0.0  is none
    Value returned on lookup of payload: {F8918124-1CFB-4AB9-9BC2-39B961DBBBEE} Pixel Bender Toolkit 2.0.0.0 is: false
    Action string for {F8918124-1CFB-4AB9-9BC2-39B961DBBBEE} Pixel Bender Toolkit 2.0.0.0  is none
    Value returned on lookup of payload: {2C8C0585-5083-4032-94B8-A9AD04ED0716} Adobe AIR 1.5.3.0 is: false
    Action string for {2C8C0585-5083-4032-94B8-A9AD04ED0716} Adobe AIR 1.5.3.0  is none
    Value returned on lookup of payload: {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player 1.8.0.0 is: false
    Action string for {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player 1.8.0.0  is none
    Value returned on lookup of payload: {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0 is: false
    Action string for {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0  is none
    Value returned on lookup of payload: {FFEDE6AE-3052-11DF-89B7-E7102C404F28} Adobe ReviewPanel CS5 2.0.0.0 is: false
    Action string for {FFEDE6AE-3052-11DF-89B7-E7102C404F28} Adobe ReviewPanel CS5 2.0.0.0  is none
    Value returned on lookup of payload: {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral 3.0.0.0 is: false
    Action string for {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral 3.0.0.0  is none
    Value returned on lookup of payload: {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB 3.0.0.0 is: false
    Action string for {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB 3.0.0.0  is none
    Payload {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB 3.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US 3.0.0.0 is: false
    Action string for {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US 3.0.0.0  is none
    Payload {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US 3.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension 1.0.0.0 is: false
    Action string for {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension 1.0.0.0  is none
    Value returned on lookup of payload: {1EC2407F-6A7B-4A3C-9F46-C812EE3D44FD} HIL Help Search 1.0.0.0 is: false
    Action string for {1EC2407F-6A7B-4A3C-9F46-C812EE3D44FD} HIL Help Search 1.0.0.0  is none
    Value returned on lookup of payload: {8B4C951B-F853-4B05-B892-9D5B3CD8AC98} PDF Settings CS5 10.0.0.0 is: false
    Action string for {8B4C951B-F853-4B05-B892-9D5B3CD8AC98} PDF Settings CS5 10.0.0.0  is none
    Value returned on lookup of payload: {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5 10.0.0.0 is: false
    Action string for {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5 10.0.0.0  is none
    Value returned on lookup of payload: {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation 1.0.0.0 is: false
    Action string for {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation 1.0.0.0  is none
    Value returned on lookup of payload: {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation 1.0.0.0 is: false
    Action string for {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation 1.0.0.0  is none
    Value returned on lookup of payload: {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages 1.0.0.0 is: false
    Action string for {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages 1.0.0.0  is none
    Value returned on lookup of payload: {0D067D13-C3D7-4EA6-B346-740CD91FD547} Adobe Bridge CS5 4.0.0.0 is: false
    Action string for {0D067D13-C3D7-4EA6-B346-740CD91FD547} Adobe Bridge CS5 4.0.0.0  is none
    Value returned on lookup of payload: {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live 1.0.0.0 is: false
    Action string for {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live 1.0.0.0  is none
    Value returned on lookup of payload: {47DF3210-E261-4D06-A073-92F6C426C352} Adobe Media Encoder CS5 5.0.0.0 is: false
    Action string for {47DF3210-E261-4D06-A073-92F6C426C352} Adobe Media Encoder CS5 5.0.0.0  is none
    Value returned on lookup of payload: {C7BDD22E-AD27-4B06-BEB9-F97BC4D89671} Flash Player 10.1.52.15 is: false
    Action string for {C7BDD22E-AD27-4B06-BEB9-F97BC4D89671} Flash Player 10.1.52.15  is none
    Value returned on lookup of payload: {4438C826-1FD0-4D04-A70B-24FE1580AB21} Adobe Mini Bridge CS5 1.0.0.0 is: false
    Action string for {4438C826-1FD0-4D04-A70B-24FE1580AB21} Adobe Mini Bridge CS5 1.0.0.0  is none
    Value returned on lookup of payload: {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro 2.0.0.0 is: false
    Action string for {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro 2.0.0.0  is none
    Value returned on lookup of payload: {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US 2.0.0.0 is: false
    Action string for {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US 2.0.0.0  is none
    Payload {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US 2.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {DC541ECE-2FFE-11DF-823C-BF762D404F28} Adobe Buzzword CS5 1.0.0.0 is: false
    Action string for {DC541ECE-2FFE-11DF-823C-BF762D404F28} Adobe Buzzword CS5 1.0.0.0  is none
    Value returned on lookup of payload: {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1 1.0.0.0 is: false
    Action string for {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1 1.0.0.0  is none
    Value returned on lookup of payload: {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0 is: false
    Action string for {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0  is none
    Value returned on lookup of payload: {9032BC04-1CB6-11DF-8041-A9C0CF51210B} Adobe Toolhints CS5 1.0.0.0 is: false
    Action string for {9032BC04-1CB6-11DF-8041-A9C0CF51210B} Adobe Toolhints CS5 1.0.0.0  is none
    Value returned on lookup of payload: {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5 3.0.0.0 is: false
    Action string for {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5 3.0.0.0  is none
    Value returned on lookup of payload: {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5 3.0.0.0 is: false
    Action string for {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5 3.0.0.0  is none
    Value returned on lookup of payload: {5C5F61E0-E13B-4FD6-9F4B-C034FFD0672A} Players For Adobe Flash Pro 10.0.0.0 is: false
    Action string for {5C5F61E0-E13B-4FD6-9F4B-C034FFD0672A} Players For Adobe Flash Pro 10.0.0.0  is none
    Value returned on lookup of payload: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro 1.0.0.0 is: false
    Action string for {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro 1.0.0.0  is none
    Value returned on lookup of payload: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing 1.0.0.0 is: false
    Action string for {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing 1.0.0.0  is none
    Value returned on lookup of payload: {CDC977A9-B3BA-4320-BD28-96F2CC91B9E9} Creative Suite 5 Design Premium 5.0.0.0 is: false
    Action string for {CDC977A9-B3BA-4320-BD28-96F2CC91B9E9} Creative Suite 5 Design Premium 5.0.0.0  is install
    Value returned on lookup of payload: {A4EE8093-4250-4D8B-BDE4-A4675BB44953} Adobe Flash Catalyst CS5 1.0.0.0 is: false
    Action string for {A4EE8093-4250-4D8B-BDE4-A4675BB44953} Adobe Flash Catalyst CS5 1.0.0.0  is install
    Value returned on lookup of payload: {DD5B1FAF-47FA-4B6D-A31C-5E313EB0DD07} Adobe Dreamweaver CS5 11.0.0.0 is: false
    Action string for {DD5B1FAF-47FA-4B6D-A31C-5E313EB0DD07} Adobe Dreamweaver CS5 11.0.0.0  is none
    Value returned on lookup of payload: {2D5B4A04-0A9F-4FB9-862A-C49400325A90} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack 11.0.0.0 is: false
    Action string for {2D5B4A04-0A9F-4FB9-862A-C49400325A90} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack 11.0.0.0  is none
    Payload {2D5B4A04-0A9F-4FB9-862A-C49400325A90} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack 11.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {755A9707-8A74-4B18-A6FD-F80F5893BDF2} Adobe Fireworks CS5 11.0.0.0 is: false
    Action string for {755A9707-8A74-4B18-A6FD-F80F5893BDF2} Adobe Fireworks CS5 11.0.0.0  is install
    Value returned on lookup of payload: {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack 11.0.0.0 is: false
    Action string for {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack 11.0.0.0  is none
    Payload {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack 11.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack 11.0.0.0 is: false
    Action string for {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack 11.0.0.0  is none
    Payload {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack 11.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {6A75E573-6909-4D48-BDFA-D8ED118605A5} Adobe Illustrator CS5 15.0.0.0 is: false
    Action string for {6A75E573-6909-4D48-BDFA-D8ED118605A5} Adobe Illustrator CS5 15.0.0.0  is install
    Value returned on lookup of payload: {B4975576-60AD-4181-AED4-253FC150B404} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack 15.0.0.0 is: false
    Action string for {B4975576-60AD-4181-AED4-253FC150B404} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack 15.0.0.0  is none
    Payload {B4975576-60AD-4181-AED4-253FC150B404} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack 15.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {042F50EC-2C9E-43D8-B3D7-2BB204A20E44} Adobe Illustrator CS5_AdobeIllustrator15en_GBLanguagePack 15.0.0.0 is: false
    Acti

    In case your User home directory is mapped to any network location try changing it temporarily to default location on your local machine and then run the installer.
    If it still fails try creating a new user account and then run the installer from new user account.

  • JRE Uninstall string for v7 all the same - but do not work

    We have multiple Windows 7 machines running v7u1 thru v7u10.
    I found the uninstall string and was able to run MsiExec.exe /X{26A24AE4-039D-4CA4-87B4-2F83217010FF} on my own machine to remove the software successfully.
    In looking at u6,u7,u9 and u11 installations, I noticed the Uninstall Strings are exactly the same. But when ran on those machines, the system states "This action is only valid for products that are currently installed".
    However, I can remove the version from the Control Panel.
    So what are the correct uninstall strings for v7u1 thru v7u11?

    All of our users are local admins and tend to install whatever. This leads to a messy environment and we don't always know which version of Java is installed. So, to address that, I created a small script that scours 'HKLM\software\microsoft\windows\currentversion\uninstall' for Java entries, reads the uninstall string then runs the reported uninstall string. The assumption here is that the uninstall string will be an MSI command. (All the machines & versions of Java used the same format.)
    This is a Windows 7 Enterprise (32-bit) environment, but the script also works on 64-bit installations of Windows 7 Enterprise.
    I've tested this with 7u11 and went as far back as 6u21. It should work with just about any version that uses MSI for uninstalling.
    @echo off
    setlocal enabledelayedexpansion
    echo. & echo Checking for Obsolete Versions of Java...
    for /f "usebackq tokens=*" %%a in (`reg query HKLM\software\microsoft\windows\currentversion\uninstall`) do (
         rem echo a is %%a
         for /f "usebackq tokens=2*" %%b in (`reg query "%%a" /v DisplayName 2^>nul ^| find /i "java"`) do (
              rem echo b is %%b
              rem echo c is %%c
              for /f "usebackq tokens=3,4" %%d in (`reg query "%%a" /v UninstallString 2^>nul`) do (
                   echo.     Removing %%c
                   rem echo d is %%d
                   rem echo e is %%e
                   set uninstallcmd=%%e
                   set uninstallcmd=!uninstallcmd:^/I=^/X!
                   rem %%d %%e /qb-
                   %%d !uninstallcmd! /qb-
    :end
    endlocal
    Standard Dislaimer:*
    Neither I nor the respective owners and/or maintainers of Oracle make representations about the suitability of this software for any purpose. This material is provided "as is", with absolutely no warranty of the attached items whatsoever, whether express, implied, or statutory, including, but not limited to, any warranty of merchantability or fitness for a particular purpose or any warranty that the contents of the item will be error-free. Any use is at your own risk. Blah blah blah.

  • ScanFile with scanning string modifier %s[in]

    For skipping over non-numeric characters by reading ASCII files I used to write, e.g.
    ScanFile (fhandle, "%s[i8]>%f", &x);
    This method works well with CVI 5.0 to 8.11 but no more with CVI 2009 and 2010.  I have modified my old code using other scanning string modifiers:  
    ScanFile (fhandle, "%s>%s[dt#]%f", &x);    or  
    ScanFile (fhandle, "%s>R1= %f", &x);
    The first one does not work with a string like “R1=200”.  The second requires the exact string and is more inconvenient.  Although the modified code works well now with CVI 2009, I would like to know why the scanning string modifier [in] does not work with CVI 2009 and 2010. Is there something wrong in my code, is it a feature of the new versions of CVI or is it a bug? How about CVI 2013?    

    Thank you very much for your reply.
    I would not use "%s[i8]>%f" to read the number 200 in string "R1=200".  I just wanted to take this string as an example to say that I couldn't simply change all of  "%s[in]>%f"s  in my code to  “%s>%s[dt#]%f"s, somewhere I had to use a quite inconvenient "%s>R1= %f". Therefore I do hope that "%s[in]>%f" works by a new version of CVI.
    In my code I use a lot of Scan (string, "%s[in]>%f", &x) and all of them work always correctly, also with CVI 2009-2010. But none of ScanFile (fhandle, "%s[in]>%f", &x) works with my CVI 2009, they work only with earlier versions.. That’s very strange to me as I couldn't find in the documentation/Help of CVI 2009-2010 a description that "%s[in]>%f" should not be used with the ScanFile function,
    My further tests showed that this problem seems to be related to CVI Run-time.  By reading the same ASCII file, the same executable created by CVI 8.11 works with CVI Run-time 8.1 but does not with Run-time versions 9.0 to 10.0.1.419.

Maybe you are looking for