Creating policy file

I have a problem displaying images in my applets. I am using SDK 1.4. I have run the policytool programme as explained in the the java tutorials.
But my problem is that when I try a code like:
import javax.swing.*;
public class MyApplet extends JApplet
ImageIcon icon;
JPanel panel;
public void init()
icon = new ImageIcon("myimagefile.jpg");
button.add(icon);
panel.add(button);
getContentPane().add(panel);
I don't see the image eventhough the applet comes up.
What am I doing wrong. Could anybody help me.

Check it out...
http://java.sun.com/docs/books/tutorial/uiswing/start/swingApplet.html
Justin.

Similar Messages

  • How to create an application-specific policy file?

    Hi Everybody:
    I'm a .NET developer with C #. I have a few applications currently running on my computer using the ODP 10.1
    Two weeks ago I installed on my computer the ODP 10.2 Release & now my previous applications have stopped working: when I try to make the connection to the database gives me this exception:
    OraOLEDB (0x80004005)
    ORA-12154: TNS: could not resolve the connect identifier specified
    In FAQ section for ODP.NET I found the next:
    Q: I have two .NET applications on the same machine running two different versions of ODP.NET. How do I ensure both these applications use the correct ODP.NET version?
    A: Beginning with ODP.NET 10.1.0.3, the Oracle installer will register the following publisher policy DLLs in the Global Assembly Cache (GAC) that redirect 9.2, 10.1 and 10.2 ODP.NET applications to use the last installed version of ODP.NET: Policy.9.2.Oracle.DataAccess.dll and Policy.10.1.Oracle.DataAccess.dll.
    ODP.NET 9.2 includes just the first policy DLL above. These policy files ensure that all your ODP.NET applications use the most recently installed version of ODP.NET.
    You may undo the redirection manually. Policy DLLs can be de-installed through gacutil.exe using the /u option. Another approach is to navigate to the GAC directory (i.e. C:\WINNT\assembly) through the Windows Explorer and delete the policy folders. That will eliminate any policy enforcement for all your ODP.NET applications.
    If you have applications on the same machine using different ODP.NET versions, you should create an application-specific policy file.
    I'm trying to do that, but I don't know what is an application-specific policy file. Someone can give me an example of How can I create and application-specific policy file???
    Regards

    Hi,
    Binding redirection is a ".net thing" as opposed to a "odp.net thing", see if this helps:
    http://msdn.microsoft.com/en-us/library/7wd6ex19(VS.71).aspx
    Hope it helps,
    Greg

  • Unable to create access to file in .policy file

    I'm trying to grant permission to a specific file in the file system by granting permission in the .policy file.
    When I uncomment the line permission java.security.AllPermission; the code works fine and interacts with the file correctly. This is just to prove that the code works, I need to tighten this up to a single file.
    When I use the following, I get an exception, shown below. Nothing of consequence is being written to the logs
    grant {
      permission java.io.FilePermission "C:/test/essbase/CalcProfile.db", "write, read";
    java.security.AccessControlException: access denied (java.io.FilePermission C:\esstest\Server\PlugIns\Essbase read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
         at java.security.AccessController.checkPermission(AccessController.java:546)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         at java.lang.SecurityManager.checkRead(SecurityManager.java:871)
         at com.hyperion.essbase.calculator.ESecurityManager.checkRead(ESecurityManager.java:80)
         at java.io.File.exists(File.java:731)
         at org.sqlite.Conn.open(Conn.java:98)
         at org.sqlite.Conn.<init>(Conn.java:57)
         at org.sqlite.JDBC.createConnection(JDBC.java:77)
         at org.sqlite.JDBC.connect(JDBC.java:64)
         at java.sql.DriverManager.getConnection(DriverManager.java:582)
         at java.sql.DriverManager.getConnection(DriverManager.java:207)
         at com.accelatis.essbase.calcprofile.cdf.CalcComment.calcComment(CalcComment.java:16)I've tried creating the policy using PolicyTool, same result. However, I have no idea what or if I should put in the "CodeBase" field.
    Has anyone had success creating read & write permissions to a single file using .policy file? What is the magic syntax?
    Regards,
    Robb Salzmann
    Edited by: Robb Salzmann on Sep 22, 2011 11:38 AM

    >
    I have heard that there's a tendency for people to only read the first sentence of a post, so I will restrict this to just one sentence.
    >
    Wow, A little sharp doncha think?
    While I didn't write about it, I did check your link. Thank you, that got me over the hump.
    For anyone else who might stumble upon this thread, here's what I got to work:
    grant{
       permission java.security.AllPermission "C:\\test\\essbase\\CalcProfile.db", "read, write";
    };Regards,
    Robb Salzmann

  • How to create a custom java client Security Policy File?

    I have a stand-alone java client which invokes a .NET WSE 3.0 enabled web service. The web service SOAP header requires username token to be passed from my java client.
    Could some one kindly provide a sample of a client-side Security Policy File?
    Your help is very much appreciated.
    Mike

    This is still a workaround...
    But if you put checks on all your forms to see if the user has accepted the terms (assumes there is an attribute tracking this) then you can redirect the user to the terms/conditions forms. Still not spoof-proof, but it would be bookmark proof. (and a pain if you have too many forms)

  • How to use a custum permission in the .policy file

    Hi,
    I am stuck with the problem of having a custum permission that extands java.security.BasicPermission.
    I really want this permission to be checked from my .policy file, but when I try to include its location : c:\java_project\server\SpecialPolicy.class
    it pops a message that file is not found. I have tried dots, different slashes (back and forward) and still have no luck. I need this custum permission to be checked so that I can allow special access from a certain codebase so that say if I try a dangerous method I can just simply check in the code;
    this.getSecurityManager.checkPermission(new SpecialPermission("lol"));
    Also I need a paramater option, but I cant think of any since its not a FilePermission that takes a name and attributes (read, write..) what does BasicPermission take and if I extend it what attribute should I pass in. I dont really care about how this permission works, i just use it to restrict access to a certain functions in code that are ran from specific codeBAse.
    Please dont ask why I need this :)
    Thanks in advance, the documentation on how to add custum policies is simply NOT THERE. thus I have to bug people around.

    Hi
    If you just have to add another permission it is easy.
    Create a class extending the BasicPermission. Have an entry into
    the policy file like
    grant <Principal> {
    permission <CumstomPermission> "lol"
    }that should be all. If you do have a specific Principal, please
    do not forget to add the Principal to the relevant Subject after login.
    cheers
    Projyal

  • Java.lang.SecurityException: Jurisdiction policy files are not signed by t

    Hi
    *I am installing ECC6 onAIX 6.1 with oarcle 10g.*
    *I am getting error in create secure store*
    *Policy and security files are ok,*
    aused by: java.lang.ExceptionInInitializerError
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:218)
            at javax.crypto.Cipher.a(Unknown Source)
            at javax.crypto.Cipher.getInstance(Unknown Source)
            at iaik.security.provider.IAIK.a(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at com.sap.security.core.server.secstorefs.Crypt.<clinit>(Crypt.java:82)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            at com.sap.security.core.server.secstorefs.SecStoreFS.setSID(SecStoreFS.java:158)
            at com.sap.security.core.server.secstorefs.SecStoreFS.handleCreate(SecStoreFS.java:804)
            at com.sap.security.core.server.secstorefs.SecStoreFS.main(SecStoreFS.java:1274)
            ... 6 more
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
            at javax.crypto.b.<clinit>(Unknown Source)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            ... 17 more
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.access$600(Unknown Source)
            at javax.crypto.b$0.run(Unknown Source)
            at java.security.AccessController.doPrivileged(AccessController.java:246)
            ... 20 more
    ERROR      2009-07-07 14:10:47.063
               CJSlibModule::writeError_impl()
    CJS-30050  Cannot create the secure store. SOLUTION: See output of log file SecureStoreCreate.log:
    SAP Secure Store in the File System - Copyright (c) 2003 SAP AG
    java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:61)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.lang.ExceptionInInitializerError
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:218)
            at javax.crypto.Cipher.a(Unknown Source)
            at javax.crypto.Cipher.getInstance(Unknown Source)
            at iaik.security.provider.IAIK.a(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at com.sap.security.core.server.secstorefs.Crypt.<clinit>(Crypt.java:82)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            at com.sap.security.core.server.secstorefs.SecStoreFS.setSID(SecStoreFS.java:158)
            at com.sap.security.core.server.secstorefs.SecStoreFS.handleCreate(SecStoreFS.java:804)
            at com.sap.security.core.server.secstorefs.SecStoreFS.main(SecStoreFS.java:1274)
            ... 6 more
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
            at javax.crypto.b.<clinit>(Unknown Source)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            ... 17 more
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.access$600(Unknown Source)
            at javax.crypto.b$0.run(Unknown Source)
            at java.security.AccessController.doPrivileged(AccessController.java:246)
            ... 20 more.
    ERROR      2009-07-07 14:10:47.547 [sixxcstepexecute.cpp:960]
    FCO-00011  The step createSecureStore with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_SecureStore|ind|ind|ind|ind|8|0|createSecureStore was executed with status ERROR ( Last error reported by the step :Cannot create the secure store. SOLUTION: See output of log file SecureStoreCreate.log:
    SAP Secure Store in the File System - Copyright (c) 2003 SAP AG
    java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:61)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.lang.ExceptionInInitializerError
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:218)
            at javax.crypto.Cipher.a(Unknown Source)
            at javax.crypto.Cipher.getInstance(Unknown Source)
            at iaik.security.provider.IAIK.a(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at iaik.security.provider.IAIK.addAsJDK14Provider(Unknown Source)
            at com.sap.security.core.server.secstorefs.Crypt.<clinit>(Crypt.java:82)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            at com.sap.security.core.server.secstorefs.SecStoreFS.setSID(SecStoreFS.java:158)
            at com.sap.security.core.server.secstorefs.SecStoreFS.handleCreate(SecStoreFS.java:804)
            at com.sap.security.core.server.secstorefs.SecStoreFS.main(SecStoreFS.java:1274)
            ... 6 more
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
            at javax.crypto.b.<clinit>(Unknown Source)
            at java.lang.J9VMInternals.initializeImpl(Native Method)
            at java.lang.J9VMInternals.initialize(J9VMInternals.java:196)
            ... 17 more
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.a(Unknown Source)
            at javax.crypto.b.access$600(Unknown Source)
            at javax.crypto.b$0.run(Unknown Source)
            at java.security.AccessController.doPrivileged(AccessController.java:246)
            ... 20 more.).
    what could be the problem ?
    Please give me the soluation
    regards
    Vijay

    Dear Juan
    You are correct.
    I downloaded correct file from IBM site , and Create Secure store step completed but innext step IMPORT JAVA DUMP
    it gave error
    n error occurred while processing service SAP ERP 6.0 Support Release 3 > SAP Systems > Oracle > Central System > Central System( Last error reported by the step : Execution of JLoad tool '/usr/java14_64/bin/java -classpath /swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/launcher.jar -showversion -Xmx512m -Xj9 com.sap.engine.offline.OfflineToolStart com.sap.inst.jload.Jload /swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/lib/iaik_jce.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/jload.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/antlr.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/exception.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/jddi.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/logging.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/offlineconfiguration.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/opensqlsta.jar:/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/install/sharedlib/tc_sec_secstorefs.jar:/oracle/client/10x_64/instantclient/ojdbc14.jar -sec AGQ,jdbc/pool/AGQ,/usr/sap/AGQ/SYS/global/security/data/SecStore.properties,/usr/sap/AGQ/SYS/global/security/data/SecStore.key -dataDir /swdump/NW7.0_SR3_JAVA_COMP_51033513/DATA_UNITS/JAVA_EXPORT_JDMP -job /swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/IMPORT.XML -log jload.log' aborts with return code 1. SOLUTION: Check 'jload.log' and '/swdump/tmpinst/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/jload.java.log' for more information.
    regards
    vijjay

  • Load XML file from addon domain without cross-domain Policy file

    Hello.
    Assuming that there are two addon domains on the same server: /public_html/domain1.com       and      /public_html/domain2.com
    I try to load XML file from domain2.com into domain1.com without using cross-domain policy file (since it doesn’t work on xml files in my case).
    So the idea is to use php file in order to load XML and read it back to flash.
    I’ve found an interesting scripts that seems to do the job but unfortunately I can't get it to work. In my opinion there is somewhere problem with AS3 part. Please take a look.
    Here are the AS3/PHP scripts:
    AS3 (.swf in www.domain1.com):
    // location of the xml that you would like to load, full http address
    var xmlLoc:String = "http://www.domain2.com/MyFile.xml";
    // location of the php xml grabber file, in relation to the .swf
    var phpLoc:String = "loadXML.php";
    var xml:XML;
    var loader:URLLoader = new URLLoader();
    var request:URLRequest = new URLRequest(phpLoc+"?location="+escape(xmlLoc) );
    loader.addEventListener(Event.COMPLETE, onXMLLoaded);
    loader.addEventListener(IOErrorEvent.IO_ERROR, onIOErrorHandler);
    loader.load(request);
    function onIOErrorHandler(e:IOErrorEvent):void {
        trace("There was an error with the xml file "+e);
    function onXMLLoaded(e:Event):void {
        trace("the rss feed has been loaded");
        xml = new XML(loader.data);
        // set to string, since it is passed back from php as an object
        xml = XML(xml.toString());
        xml_txt.text = xml;
    PHP (loadXML.php in www.domain1.com):
    <?php
    header("Content-type: text/xml");
    $location = "";
    if(isset($_GET["location"])) {
        $location = $_GET["location"];
        $location = urldecode($location);
    $xml_string = getData($location);
    // pass the url encoded vars back to Flash
    echo $xml_string;
    //cURLs a URL and returns it
    function getData($query) {
        // create curl resource
        $ch = curl_init();
        // cURL url
        curl_setopt($ch, CURLOPT_URL, $query);
        //Set some necessary params for using CURL
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
       //Execute the curl function, and decode the returned JSON data
        $result = curl_exec($ch);
        return $result;
        // close curl resource to free up system resources
        curl_close($ch);
    ?>

    I think you might be right about permissions/settings on the server for php. Unfortunately I'm not allowed to adjust them.
    So I wrote my own script - this time I used file path instead of http address of the XML file.  It works fine in my case.
    Here it is:
    XML file on domain2.com:
    <?xml version="1.0" encoding="UTF-8"?>
    <gallery>
        <image imagePath="galleries/gallery_1/images/1.jpg" thumbPath="galleries/gallery_1/thumbs/1.jpg" file_name= "1"> </image>
        <image imagePath="galleries/gallery_1/images/2.jpg" thumbPath="galleries/gallery_1/thumbs/2.jpg" file_name= "2"> </image>
        <image imagePath="galleries/gallery_1/images/3.jpg" thumbPath="galleries/gallery_1/thumbs/3.jpg" file_name= "3"> </image>
    </gallery>
    swf  on domain1.com:
    var imagesXML:XML;
    var variables:URLVariables = new URLVariables();
    var varURL:URLRequest = new URLRequest("MyPHPfile.php");
    varURL.method = URLRequestMethod.POST;
    varURL.data = variables;
    var MyLoader:URLLoader = new URLLoader;
    MyLoader.dataFormat =URLLoaderDataFormat.VARIABLES;
    MyLoader.addEventListener(Event.COMPLETE, XMLDone);
    MyLoader.load(varURL);
    function XMLDone(event:Event):void {
        var imported_XML:Object = event.target.data.imported_XML;
        imagesXML = new XML(imported_XML);
       MyTextfield_1.text = imagesXML;
       MyTextfield_2.text = imagesXML.image[0].attribute("thumbPath");  // sample reference to attribute "thumbPath" of the first element
    php file on domain1.com:
    <?php
    $xml_file = simplexml_load_file('../../domain2.com/galleries/gallery_1/MyXMLfile.xml');  // directory to XML file on the same server
    $imported_XML = $xml_file->asXML();
    print "imported_XML=" . $imported_XML;
    ?>
    Regards
    PS: for those who read the above discussion: the first and the second script work but you must test which one is better in your situation. The first script will also work between two domains on different servers. No cross domain policy file needed.

  • Windows AAMEE-created installer files install, then uninstall all products

    I am trying to use AAMEE 3.1 to create CS6 installer files that will be used in creating a Windows 7 image.  Every version of the installer file that I have tried does not work. In every case, the product(s) is installed and then subsequently uninstalled. I have seen this in the log file and also in watching the target directories during the install process. The directory structure gets created and then deleted. I used the Mac version of AAMEE to create files for Mac deployment and it worked flawlessly. With the Windows version, I have tried (in no particular order):
    1. creating installer files using the Design and Web Premium Suite media (complete package, as well as individual apps)
    2. creating installer files from individual application media for each product
    3. creating installer files that are supposed to ignore conflicts and others that are not
    4. creating installer files with and without updates included
    5. uninstalling every piece of previously installed Adobe software off the target machine before attempting to run the installer files
    6. running the Adobe cleaner utility before attempting to run the installer files
    7. uninstalling every piece of previously installed Adobe software off the target machine first AND running the Adobe cleaner utility before attempting to run the installer files
    8. Running the .msi file from the command line
    9. Running the .msi file by right-clicking and choosing install
    10. Running the .msi file by double-clicking
    11. Running the .msi logged in as both a network admin user and local admin user
    12. a host of other things that I can't remember now
    I've even tried using Adobe's log analyzer. It found no issues.  I've already wasted a week plus trying to make this work. Can anyone offer a solution that works? Below is one of many logs files I have. Most seem to indicate that a needed file is in use by another process, but I can't seem to find the culprit.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    Win OS version: 6.1.1.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming install mode
    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 4693.35 milliseconds (4.69335 seconds) DTR = 2287.49 KBPS (2.23388 MBPS)
    ##### Running EDT Workflow #####
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup
    Updating media info for: {00496505-D56B-4B07-A8C5-70A0B4E689F7}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeBridge5-mul-x64\AdobeBr idge5-mul-x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeBridge5-mul-x64\AdobeBr idge5-mul-x64.msi
    Updating media info for: {0377892E-FCAC-46EC-AA70-C6AC8A86A81F}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDynamicLinkMediaServer1 All\AdobeDynamicLinkMediaServer1All.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDynamicLinkMediaServer1 All\AdobeDynamicLinkMediaServer1All.msi
    Updating media info for: {05E1E278-7A8D-11E1-A0B9-FC0245DB7244}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFireworks12en_USLanguag ePack\AdobeFireworks12en_USLanguagePack.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFireworks12en_USLanguag ePack\AdobeFireworks12en_USLanguagePack.msi
    Updating media info for: {08D2E121-7F6A-43EB-97FD-629B44903403}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft_VC90_CRT_x86\Micro soft_VC90_CRT_x86.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft_VC90_CRT_x86\Micro soft_VC90_CRT_x86.msi
    Updating media info for: {093DEFC4-542D-4D0A-8162-0592055515F4}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeXMPPanelsAll\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeXMPPanelsAll\Install.db
    Updating media info for: {0C4E7429-E920-4125-980E-029A87AE0A4D}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorCommonSetCMYK4_0-m ul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorCommonSetCMYK4_0-m ul\Install.db
    Updating media info for: {0E0AA043-65AC-4A20-AAD6-9B4C7667309B}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorEU_Recommended4_0- mul\AdobeColorEU_Recommended4_0-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorEU_Recommended4_0- mul\AdobeColorEU_Recommended4_0-mul.msi
    Updating media info for: {110F7FCE-7A8E-11E1-BB1D-CEBA0B96881F}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFireworks12ja_JPLanguag ePack\AdobeFireworks12ja_JPLanguagePack.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFireworks12ja_JPLanguag ePack\AdobeFireworks12ja_JPLanguagePack.msi
    Updating media info for: {1837F64F-8388-4AA6-AABD-C608B4430715}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-ja_JP\Adobe Photoshop13-ja_JP.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-ja_JP\Adobe Photoshop13-ja_JP.msi
    Updating media info for: {1E621A15-CD9F-4543-B3F6-8032B3647A6A}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFlash12.0-en_USLanguage Pack\AdobeFlash12.0-en_USLanguagePack.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFlash12.0-en_USLanguage Pack\AdobeFlash12.0-en_USLanguagePack.msi
    Updating media info for: {1EA52983-8EDD-1014-A956-E9729DA4AEEB}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeToolhints-mul\Install.d b
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeToolhints-mul\Install.d b
    Updating media info for: {1F955A4A-F365-4379-AEE2-B7C83E1AA883}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-Support\Ado bePhotoshop13-Support.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-Support\Ado bePhotoshop13-Support.msi
    Updating media info for: {23D3FD35-6497-4038-9CE3-6B79A4093013}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFlash12.0-ja_JPLanguage Pack\AdobeFlash12.0-ja_JPLanguagePack.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFlash12.0-ja_JPLanguage Pack\AdobeFlash12.0-ja_JPLanguagePack.msi
    Updating media info for: {246C4B99-19F7-4475-9787-5FF8595B86D7}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePDFL10.9_x64-mul\AdobeP DFL10.9_x64-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePDFL10.9_x64-mul\AdobeP DFL10.9_x64-mul.msi
    Updating media info for: {26BF5EE3-8C29-46DA-BA87-D04DB7C84197}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16en_GBLangu agePack_x64\AdobeIllustrator16en_GBLanguagePack_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16en_GBLangu agePack_x64\AdobeIllustrator16en_GBLanguagePack_x64.msi
    Updating media info for: {26F763C9-076F-473D-9A0E-4050C973737C}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorJA_ExtraSettings4_ 0-mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorJA_ExtraSettings4_ 0-mul\Install.db
    Updating media info for: {29A80A19-9E35-455A-AF9D-B39AE5B3035D}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-en_US_x64\A dobePhotoshop13-en_US_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-en_US_x64\A dobePhotoshop13-en_US_x64.msi
    Updating media info for: {29DB26AB-81CE-41D6-B0C9-BE15E36C87C6}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeHunspellPlugin_4_0_All_ x64\AdobeHunspellPlugin_4_0_All_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeHunspellPlugin_4_0_All_ x64\AdobeHunspellPlugin_4_0_All_x64.msi
    Updating media info for: {2DAEE15D-8D47-1014-9FF6-ACA9093B5359}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8IconHandler64- mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8IconHandler64- mul\Install.db
    Updating media info for: {3071EDD7-EA5B-4CAC-B4D0-4D4D664154D1}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-en_US\Adobe Photoshop13-en_US.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-en_US\Adobe Photoshop13-en_US.msi
    Updating media info for: {308066E3-8D40-1014-B993-EF118FFB1E39}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8CommonLang-en_ GB\AdobeInDesign8CommonLang-en_GB.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8CommonLang-en_ GB\AdobeInDesign8CommonLang-en_GB.msi
    Updating media info for: {311CDC89-AC18-4344-9EC9-0225328C73D3}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFontsRequired-mul\Insta ll.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFontsRequired-mul\Insta ll.db
    Updating media info for: {319044AD-1B7E-4872-8E8A-D18D88C7E932}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIdeaPluginCS6-loc\Adobe IdeaPluginCS6-loc.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIdeaPluginCS6-loc\Adobe IdeaPluginCS6-loc.msi
    Updating media info for: {3289C0E8-78B9-47D4-98E5-F25BFF1CBED4}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-Core_x64\Ad obePhotoshop13-Core_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-Core_x64\Ad obePhotoshop13-Core_x64.msi
    Updating media info for: {354D20E6-A25F-4728-9DA6-C9003D8F2928}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeAPE3.3-mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeAPE3.3-mul\Install.db
    Updating media info for: {36682D68-3834-487E-BA49-DFA4AB0A2E32}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCSXSInfrastructure3-mul \Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCSXSInfrastructure3-mul \Install.db
    Updating media info for: {402F6F2E-5683-491C-977D-0CA599A07CAF}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDesignWebPremium6-mul\I nstall.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDesignWebPremium6-mul\I nstall.db
    Updating media info for: {42C0738D-8D50-45B7-BC51-4BC609133E3A}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorNA_ExtraSettings4_ 0-mul\AdobeColorNA_ExtraSettings4_0-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorNA_ExtraSettings4_ 0-mul\AdobeColorNA_ExtraSettings4_0-mul.msi
    Updating media info for: {48623899-C152-457D-9B30-1F957332AC2F}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorPhotoshop4_0-mul\A dobeColorPhotoshop4_0-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorPhotoshop4_0-mul\A dobeColorPhotoshop4_0-mul.msi
    Updating media info for: {488DE6DF-6D55-1014-8588-B572E54263B5}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDigitalPublishing-mul\I nstall.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDigitalPublishing-mul\I nstall.db
    Updating media info for: {4FAB339E-2132-434F-9376-9CD735E4C69C}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFlash12.0-mul\AdobeFlas h12.0-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFlash12.0-mul\AdobeFlas h12.0-mul.msi
    Updating media info for: {51C77DC1-5C75-4491-8645-A17CC33F5A36}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorEU_ExtraSettings4_ 0-mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorEU_ExtraSettings4_ 0-mul\Install.db
    Updating media info for: {539AEF15-3A2B-4A31-A587-7E90F7D9C700}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCameraRawProfile7.0All\ Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCameraRawProfile7.0All\ Install.db
    Updating media info for: {557F9FD3-EED8-43D7-AF29-0F19CA832728}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePDFL10.9-mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePDFL10.9-mul\Install.db
    Updating media info for: {55D814FB-8D3F-1014-9CAE-A6C79F910A7A}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8CommonLang-ja_ JP\AdobeInDesign8CommonLang-ja_JP.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8CommonLang-ja_ JP\AdobeInDesign8CommonLang-ja_JP.msi
    Updating media info for: {55F0AFED-606D-476A-A07A-134291002FBA}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCameraRaw7.0All-x64\Ado beCameraRaw7.0All-x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCameraRaw7.0All-x64\Ado beCameraRaw7.0All-x64.msi
    Updating media info for: {5C0D1B2E-2D70-48AB-9A0B-0E1E1CC084B1}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePDFSettings11-ja_JP\Ado bePDFSettings11-ja_JP.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePDFSettings11-ja_JP\Ado bePDFSettings11-ja_JP.msi
    Updating media info for: {63594DD4-0241-422A-93A5-B6530040E1C7}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFontsRequired_x64-mul\A dobeFontsRequired_x64-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFontsRequired_x64-mul\A dobeFontsRequired_x64-mul.msi
    Updating media info for: {6C98A8B6-8D40-1014-AE3E-EF3F5E8D39AE}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8CommonLang-en_ US\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8CommonLang-en_ US\Install.db
    Updating media info for: {7483525E-26E8-4748-870D-1F064AB8AA83}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIdeaPluginCS6-x64-mul\A dobeIdeaPluginCS6-x64-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIdeaPluginCS6-x64-mul\A dobeIdeaPluginCS6-x64-mul.msi
    Updating media info for: {784B5277-7B8A-4058-8F5D-A146F8BA5F7B}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeHunspellPlugin_4_0_All\ Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeHunspellPlugin_4_0_All\ Install.db
    Updating media info for: {78E38D75-4D92-4F6E-B631-17A436BED680}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeVideoProfilesCS4_0-mul\ AdobeVideoProfilesCS4_0-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeVideoProfilesCS4_0-mul\ AdobeVideoProfilesCS4_0-mul.msi
    Updating media info for: {7CA3FAD4-7B82-473C-8207-5A283E90742A}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeWinSoftLinguisticsPlugi nAll_x64\AdobeWinSoftLinguisticsPluginAll_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeWinSoftLinguisticsPlugi nAll_x64\AdobeWinSoftLinguisticsPluginAll_x64.msi
    Updating media info for: {7D4E9D10-AED6-485D-A2B0-9A1DF1A55545}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16-mul\Adobe Illustrator16-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16-mul\Adobe Illustrator16-mul.msi
    Updating media info for: {7E91BB17-16A1-42CE-9502-D6C98BE04920}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePDFSettings11-mul\Adobe PDFSettings11-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePDFSettings11-mul\Adobe PDFSettings11-mul.msi
    Updating media info for: {8085C16A-3148-40B4-BC8B-12ED59C9C478}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFontsRecommended_x64-mu l\AdobeFontsRecommended_x64-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFontsRecommended_x64-mu l\AdobeFontsRecommended_x64-mul.msi
    Updating media info for: {83463106-DD1C-4FE5-A61C-DF6715472AD4}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeExtensionManager6.0All\ Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeExtensionManager6.0All\ Install.db
    Updating media info for: {8467887D-92F1-435C-B387-A7551B88EC70}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeNPSPanel1-mul\Install.d b
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeNPSPanel1-mul\Install.d b
    Updating media info for: {8706963D-5F48-47CC-998B-DAB70B089DB8}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeSuiteSharedConfiguratio n3-mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeSuiteSharedConfiguratio n3-mul\Install.db
    Updating media info for: {8815EC0E-89C0-4EDB-ACD7-32DB5B67536D}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16en_USLangu agePack\AdobeIllustrator16en_USLanguagePack.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16en_USLangu agePack\AdobeIllustrator16en_USLanguagePack.msi
    Updating media info for: {8E8021FF-7AA0-11E1-BF04-E98EE5274486}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDreamweaver12ja_JPLangu agePack\AdobeDreamweaver12ja_JPLanguagePack.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDreamweaver12ja_JPLangu agePack\AdobeDreamweaver12ja_JPLanguagePack.msi
    Updating media info for: {8FDB26FC-7AA0-11E1-BF04-E25246635842}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDreamweaver12en_USLangu agePack\AdobeDreamweaver12en_USLanguagePack.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDreamweaver12en_USLangu agePack\AdobeDreamweaver12en_USLanguagePack.msi
    Updating media info for: {9124DF4E-617D-486B-A970-8FA632244F24}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-Core\AdobeP hotoshop13-Core.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-Core\AdobeP hotoshop13-Core.msi
    Updating media info for: {91E01984-8D3F-1014-B925-DFD46364B983}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppLang-en_GB\ AdobeInDesign8AppLang-en_GB.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppLang-en_GB\ AdobeInDesign8AppLang-en_GB.msi
    Updating media info for: {9254D539-549A-41DD-A7DA-251766F2B76F}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeAPE3.3_x64-mul\AdobeAPE 3.3_x64-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeAPE3.3_x64-mul\AdobeAPE 3.3_x64-mul.msi
    Updating media info for: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft_VC80_CRT_x86\Micro soft_VC80_CRT_x86.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft_VC80_CRT_x86\Micro soft_VC80_CRT_x86.msi
    Updating media info for: {94FEA41F-7345-429F-AA31-5C615F24CE29}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeWinSoftLinguisticsPlugi nAll\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeWinSoftLinguisticsPlugi nAll\Install.db
    Updating media info for: {97BA0109-F6BE-4F50-8904-C19442D7216E}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeBridge5-mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeBridge5-mul\Install.db
    Updating media info for: {99290358-A784-4218-A7BA-954AE5F9207C}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCMaps4_x64-mul\AdobeCMa ps4_x64-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCMaps4_x64-mul\AdobeCMa ps4_x64-mul.msi
    Updating media info for: {99FE4191-AC6B-11E0-B602-00215AEA26C9}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2005 Redist (x64)\vcredist_x64.EXE
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2005 Redist (x64)\vcredist_x64.EXE
    Updating media info for: {9A63F173-0324-43F5-A0CA-75FF3ADE907B}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16en_USLangu agePack_x64\AdobeIllustrator16en_USLanguagePack_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16en_USLangu agePack_x64\AdobeIllustrator16en_USLanguagePack_x64.msi
    Updating media info for: {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2005 Redist (x86)\vcredist_x86.exe
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2005 Redist (x86)\vcredist_x86.exe
    Updating media info for: {9B78FAB0-AC6B-11E0-8EF3-00215AEA26C9}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2008 Redist (x64)\vcredist_x64.exe
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2008 Redist (x64)\vcredist_x64.exe
    Updating media info for: {9C4AA28F-AC6B-11E0-8997-00215AEA26C9}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2008 Redist (x86)\vcredist_x86.exe
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2008 Redist (x86)\vcredist_x86.exe
    Updating media info for: {9D2A060F-AC6B-11E0-8C00-00215AEA26C9}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2010 Redist (x64)\vcredist_x64.exe
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2010 Redist (x64)\vcredist_x64.exe
    Updating media info for: {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16-mul_x64\A dobeIllustrator16-mul_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16-mul_x64\A dobeIllustrator16-mul_x64.msi
    Updating media info for: {9E0AF030-AC6B-11E0-8837-00215AEA26C9}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2010 Redist (x86)\vcredist_x86.exe
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\Microsoft VC 2010 Redist (x86)\vcredist_x86.exe
    Updating media info for: {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeTypeSupport11-mul\Insta ll.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeTypeSupport11-mul\Insta ll.db
    Updating media info for: {A269DDEC-5572-4032-AA26-3485A1620006}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIdeaPluginCS6-mul\Adobe IdeaPluginCS6-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIdeaPluginCS6-mul\Adobe IdeaPluginCS6-mul.msi
    Updating media info for: {A276AA98-F93E-4F6C-933E-57604A29F2A1}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-ja_JP_x64\A dobePhotoshop13-ja_JP_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-ja_JP_x64\A dobePhotoshop13-ja_JP_x64.msi
    Updating media info for: {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDreamweaver12-mul\Adobe Dreamweaver12-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDreamweaver12-mul\Adobe Dreamweaver12-mul.msi
    Updating media info for: {A8560618-8D40-1014-ADF9-825EAE966C45}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppFSet-Japan\ AdobeInDesign8AppFSet-Japan.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppFSet-Japan\ AdobeInDesign8AppFSet-Japan.msi
    Updating media info for: {AA9DC298-8D46-1014-853D-9FC0306FBFCE}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8CommonBase-mul \Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8CommonBase-mul \Install.db
    Updating media info for: {AC76BA86-1033-F400-7760-000000000005}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AcrobatProfessional10.0-EFG\ AcroPro.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AcrobatProfessional10.0-EFG\ AcroPro.msi
    Updating media info for: {AC76BA86-1041-0000-7760-000000000005}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AcrobatProfessional10.0-ja_J P\AcroPro.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AcrobatProfessional10.0-ja_J P\AcroPro.msi
    Updating media info for: {AD8A9ABD-0567-4489-8843-15A45760231B}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorJA_Recommended4_0- mul\AdobeColorJA_Recommended4_0-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorJA_Recommended4_0- mul\AdobeColorJA_Recommended4_0-mul.msi
    Updating media info for: {B25DFA23-EC41-4B19-8BD4-1B042D68BF85}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16en_GBLangu agePack\AdobeIllustrator16en_GBLanguagePack.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16en_GBLangu agePack\AdobeIllustrator16en_GBLanguagePack.msi
    Updating media info for: {B2D792AF-F407-4EFA-9A03-3F2A476146F6}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeTypeSupport11_x64-mul\A dobeTypeSupport11_x64-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeTypeSupport11_x64-mul\A dobeTypeSupport11_x64-mul.msi
    Updating media info for: {B8CD128B-8D40-1014-B944-C86071713DAE}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppFSet-Roman\ Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppFSet-Roman\ Install.db
    Updating media info for: {B98E0DCB-1A75-4394-9813-3A114AA3891D}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeMiniBridge2-mul\Install .db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeMiniBridge2-mul\Install .db
    Updating media info for: {BB66788C-4C4F-4EB0-B146-9178857DE287}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorNA_Recommended4_0- mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorNA_Recommended4_0- mul\Install.db
    Updating media info for: {C0C7DC90-C8DF-46DA-BA21-848889DAFD11}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDreamweaverWidgetsBrows er1.0-mul\AdobeAIRInstaller.exe
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDreamweaverWidgetsBrows er1.0-mul\AdobeAIRInstaller.exe
    Updating media info for: {C41A769E-27ED-44F7-8A11-F2E32F538E05}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeLinguistics_4_0_All_x64 \AdobeLinguistics_4_0_All_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeLinguistics_4_0_All_x64 \AdobeLinguistics_4_0_All_x64.msi
    Updating media info for: {C7B1C1B3-368D-4C32-A818-83F1554EB398}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorCommonSetRGB4_0-mu l\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeColorCommonSetRGB4_0-mu l\Install.db
    Updating media info for: {CA7C485C-7A89-11E1-B2C8-CD54B377BC52}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFireworks12-mul\AdobeFi reworks12-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFireworks12-mul\AdobeFi reworks12-mul.msi
    Updating media info for: {CB510A42-9CC2-4FD0-9DA6-0C8C333EF538}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16-Support32 \AdobeIllustrator16-Support32.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16-Support32 \AdobeIllustrator16-Support32.msi
    Updating media info for: {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AMECore6All\AMECore6All.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AMECore6All\AMECore6All.msi
    Updating media info for: {CC59DB03-F745-4207-962C-63D550E2E066}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16ja_JPLangu agePack\AdobeIllustrator16ja_JPLanguagePack.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16ja_JPLangu agePack\AdobeIllustrator16ja_JPLanguagePack.msi
    Updating media info for: {CFA46C39-C539-4BE9-9364-495003C714AD}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\SwitchBoard2.0All\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\SwitchBoard2.0All\Install.db
    Updating media info for: {CFB770D7-8D43-1014-922B-CC2715FADE3F}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppBase-mul\In stall.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppBase-mul\In stall.db
    Updating media info for: {CFC3110A-491C-4DBF-A97D-66C567600A2F}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCameraRaw7.0All\Install .db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCameraRaw7.0All\Install .db
    Updating media info for: {D2583A3E-399C-45D7-8AF1-FE5BAFC946CF}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AIRforIOS_Flash12.0-mul\AIRf orIOS_Flash12.0-mul.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AIRforIOS_Flash12.0-mul\AIRf orIOS_Flash12.0-mul.msi
    Updating media info for: {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeHelp\InstallAdobeHelp.e xe
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeHelp\InstallAdobeHelp.e xe
    Updating media info for: {DC00A3E1-9C61-4B11-8070-B592E68D2B3C}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeLinguistics_4_0_All\Ins tall.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeLinguistics_4_0_All\Ins tall.db
    Updating media info for: {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFontsRecommended-mul\In stall.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeFontsRecommended-mul\In stall.db
    Updating media info for: {DE88AA40-6766-43D3-A755-8FC374B3D2C3}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDynamiclinkSupport6All\ Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeDynamiclinkSupport6All\ Install.db
    Updating media info for: {E04F4B94-8D3F-1014-BB29-98347AEBFF8C}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppLang-en_US\ Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppLang-en_US\ Install.db
    Updating media info for: {E42CAADF-4613-4257-B404-1FB8ECC18695}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-en_GB_x64\A dobePhotoshop13-en_GB_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-en_GB_x64\A dobePhotoshop13-en_GB_x64.msi
    Updating media info for: {E5EE62C1-3B58-48A9-AFBC-4C15976C8490}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16ja_JPLangu agePack_x64\AdobeIllustrator16ja_JPLanguagePack_x64.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16ja_JPLangu agePack_x64\AdobeIllustrator16ja_JPLanguagePack_x64.msi
    Updating media info for: {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCMaps4-mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCMaps4-mul\Install.db
    Updating media info for: {EB2A8CD4-B247-4810-A294-E3DB8EDC6060}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCSXSExtensions3-mul\Ins tall.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeCSXSExtensions3-mul\Ins tall.db
    Updating media info for: {EB5C092C-8D46-1014-A129-F57E0145A7FD}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8IconHandler-mu l\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8IconHandler-mu l\Install.db
    Updating media info for: {EFBC1075-F890-4293-A0D1-04BE66EE2AB3}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeExtendScriptToolkit3.8. 0-mul\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeExtendScriptToolkit3.8. 0-mul\Install.db
    Updating media info for: {F2F2F788-A17F-4CEC-A03C-DFB778E9D901}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AMECore6All_x64\Install.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AMECore6All_x64\Install.db
    Updating media info for: {F48E8FE8-8D40-1014-8129-D1C5ABFD087E}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppBase2-mul\I nstall.db
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppBase2-mul\I nstall.db
    Updating media info for: {F683ECF1-07EC-43CB-90B0-8F325A8C09C1}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16-Support\A dobeIllustrator16-Support.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeIllustrator16-Support\A dobeIllustrator16-Support.msi
    Updating media info for: {FC5B6A15-8D3E-1014-8E22-FD25F2906565}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppLang-ja_JP\ AdobeInDesign8AppLang-ja_JP.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobeInDesign8AppLang-ja_JP\ AdobeInDesign8AppLang-ja_JP.msi
    Updating media info for: {FD50FA04-4759-494E-9D6D-4589FD80E484}
    NOTE: Ignoring media info and setting media path as: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-en_GB\Adobe Photoshop13-en_GB.msi
      Type: 0, Volume Order: 1, Media Name:
      Path: C:\Users\shiftyfox\Desktop\InDesignCS6\Build\\Setup\payloads\AdobePhotoshop13-en_GB\Adobe Photoshop13-en_GB.msi
    --------------------  END  - Updating Media Sources -  END  --------------------
    [    3636] Mon Jul 15 10:21:45 2013  INFO
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    [    3636] Mon Jul 15 10:21:45 2013  WARN
    DW022: AdobeCode {AC76BA86-1033-F400-7760-000000000005} NonAdobePayload Acrobat Professional 10.0.0.0 with version (2012-03-05 04:03:46.684000) already installed with incompatible version (2011-03-06 22:43:17.708000)
    [    3636] Mon Jul 15 10:21:45 2013  INFO
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 1.0.0.0: 1 (0,1)
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0: 1 (0,1)
      {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1: 2 (0,13)
      {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180: 3 (0,11)
      {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer 7.0.0.0: 4 (0,9)
      {8706963D-5F48-47CC-998B-DAB70B089DB8} Suite Shared Configuration CS6 3.0.0.0: 5 (1,11)
      {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0: 6 (0,9)
      {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85} AdobeCMaps CS6 4.0.0.0: 7 (0,6)
      {557F9FD3-EED8-43D7-AF29-0F19CA832728} AdobePDFL CS6 10.9.0.0: 7 (0,6)
      {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1} AdobeTypeSupport CS6 11.0.0.0: 7 (0,6)
      {DE88AA40-6766-43D3-A755-8FC374B3D2C3} DynamiclinkSupport 6.0.0.0: 8 (1,6)
      {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0: 9 (2,5)
      {9254D539-549A-41DD-A7DA-251766F2B76F} Adobe Player for Embedding x64 3.3 3.3.0.0: 10 (0,4)
      {99290358-A784-4218-A7BA-954AE5F9207C} AdobeCMaps x64 CS6 4.0.0.0: 10 (0,4)
      {246C4B99-19F7-4475-9787-5FF8595B86D7} AdobePDFL x64 CS6 10.9.0.0: 10 (0,4)
      {B2D792AF-F407-4EFA-9A03-3F2A476146F6} AdobeTypeSupport x64 CS6 11.0.0.0: 10 (0,4)
      {319044AD-1B7E-4872-8E8A-D18D88C7E932} AdobeIdeaPluginCS6-loc 1.0.0.0: 11 (0,2)
      {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148: 12 (0,13)
      {093DEFC4-542D-4D0A-8162-0592055515F4} Adobe XMP Panels 4.0.0.0: 13 (0,9)
      {CFC3110A-491C-4DBF-A97D-66C567600A2F} Photoshop Camera Raw 7 7.0.0.0: 14 (1,6)
      {9B78FAB0-AC6B-11E0-8EF3-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x64) 9.0.30729.4148: 15 (0,5)
      {9D2A060F-AC6B-11E0-8C00-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x64) 10.0.40219.1: 15 (0,5)
      {55F0AFED-606D-476A-A07A-134291002FBA} Photoshop Camera Raw 7 (64 bit) 7.0.0.0: 16 (0,4)
      {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6 4.0.0.0: 17 (0,6)
      {C7B1C1B3-368D-4C32-A818-83F1554EB398} AdobeColorCommonSetRGB CS6 4.0.0.0: 17 (0,6)
      {0E0AA043-65AC-4A20-AAD6-9B4C7667309B} AdobeColorEU CS6 4.0.0.0: 17 (0,6)
      {51C77DC1-5C75-4491-8645-A17CC33F5A36} AdobeColorEU CS6 4.0.0.0: 17 (0,6)
      {26F763C9-076F-473D-9A0E-4050C973737C} AdobeColorJA CS6 4.0.0.0: 17 (0,6)
      {AD8A9ABD-0567-4489-8843-15A45760231B} AdobeColorJA CS6 4.0.0.0: 17 (0,6)
      {42C0738D-8D50-45B7-BC51-4BC609133E3A} AdobeColorNA CS6 4.0.0.0: 17 (0,6)
      {BB66788C-4C4F-4EB0-B146-9178857DE287} AdobeColorNA CS6 4.0.0.0: 17 (0,6)
      {94FEA41F-7345-429F-AA31-5C615F24CE29} Adobe WinSoft Linguistics Plugin CS6 1.3.0.0: 18 (0,4)
      {784B5277-7B8A-4058-8F5D-A146F8BA5F7B} Adobe Hunspell Linguistics Plugin CS6 1.0.0.0: 19 (0,3)
      {7CA3FAD4-7B82-473C-8207-5A283E90742A} Adobe WinSoft Linguistics Plugin CS6 x64 1.3.0.0: 19 (0,3)
      {29DB26AB-81CE-41D6-B0C9-BE15E36C87C6} Adobe Hunspell Linguistics Plugin CS6 x64 1.0.0.0: 20 (0,2)
      {1F955A4A-F365-4379-AEE2-B7C83E1AA883} Adobe Photoshop CS6 Support 13.0.0.0: 20 (0,2)
      {F48E8FE8-8D40-1014-8129-D1C5ABFD087E} Adobe InDesign CS6 Application Base Files2 8.0.0.0: 21 (0,1)
      {A8560618-8D40-1014-ADF9-825EAE966C45} Adobe InDesign CS6 Application Feature Set Files 8.0.0.0: 21 (0,1)
      {B8CD128B-8D40-1014-B944-C86071713DAE} Adobe InDesign CS6 Application Feature Set Files 8.0.0.0: 21 (0,1)
      {AA9DC298-8D46-1014-853D-9FC0306FBFCE} Adobe InDesign CS6 Common Base Files 8.0.0.0: 21 (0,1)
      {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0: 22 (0,8)
      {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0: 23 (3,8)
      {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0: 24 (4,8)
      {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0: 25 (4,7)
      {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0: 26 (0,6)
      {5C0D1B2E-2D70-48AB-9A0B-0E1E1CC084B1} PDF Settings CS6 11.0.0.0: 26 (0,6)
      {7E91BB17-16A1-42CE-9502-D6C98BE04920} PDF Settings CS6 11.0.0.0: 26 (0,6)
      {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0: 27 (0,5)
      {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D} Recommended Common Fonts Installation 2.0.0.0: 28 (0,4)
      {311CDC89-AC18-4344-9EC9-0225328C73D3} Required Common Fonts Installation 2.0.0.0: 28 (0,4)
      {97BA0109-F6BE-4F50-8904-C19442D7216E} Adobe Bridge CS6 5.0.0.0: 29 (10,4)
      {8467887D-92F1-435C-B387-A7551B88EC70} Adobe NPS Panel 1.0.0.0: 30 (0,3)
      {C41A769E-27ED-44F7-8A11-F2E32F538E05} Adobe Linguistics CS6 x64 6.0.0.0: 31 (1,3)
      {B98E0DCB-1A75-4394-9813-3A114AA3891D} Adobe Mini Bridge CS6 2.0.0.0: 32 (3,3)
      {00496505-D56B-4B07-A8C5-70A0B4E689F7} Adobe Bridge CS6 (64 Bit) 5.0.0.0: 33 (13,3)
      {F683ECF1-07EC-43CB-90B0-8F325A8C09C1} Adobe Illustrator CS6 Support 16.0.0.0: 34 (0,2)
      {48623899-C152-457D-9B30-1F957332AC2F} AdobeColorPhotoshop CS6 4.0.0.0: 34 (0,2)
      {78E38D75-4D92-4F6E-B631-17A436BED680} AdobeColorVideoProfilesCS CS6 4.0.0.0: 34 (0,2)
      {8085C16A-3148-40B4-BC8B-12ED59C9C478} Recommended Common Fonts Installation x64 2.0.0.0: 34 (0,2)
      {63594DD4-0241-422A-93A5-B6530040E1C7} Required Common Fonts Installation x64 2.0.0.0: 34 (0,2)
      {0377892E-FCAC-46EC-AA70-C6AC8A86A81F} Dynamic Link Media Server 1.0.0.0: 35 (1,2)
      {F2F2F788-A17F-4CEC-A03C-DFB778E9D901} Adobe Media Encoder CS6 X64 6.0.0.0: 36 (3,2)
      {CC006FD6-00EF-46FC-ACA0-7A28EFF44D20} Adobe Media Encoder CS6 6.0.0.0: 37 (4,2)
      {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0: 38 (0,1)
      {CB510A42-9CC2-4FD0-9DA6-0C8C333EF538} Adobe Illustrator CS6 Support32 16.0.0.0: 38 (0,1)
      {EB5C092C-8D46-1014-A129-F57E0145A7FD} Adobe InDesign CS6 Icon Handler 8.0.0.0: 38 (0,1)
      {1EA52983-8EDD-1014-A956-E9729DA4AEEB} Adobe Toolhints CS6 2.0.0.0: 38 (0,1)
      {488DE6DF-6D55-1014-8588-B572E54263B5} DPS Desktop Tools CS6 2.0.0.0: 38 (0,1)
      {99FE4191-AC6B-11E0-B602-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x64) 6.0.2900.2180: 38 (0,1)
      {A269DDEC-5572-4032-AA26-3485A1620006} AdobeIdeaPluginCS6 1.0.0.0: 39 (1,1)
      {7483525E-26E8-4748-870D-1F064AB8AA83} AdobeIdeaPluginCS6 x64 1.0.0.0: 39 (1,1)
      {2DAEE15D-8D47-1014-9FF6-ACA9093B5359} Adobe InDesign CS6 Icon Handler x64 8.0.0.0: 40 (2,1)
      {402F6F2E-5683-491C-977D-0CA599A07CAF} CS6 Design and Web Premium 6.0.0.0: 41 (4,0)
      {D2583A3E-399C-45D7-8AF1-FE5BAFC946CF} AIR for Apple iOS support (FP) 3.0.0.0: 42 (0,0)
      {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0: 42 (0,0)
      {AC76BA86-1041-0000-7760-000000000005} Acrobat Professional 10.0.0.0: 42 (0,0)
      {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0: 43 (12,0)
      {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0: 44 (0,0)
      {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0: 44 (0,0)
      {CA7C485C-7A89-11E1-B2C8-CD54B377BC52} Adobe Fireworks CS6 12.0.0.0: 45 (15,0)
      {110F7FCE-7A8E-11E1-BB1D-CEBA0B96881F} Adobe Fireworks CS6_AdobeFireworks12ja_JPLanguagePack 12.0.0.0: 46 (0,0)
      {05E1E278-7A8D-11E1-A0B9-FC0245DB7244} Adobe Fireworks CS6_AdobeFireworks12en_USLanguagePack 12.0.0.0: 46 (0,0)
      {9D3BB9DA-1F59-4DCF-A0BB-691FA8EA2582} Adobe Illustrator CS6 Core (64 Bit) 16.0.0.0: 47 (33,0)
      {26BF5EE3-8C29-46DA-BA87-D04DB7C84197} Adobe Illustrator CS6 Core (64 Bit)_AdobeIllustrator16en_GBLanguagePack_x64 16.0.0.0: 48 (0,0)
      {9A63F173-0324-43F5-A0CA-75FF3ADE907B} Adobe Illustrator CS6 Core (64 Bit)_AdobeIllustrator16en_USLanguagePack_x64 16.0.0.0: 48 (0,0)
      {E5EE62C1-3B58-48A9-AFBC-4C15976C8490} Adobe Illustrator CS6 Core (64 Bit)_AdobeIllustrator16ja_JPLanguagePack_x64 16.0.0.0: 48 (0,0)
      {7D4E9D10-AED6-485D-A2B0-9A1DF1A55545} Adobe Illustrator CS6 Core 16.0.0.0: 49 (35,0)
      {8815EC0E-89C0-4EDB-ACD7-32DB5B67536D} Adobe Illustrator CS6 Core_AdobeIllustrator16en_USLanguagePack 16.0.0.0: 50 (0,0)
      {B25DFA23-EC41-4B19-8BD4-1B042D68BF85} Adobe Illustrator CS6 Core_AdobeIllustrator16en_GBLanguagePack 16.0.0.0: 50 (0,0)
      {CC59DB03-F745-4207-962C-63D550E2E066} Adobe Illustrator CS6 Core_AdobeIllustrator16ja_JPLanguagePack 16.0.0.0: 50 (0,0)
      {4FAB339E-2132-434F-9376-9CD735E4C69C} Adobe Flash CS6 12.0.0.0: 51 (38,0)
      {1E621A15-CD9F-4543-B3F6-8032B3647A6A} Adobe Flash CS6_AdobeFlash12.0-en_USLanguagePack 12.0.0.0: 52 (0,0)
      {23D3FD35-6497-4038-9CE3-6B79A4093013} Adobe Flash CS6_AdobeFlash12.0-ja_JPLanguagePack 12.0.0.0: 52 (0,0)
      {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core 13.0.0.0: 53 (38,0)
      {1837F64F-8388-4AA6-AABD-C608B4430715} Adobe Photoshop CS6 Japanese Language Pack_AdobePhotoshop13-ja_JP 13.0.0.0: 54 (0,0)
      {3071EDD7-EA5B-4CAC-B4D0-4D4D664154D1} Adobe Photoshop CS6 English Language Pack_AdobePhotoshop13-en_US 13.0.0.0: 54 (0,0)
      {FD50FA04-4759-494E-9D6D-4589FD80E484} Adobe Photoshop CS6 International English Language Pack_AdobePhotoshop13-en_GB 13.0.0.0: 54 (0,0)
      {3289C0E8-78B9-47D4-98E5-F25BFF1CBED4} Adobe Photoshop CS6 Core_x64 13.0.0.0: 55 (38,0)
      {E42CAADF-4613-4257-B404-1FB8ECC18695} Adobe Photoshop CS6 International English Language Pack_x64_AdobePhotoshop13-en_GB_x64 13.0.0.0: 56 (0,0)
      {29A80A19-9E35-455A-AF9D-B39AE5B3035D} Adobe Photoshop CS6 English Language Pack_x64_AdobePhotoshop13-en_US_x64 13.0.0.0: 56 (0,0)
      {A276AA98-F93E-4F6C-933E-57604A29F2A1} Adobe Photoshop CS6 Japanese Language Pack_x64_AdobePhotoshop13-ja_JP_x64 13.0.0.0: 56 (0,0)
      {CFB770D7-8D43-1014-922B-CC2715FADE3F} Adobe InDesign CS6 Application Base Files 8.0.0.0: 57 (45,0)
      {6C98A8B6-8D40-1014-AE3E-EF3F5E8D39AE} Adobe InDesign CS6 Common Language Files_AdobeInDesign8CommonLang-en_US 8.0.0.0: 58 (0,0)
      {308066E3-8D40-1014-B993-EF118FFB1E39} Adobe InDesign CS6 Common Language Files_AdobeInDesign8CommonLang-en_GB 8.0.0.0: 58 (0,0)
      {E04F4B94-8D3F-1014-BB29-98347AEBFF8C} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_US 8.0.0.0: 58 (0,0)
      {55D814FB-8D3F-1014-9CAE-A6C79F910A7A} Adobe InDesign CS6 Common Language Files_AdobeInDesign8CommonLang-ja_JP 8.0.0.0: 58 (0,0)
      {91E01984-8D3F-1014-B925-DFD46364B983} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-en_GB 8.0.0.0: 58 (0,0)
      {FC5B6A15-8D3E-1014-8E22-FD25F2906565} Adobe InDesign CS6 Application Language Files_AdobeInDesign8AppLang-ja_JP 8.0.0.0: 58 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "edtWorkflow" to: 1
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Overwrite property "overrideFile" to: C:\Users\SHIFTY~1\AppData\Local\Temp\{3FEBC9C0-97C2-4CD6-9F64-34B03622DAF2}\\{155C6EE7-AA BA-4819-8982-66EBD3EB1705}
    Overwrite property "skipProcessChecks" to: 1
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 1.0.0.0 is: true
    Action string for {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 1.0.0.0  is configdbonly
    Selection of payload {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 1.0.0.0 is forbidden by the policy. Reason: Critical dependency
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 is: true
    Action string for {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0  is configdbonly
    Selection of payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 is forbidden by the policy. Reason: Critical dependency
    Value returned on lookup of payload: {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1 is: false
    Action string for {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1  is configdbonly
    Selection of payload {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1 is forbidden by the policy. Reason: Required dependency
    Value returned on lookup of payload: {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180 is: false
    Action string for {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180  is configdbonly
    Selection of payload {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180 is forbidden by the policy. Reason: Required dependency
    Value returned on lookup of payload: {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer 7.0.0.0 is: false
    Action string for {539AEF15-3A2B-4A31-A587-7E90F7D9C700} Camera Profiles Installer 7.0.0.0  is none
    Value returned on lookup of payload: {8706963D-5F48-47CC-998B-DAB70B089DB8} Suite Shared Configuration CS6 3.0.0.0 is: false
    Action string for {8706963D-5F48-47CC-998B-DAB70B089DB8} Suite Shared Configuration CS6 3.0.0.0  is none
    Value returned on lookup of payload: {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0 is: false
    Action string for {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0  is none
    Value returned on lookup of payload: {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85} AdobeCMaps CS6 4.0.0.0 is: false
    Action string for {E8B1DAAA-0B6B-44E6-A2D3-8E418EA0EA85} AdobeCMaps CS6 4.0.0.0  is none
    Value returned on lookup of payload: {557F9FD3-EED8-43D7-AF29-0F19CA832728} AdobePDFL CS6 10.9.0.0 is: false
    Action string for {557F9FD3-EED8-43D7-AF29-0F19CA832728} AdobePDFL CS6 10.9.0.0  is none
    Value returned on lookup of payload: {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1} AdobeTypeSupport CS6 11.0.0.0 is: false
    Action string for {A0F72081-99FB-4FFA-AE1A-62B5A656CAC1} AdobeTypeSupport CS6 11.0.0.0  is none
    Value returned on lookup of payload: {DE88AA40-6766-43D3-A755-8FC374B3D2C3} DynamiclinkSupport 6.0.0.0 is: false
    Action string for {DE88AA40-6766-43D3-A755-8FC374B3D2C3} DynamiclinkSupport 6.0.0.0  is none
    Value returned on lookup of payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0 is: false
    Action string for {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0  is none
    Value returned on lookup of payload: {9254D539-549A-41DD-A7DA-251766F2B76F} Adobe Player for Embedding x64 3.3

    I've searched the logs and all errors seem to be related to Licensing (thanks again anti-piracy).
    10/24/13 13:40:54:808 | [ERROR] |  |  |  | SLCoreService |  |  | 3968 | Could not find license from which to get user data
    10/24/13 13:40:54:808 | [ERROR] |  |  |  | SLCoreService |  |  | 3968 | No value for key [PersonGUID] in user dictionary.
    10/24/13 13:40:56:602 | [ERROR] |  |  |  | OPMWrapper |  |  | 1132 | Failed in getting value for key in OPMGetValueForKey
    10/24/13 13:40:56:649 | [ERROR] |  |  |  | SLCoreService |  |  | 1132 | Could not find license from which to get user data
    10/24/13 13:40:56:649 | [ERROR] |  |  |  | SLCoreService |  |  | 1132 | No value for key [PersonGUID] in user dictionary.
    10/24/13 13:40:56:649 | [ERROR] |  |  |  | SLCoreService |  |  | 1132 | Could not find license from which to get event
    10/24/13 13:41:03:850 | [ERROR] |  |  |  | OPMWrapper |  |  | 1132 | Failed in getting value for key in OPMGetValueForKey

  • Java Kernel and the "Unlimited Strength Java Crypto Extension Policy Files"

    Is Java Kernel able to download and install on-demand the "Unlimited Strength Java(TM) Cryptography Extension Policy Files"?
    Currently, I have to instruct the users of my applications to download those policy files from Sun's website and follow the installation instruction. I haven't received any positive feedback from my users when I told them to do this task. I understand them. Manual installation of this files really suck especially for lay men.
    So, with Java Kernel, what's the plan? Can I hope for something better?

    I believe, for US export-control reasons, the Unlimited Strength JCE policy files are never automatically downloadable by the JVM - they have to be explicitly downloaded and configured. However, you could download it yourself, configure the JVM with the policy files, create your own ZIP/JAR file and internally distribute it to your users through your intranet. But, if you do this, you are responsible for complying with the applicable export laws of your country, and perhaps, Sun licensing terms for redistributing the JVM.

  • Group Policy Files Not Being Deployed to UNC Paths

    When attempting to deploy files via Group Policy Preferences, there is a well-known issue wherein you may receive an error to the effect of: 0x80070003
    The system cannot find the path specified. This is due to the local system being the security context used to deploy the file. If the local system does not have rights to the location, as is true with mapped drives, access is denied and the path cannot
    be found. The workaround for this is to enable the common option "Run under the logged in user's security context"
    However, I have done this and still receive the same error. I have verified the logged-in user can reach both the source and destination. Specifically, the source is a file server and the destination is the user's HOMEPATH,
    which resides on another fileserver in this case. More to the point, it's their redirected Documents folder, and it otherwise works fine; I cannot imagine this being a permissions or connectivity issue, especially because I receive the error even if I execute
    a gpupdate
    /force /target:user while logged in.
    I've also installed the hotfix from Microsoft pertaining to this issue: "Error
    code 0x80070003 when a Group Policy preference is applied to Windows 7 clients", but this did not change anything. (I only installed it onto the desktop; that seems to be where it belongs for my case.)
    I'm at a loss as to why this happens. The domain controllers agree the common option is set, and a gpupdate does otherwise succeed. Also, if I change the target to a location on a local drive of the computer, it works fine. I do not see the common option reflected
    in the output of gpresult,
    but I'm not sure if I should.

    Hi Ron,
    Before going further, how did we input the source file path and the destination file path? Did we input the paths as follows (t1.txt as an example):
    Action: Create
    Source file path: \\servername\sharename\username\documents\t1.txt
    Destination file path:\\servername\sharename\t1.txt
    Best regards,
    Frank Shen

  • Fault policy files in MDS repository is not working..

    Hi All,
    I have created my fault policy and fault bindings file and tested in my local project. It worked fine.
    To make it available in MDS,
    I added the files under JDeveloperHome/jdeveloper/integration/seed/apps/faulthandling
    I deployed this MDS repository to my server by the below method.
    I created a new generic application, then a generic project, to which I added a new Deployment Profile of type JAR file.
    To the JAR file, I added my folder in which the policy files exist. I created a SOA bundle from the ‘Applications’
    Then I deployed the project to my server finally.
    For all these things I refferred to
    http://www.orafmwschool.com/soa-11g-mds/
    Now in my adf-config.xml I have made changes as follows.
    <metadata-store-usage id="mstore-usage_2">
    <metadata-store class-name="oracle.mds.persistence.stores.file.FileMetadataStore">
    <property value="D:\StudyForInstalling\SOA11gHome\jdeveloper\integration" name="metadata-path"/>
    <property value="seed" name="partition-name"/>
    </metadata-store>
    </metadata-store-usage>
    Then in my composite.xml I have,
    <property name="oracle.composite.faultPolicyFile">oramds:/apps/faulthandling/fault-policies.xml</property>
    <property name="oracle.composite.faultBindingFile">oramds:/apps/faulthandling/fault-bindings.xml</property>
    I hav shutdown the partnerlink service.
    Now, I can see remote exception while executing. My fault policy files are not executing.
    In the same apps/ I have my PurchaseOrder.xsd file. When I tried importing the schema to my project from the mds, it is working fine.
    I used like this in my wsdl.
    <import namespace="http://www.order.org" schemaLocation="oramds:/apps/faulthandling/PurchaseOrder.xsd" />
    Why is my faultpolicy file not working?
    Kindly help me
    Thanks,
    Sabarisri .N

    I am not sure if we can use oramds references as properties values in composite.xml. Did you try with preferences ??

  • Fault policy files in MDS repository is not working 11g

    Hi All,
    I have created my fault policy and fault bindings file and tested in my local project. It worked fine.
    To make it available in MDS,
    I added the files under JDeveloperHome/jdeveloper/integration/seed/apps/faulthandling
    I deployed this MDS repository to my server by the below method.
    I created a new generic application, then a generic project, to which I added a new Deployment Profile of type JAR file.
    To the JAR file, I added my folder in which the policy files exist. I created a SOA bundle from the ‘Applications’
    Then I deployed the project to my server finally.
    For all these things I refferred to
    http://www.orafmwschool.com/soa-11g-mds/
    Now in my adf-config.xml I have made changes as follows.
    <metadata-store-usage id="mstore-usage_2">
    <metadata-store class-name="oracle.mds.persistence.stores.file.FileMetadataStore">
    <property value="D:\StudyForInstalling\SOA11gHome\jdeveloper\integration" name="metadata-path"/>
    <property value="seed" name="partition-name"/>
    </metadata-store>
    </metadata-store-usage>
    Then in my composite.xml I have,
    <property name="oracle.composite.faultPolicyFile">oramds:/apps/faulthandling/fault-policies.xml</property>
    <property name="oracle.composite.faultBindingFile">oramds:/apps/faulthandling/fault-bindings.xml</property>
    I hav shutdown the partnerlink service.
    Now, I can see remote exception while executing. My fault policy files are not executing.
    In the same apps/ I have my PurchaseOrder.xsd file. When I tried importing the schema to my project from the mds, it is working fine.
    I used like this in my wsdl.
    <import namespace="http://www.order.org" schemaLocation="oramds:/apps/faulthandling/PurchaseOrder.xsd" />
    Why is my faultpolicy file not working on MDS?  But, if pput the file on the source code this working fine, but get the policy to source not from MDS?
    Help me

    It could mean that the location for MDS in the code isn't correct.
    Can you re-verify the path provided for MDS?

  • Policy Files

    I am using WindowsNT and want to create a policy file named .java.policy ,however, windows will not allow me to create a file with a name beginning with a dot as it expects this to be preceded by a filename. How can I get round this?

    I am using WindowsNT and want to create a policy file
    named .java.policy ,however, windows will not allow me
    to create a file with a name beginning with a dot as
    it expects this to be preceded by a filename. How can
    I get round this?The simplest way to deal with the policy file is to use
    policytool, which is part of the SDK. This works in win98
    at least.
    lmd

  • How to create a file folder

    hi,
    The following codes throw an exception. The problem is that I can not create a folder "mytemp" under drive C. (Windows 2000)
    However, I have already given full permission to jre in the policy file.
    Can someone please tell me why? Thanks a lot.
    File outputFile = new File("c:\\mytemp\\my.txt");
    FileWriter out = new FileWriter(outputFile);
    out.write("555");
    out.close();

    Try
    this instead...
    regards,
    Owen
    File outputDir = new File ( "c:\\mytemp" );
    if ( !outputDir.exists() )
           outputDir.mkdir();
    File outputFile = new File("c:\\mytemp\\my.txt");
    FileWriter out = new FileWriter(outputFile);
    out.write("555");
    out.close();

  • Runtime parsing of policy.file - from source

    Hi All
    Decided to post here sinceI did not find any similar topic on forums and googling did not solve this.
    Is there any way to parse polic.file like input at runtime? PolicyTool. PolicyFile are classes that do that but:
    1. all methods are private so it does not give much place to have fun - cant make PolicyFile to read from StringReader for instance.
    2. they make immedaite changes to jvm wide Policy object ? without access to installed code sources.
    The question is is there a way to parse policy.file like data in a way that all goodies from PolicyFile are considered? - I mean keystore, principials, etc etc.
    Or is it perfectly legal to create CodeSource and permissions from what is passed and dont worry about location of keystore or verification of signature?

    You can work-around this by removing the language="java" altogether. The
              default is "java" and I don't expect anything else to be supported for a
              very long time to come!
              "kethidi" <[email protected]> wrote in message
              news:3d5bf557$[email protected]..
              > Parsing of JSP File '/jsp/default.jsp' failed:
              > /jsp/default.jsp(2): page directive language at /jsp/default.jsp:2
              previously defined at /jsp/CheckSession.jsp:1
              > probably occurred due to an error in /jsp/default.jsp line 2:
              > <%@ page language="java" import="com.pmi.mi.MIxmlbean"%>
              >
              >
              > I am getting this error, when I upgrade from weblogic5.1sp10 to
              weblogic7.0. The code is working fine when I use weblogic server 5.1 sp10.
              But it displayed the above error, when we convert to weblogc server 7.0.
              >
              > Thanks,
              > kethidi
              

Maybe you are looking for