Makepkg refuses to build due to depends array [solved]

Makepkg refuses to build a package based on the contents of the depends array.  My understanding is that the contents of the makedepends array are needed to build, but the contents of the depends array are needed to run the software.
Example, I want to build nvidia drivers for a kernel which I do not have installed.  I do have that specific kernel headers extracted (via a wrapper script) to $startdir/tar/lib/modules/${_kernver}/build
I get the following error when I try to build:
$ makepkg -s
==> Making package: nvidia-lts-ck 260.19.36-2 (Sun Jan 30 15:41:20 EST 2011)
==> Checking Runtime Dependencies...
==> Installing missing dependencies...
error: 'kernel26-lts-ck>=2.6.32': could not find or read package
==> ERROR: 'pacman' failed to install missing dependencies.
But if I comment out the depends array, it builds just fine.  What am I missed?
PKGBUILD:
# Maintainer: graysky <graysky AT archlinux DOT us>
# Contributer: Eric Belanger <[email protected]>
pkgname=nvidia-lts-ck
pkgver=260.19.36
_kernver='2.6.32-lts-ck'
pkgrel=2
pkgdesc="NVIDIA drivers for kernel26-lts-ck"
arch=('i686' 'x86_64')
url="http://www.nvidia.com/"
makedepends=('kernel26-lts-ck-headers>=2.6.32' 'kernel26-lts-ck-headers<2.6.33')
depends=('kernel26-lts-ck>=2.6.32' 'kernel26-lts-ck<2.6.33' "nvidia-utils=$pkgver")
provides=('nvidia')
license=('custom')
install=nvidia-lts-ck.install
if [ "$CARCH" = "i686" ]; then
_arch='x86'
_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run")
md5sums=('2826484d87827351774449382e45c4a9')
elif [ "$CARCH" = "x86_64" ]; then
_arch='x86_64'
_pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run")
md5sums=('6ebc5db9066e920b0b0e48377ce5eeb5')
fi
build() {
cd "${srcdir}"
sh ${_pkg}.run --extract-only
cd ${_pkg}/kernel
make SYSSRC=$startdir/tar/lib/modules/${_kernver}/build module
package() {
install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
"${pkgdir}/lib/modules/${_kernver}/kernel/drivers/video/nvidia.ko"
install -d -m755 "${pkgdir}/etc/modprobe.d"
echo "blacklist nouveau" >> "${pkgdir}/etc/modprobe.d/nouveau_blacklist-lts_ck.conf"
install -D -m644 "${srcdir}/${_pkg}/LICENSE" "${pkgdir}/usr/share/licenses/nvidia-lts-ck/LICENSE"
EDIT:  My bad... so accustomed to using the -s switch!  I now realize I need to makepkg -d to get this to work properly.
Last edited by graysky (2011-01-30 20:59:19)

Lone_Wolf wrote:tghe-retford, latest version of readline is      6.3.008-1 , is the mirror you selected up to date ?
https://www.archlinux.org/mirrors/status/
Finally managed to update it to 6.3.008-1, still gives the same error:
root@archiso ~ # pacman -Q readline
readline 6.3.008-1
root@archiso ~ #arch-chroot /mnt /bin/bash
/bin/bash: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory :(
127 root@archiso ~ #

Similar Messages

  • SOLVED /usr/bin/makepkg: line 552: build: command not found

    I'm trying to build a custom kernel, but am receiving this error:
    /usr/bin/makepkg: line 552: build: command not found
    I've searched all over for a fix, but haven't had any luck, it doesn't seem to be a common error, or it's so incredibly easy to fix that noone has bothered 
    Thanks for any help.
    /crobot

    Thanks for your response, it has failed on two builds, i'll post both.
    Here's the first:
    # $Id: PKGBUILD,v 1.26 2004/10/06 18:21:54 judd Exp $
    # Maintainer: judd <[email protected]>
    pkgname=kernel26
    pkgver=2.6.8.1
    pkgrel=3
    pkgdesc="The Linux Kernel and modules (IDE support)"
    url="http://www.kernel.org"
    backup=('boot/kconfig26')
    depends=('module-init-tools')
    install=kernel26.install
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2
    config cdburning.patch logo_linux_clut224.ppm
    bio_uncopy_user-mem-leak.patch bio_uncopy_user-mem-leak-fix.patch
    http://ftp.kernel.org/pub/linux/kernel/people/lenb/acpi/patches/release/26-stable-release/acpi-20040715-2.6.8.diff.bz2)
    md5sums=('9517ca999e822b898fbdc7e72796b1aa' '20ad5bea85099dfcced9a6b91064b04e'
    '66b87662e6dd54b6324f874739fa1b99' '5a62bcc7e96601052c7405459b483826'
    'd2329bc663089cd99b8dbfd25b6a7ebc' '15a9165ae02c4a3a3875fb7924a68cbf'
    'e00d08709581f215b15e321d162f782c')
    build() {
    cd $startdir/src/linux-$pkgver
    patch -Np1 -i ../bio_uncopy_user-mem-leak.patch || return 1
    patch -Np1 -i ../bio_uncopy_user-mem-leak-fix.patch || return 1
    patch -Np1 -i ../cdburning.patch || return 1
    #patch -Np1 -i ../acpi-20040715-2.6.8.diff || return 1
    # Arch logo!
    cp ../logo_linux_clut224.ppm drivers/video/logo/
    # get rid of the 'i' in i686
    carch=`echo $CARCH | sed 's|i||'`
    cat ../config | sed "s|#CARCH#|$carch|g" >./.config
    yes "" | make config
    make clean bzImage modules || return 1
    mkdir -p $startdir/pkg/{lib/modules,boot}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    cp System.map $startdir/pkg/boot/System.map26
    cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz26
    install -D -m644 Makefile $startdir/pkg/usr/src/linux-$pkgver/Makefile
    install -D -m644 .config $startdir/pkg/usr/src/linux-$pkgver/.config
    install -D -m644 .config $startdir/pkg/boot/kconfig26
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/include
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/arch/i386/kernel
    for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
    cp -a include/$i $startdir/pkg/usr/src/linux-$pkgver/include/
    done
    # copy files necessary for later builds, like nvidia and vmware
    cp -a scripts $startdir/pkg/usr/src/linux-$pkgver/
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/.tmp_versions
    cp arch/i386/Makefile $startdir/pkg/usr/src/linux-$pkgver/arch/i386/
    cp arch/i386/kernel/asm-offsets.s $startdir/pkg/usr/src/linux-$pkgver/arch/i386/kernel/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/`echo $i | sed 's|/Kconfig.*||'`
    cp $i $startdir/pkg/usr/src/linux-$pkgver/$i
    done
    cd $startdir/pkg/usr/src/linux-$pkgver/include && ln -s asm-i386 asm
    chown -R root.root $startdir/pkg/usr/src/linux-$pkgver
    cd $startdir/pkg/lib/modules/$pkgver &&
    (rm -f source build; ln -sf /usr/src/linux-$pkgver build)
    Here's the second:
    ###### Give the kernel a unique name (for multiple builds - can be empty)
    _kerrev=crobot
    ###### Choose generic name, version, and release. updated later for $_kerrev
    pkgname=kernel26
    pkgver=2.6.8.1
    pkgrel=1
    pkgdesc="Custom Linux Kernel and modules"
    url="http://www.kernel.org"
    depends=('module-init-tools')
    ###### Add a default config file and any patches to be applied to source array
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2)
    ###### Add md5 checksums here:
    #md5sum=()
    getvar() {
    old=$(cat Makefile | grep "^$1")
    echo $(echo ${old/"$1 ="/} | sed -e "s/[ ]*(.*)[ ]*/1/g")
    return 0
    build() {
    cd $startdir/src/linux-$pkgver
    ###### apply patches here
    # patch -p1 < ../patch1 #model
    #get rid of i in i686 in default config
    carch=`echo $CARCH | sed 's|i||'`
    cat ../config | sed "s|#CARCH#|$carch|g" >./.config
    ###### Choose one of the following configuration types
    ###### Use first option for config in source array
    #yes "" | make config
    #make oldconfig || return 1
    make menuconfig
    #make xconfig
    #make gconfig
    ##### No user changes below here
    # save the configuration with today's date
    cp ./.config ../../NEWCONFIG-$(date +%b%d)
    # set EXTRAVERSION to create unique /lib/modules/ subdirectories
    _ker_extraversion=$(getvar "EXTRAVERSION")
    # update EXTRAVERSION in the Makefile by adding our _kerrev
    _oldline=$(cat Makefile | grep "^EXTRAVERSION")
    if [ $_kerrev != "" ]; then
    _ker_extraversion="$_ker_extraversion-$_kerrev"
    cat Makefile | sed "s|$_oldline|EXTRAVERSION = $_ker_extraversion|" > tmpMake
    mv tmpMake Makefile
    fi
    _kerrev=$_ker_extraversion
    kerver=$(getvar "VERSION").$(getvar "PATCHLEVEL").$(getvar "SUBLEVEL")
    # update the package information from the kernel Makefile
    # (just in case the Makefile changed during a patch)
    pkgver=$kerver$(echo $_kerrev | sed -e 's/-/./g')
    pkgdesc="Custom Linux Kernel and modules version: $kerver revision: $_kerrev /
    package ver: $pkgver build: $pkgrel"
    # changing the package name
    # removing patches versions from the revision string
    _t=$(echo $_kerrev | sed -e "s/^..[0-9]*//g")
    # _t=$(echo $_t | sed -e "s/^-rc[0-9]?*//g")
    # _suf contains the suffix identifying the kernel (it has the versions removed from
    it)
    _suf=$(echo $_t | sed -e "s/[0-9]*-/-/g")
    pkgname=kernel26$_suf
    echo "Package name: $pkgname"
    echo "Package ver: $pkgver"
    echo "Package desc: $pkgdesc"
    sleep 5
    make clean bzImage modules || return 1
    mkdir -p $startdir/pkg/{lib/modules,boot}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    # create unique names in /boot/
    cp System.map $startdir/pkg/boot/System.map26$_suf
    cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz26$_suf
    install -D -m644 Makefile $startdir/pkg/usr/src/linux-$kerver/Makefile
    install -D -m644 .config $startdir/pkg/usr/src/linux-$kerver/.config
    install -D -m644 .config $startdir/pkg/boot/kconfig26$_suf
    mkdir -p $startdir/pkg/usr/src/linux-$kerver/include
    mkdir -p $startdir/pkg/usr/src/linux-$kerver/arch/i386/kernel
    for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
    cp -a include/$i $startdir/pkg/usr/src/linux-$kerver/include/
    done
    # copy files necessary for later builds, like nvidia and vmware
    cp -a scripts $startdir/pkg/usr/src/linux-$kerver/
    mkdir -p $startdir/pkg/usr/src/linux-$kerver/.tmp_versions
    cp arch/i386/Makefile $startdir/pkg/usr/src/linux-$kerver/arch/i386/
    cp arch/i386/kernel/asm-offsets.s
    $startdir/pkg/usr/src/linux-$kerver/arch/i386/kernel/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p $startdir/pkg/usr/src/linux-$kerver/`echo $i | sed 's|/Kconfig.*||'`
    cp $i $startdir/pkg/usr/src/linux-$kerver/$i
    done
    cd $startdir/pkg/usr/src/linux-$kerver/include && ln -s asm-i386 asm
    chown -R root.root $startdir/pkg/usr/src/linux-$kerver
    # create a unique subdirectory under /usr/src/
    cd $startdir/pkg/usr/src
    mv linux-$kerver linux-$kerver$_kerrev
    cd $startdir/pkg/lib/modules/$kerver$_kerrev &&
    (rm -f build; ln -sf /usr/src/linux-$kerver$_kerrev build)
    Thanks,
    /crobot

  • How to make net due date dependent on Payment Terms in credit memo FB75

    Hi Experts,
    In our system currently when we create credit memo using tcode FB75 system makes the invoive due immediately.
    We wanted to make this net due date dependent on payment terms given by us. Please let me know how can I achieve this..
    Please let me know if there is any user exit there or the configration path to achieve this...
    Regards,
    Vidya

    Hi,
    "vbdkr-zterm. is nothing but Payment terms
    *   Fetching Payment term details
        SELECT SINGLE * FROM t052 INTO w_t052 WHERE zterm = vbdkr-zterm.
        IF sy-subrc = 0.
          CLEAR i_faede.
          MOVE-CORRESPONDING w_t052 TO i_faede.
          MOVE: w_t052-ztag1 TO i_faede-zbd1t,
          w_t052-ztag2 TO i_faede-zbd2t,
          w_t052-ztag3 TO i_faede-zbd3t.
          i_faede-bldat = BKPF-budat.                         "this is Importnat posting date
          i_faede-koart = 'D'.
    *     Fetching Due date using Function Module
          CALL FUNCTION 'DETERMINE_DUE_DATE'
            EXPORTING
              i_faede                    = i_faede
            IMPORTING
              e_faede                    = e_faede
            EXCEPTIONS
              account_type_not_supported = 1
              OTHERS                     = 2.
          IF sy-subrc <> 0.
          ENDIF.
          w_invdate = e_faede-netdt.              "this field contains Net due date...
        ENDIF.
    Prabhudas

  • FI: Payment condition calculating 2 due-dates depending on document-date

    Hello community!
    I'm searching for a definiton of a FI-payment-condition which is calculating two different due-dates depending on document-date.
    E.g.:
    Invoices dated from 01.03.08 till 09.03.08 should be paid on 10.04.08.
    Invoices dated from 10.03.08 till 31.03.08 should be paid on 10.05.08.
    Or must this be realized by a FI-substitution???
    Thanks for an answer.
    Kind regards,
    Bernd

    Hello,
    You didnot mention if u need posting date as base or document date. However your scenario, below is
    the answer for your query is
    1. Create one customised payment term only eg. XXX
        for first scenario,
       Day limit is 9 ;
       under payment terms tab , fixed date 10, Addl month 1
       for second scenario
       in the same payment term XXX
       Day limit is 31,
       under payment terms tab , fixed date 10, addl month 2.
    Explanation.
      as day limit is 9, what ever the dates of transaction between 1-9 it picks first setting
    and after 9th until 31st it picks second setting.
    I hope this clarifies you.
    Thanks
    G.Bharathi

  • ERROR installing: WARNING:Payload cannot be installed due to dependent operation failure

    I have Illustrator CS5, yesterday it was acting funny. I unistalled and an reloaded it. It will not install now? it is giving me the following message:WARNING: Payload cannot be installed due to dependent operation failure.
    Please advise

    nobody can tell you anything without proper system info and other technical details.
    Mylenium

  • Versionpkg: a makepkg wrapper for building CVS/SVN pkgs

    I thought I had posted about this before!  But I guess not...
    I had the idea for versionpkg while creating the Arch CVS/SVN PKGBUILD guidelines on the wiki.
    versionpkg is a very simple script that allows you to easily update your CVS and SVN packages without having to edit the PKGBUILDS manually to enter the date or revision number.
    Simply run this script rather than makepkg in the build dir. This script completely removes the need for backtick execution in PKGBUILDS.
    You do need some special variables in your PKGBUILD but if everyone follows the guidelines when submitting to the AUR everyone can use versionpkg to stay up to date.
    You can get versionpkg from [community] simply by running pacman -S versionpkg

    OK - but if I do that, the recommended checkout command i.e.
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
    equates to
    svn co svn://svn.shaftnet.org/linux-wlan-ng/ --config-dir ./ -r 1756 trunk
    which checks out not only trunk, but also branches and tags - in other words, multiple versions of the source code, instead of just one. I'm running it at the moment and it's gone back as far v0.1.16  - current is v0.2.2.
    So I think I'll leave it as it is........

  • WARNING: DW036: Payload cannot be installed due to dependent operation failure

    WARNING: DW036: Payload cannot be installed due to dependent operation failure

    You might want to close the browser window while installing the application.
    Try rebooting the machine and clearing the temp files and check.
    For further help, please provide us more details like the application you are trying to install, OS, etc.

  • CS5 setup impossible : WARNING: Payload cannot be installed due to dependent operation failure...

    Please Help
    ! it's a nightmare,
    I have mailnly this : What the hell is this ? Help please
    I'm on Windows 7 - 64...
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 65 error(s), 65 warning(s)
    WARNING: OS requirements not met for {694213D7-1E0E-4C8F-B822-E2E3680C0FCE}
    WARNING: OS requirements not met for {CFC9F871-7C40-40B6-BE4A-B98A5B309716}
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure

    @Matthew Laun:
    Hopefully you can help me! I am going absolutely nuts!  I have a 32-bit OS (Windows Vista) and am having this installation issue Flash CS5 (selecting trial when installing). Here is a link to full error log: https://www.yousendit.com/download/dklyZGVRTXZUME0wTVE9PQ.
    Note: I installed Dreamweaver CS5 a few months ago with no issue at all. Both trial and then purchased software.
    Thank you in advance for any assistance!
    I have also just listed it here:
    [    4588] Tue Nov 09 14:49:49 2010  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 3.0.121.0
    Win OS version: 6.0.1.0  Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming install mode
    ::START TIMER:: [Bootstrap]
    Perform Bootstrapping ...
    :: END TIMER :: [Bootstrap] took 40453.7 miliseconds (40.4537 seconds) DTR = 14.1396 KBPS (0.0138082 MBPS)
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 7166.45 miliseconds (7.16645 seconds) DTR = 1068.31 KBPS (1.04327 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5
    Updating media info for: {02731921-5711-4E7A-A898-D6BCF0F2A1CD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCSXSInfrastructure2-mul\Install.db
    Updating media info for: {033E378E-6AD3-4AD5-BDEB-CBD69B31046C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_ATL_x86\Microsoft_VC90_ATL_x86.msi
    Updating media info for: {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeAMP1.8-mul\AdobeAIRInstaller.exe
    Updating media info for: {03EEF3DA-71F9-4FE5-92AD-D10142E26459}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\SiteCatalystNetAverages1-mul\Install.db
    Updating media info for: {0669F23C-1B69-41B4-A3ED-4F54A5986D66}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeLinguisticsAll_x64\Install.db
    Updating media info for: {08D2E121-7F6A-43EB-97FD-629B44903403}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_CRT_x86\Microsoft_VC90_CRT_x86.msi
    Updating media info for: {0A7D8837-ABAD-4C29-8F2F-1916B7A07AE2}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-zh_CN\Install.db
    Updating media info for: {0D067D13-C3D7-4EA6-B346-740CD91FD547}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeBridge4-mul\Install.db
    Updating media info for: {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC80_ATL_x86\Microsoft_VC80_ATL_x86.msi
    Updating media info for: {14A2CC02-4638-405D-8190-ECD7BFD32D6E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeFlash11-en_USLanguagePack\Install.db
    Updating media info for: {17C6080E-F475-4B49-A30C-EEB85673E999}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobePDFL9.9_x64-mul\Install.db
    Updating media info for: {1D809D80-28A4-11DF-A816-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-en_US\Install.db
    Updating media info for: {1D830E80-28A4-11DF-A025-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-en_GB\Install.db
    Updating media info for: {1D855870-28A4-11DF-9731-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-de_DE\Install.db
    Updating media info for: {1D87C970-28A4-11DF-BC69-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-fr_FR\Install.db
    Updating media info for: {1D87C971-28A4-11DF-A2FB-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-fr_CA\Install.db
    Updating media info for: {1D87C972-28A4-11DF-B794-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-ja_JP\Install.db
    Updating media info for: {1D8A135E-28A4-11DF-B54E-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-it_IT\Install.db
    Updating media info for: {1D8A135F-28A4-11DF-A7C5-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-es_ES\Install.db
    Updating media info for: {1D8A1360-28A4-11DF-B5B3-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-es_MX\Install.db
    Updating media info for: {1D8C8461-28A4-11DF-871D-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-nl_NL\Install.db
    Updating media info for: {1D8EF561-28A4-11DF-9561-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-sv_SE\Install.db
    Updating media info for: {1D8EF562-28A4-11DF-8D7D-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-fi_FI\Install.db
    Updating media info for: {1D8EF563-28A4-11DF-AF1B-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-nb_NO\Install.db
    Updating media info for: {1D913F4F-28A4-11DF-AE84-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-da_DK\Install.db
    Updating media info for: {1D913F50-28A4-11DF-A78A-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-pt_BR\Install.db
    Updating media info for: {1D913F51-28A4-11DF-91B7-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-zh_CN\Install.db
    Updating media info for: {1D93B04F-28A4-11DF-AA22-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-zh_TW\Install.db
    Updating media info for: {1D93B050-28A4-11DF-B472-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-ko_KR\Install.db
    Updating media info for: {1D93B051-28A4-11DF-A202-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-cs_CZ\Install.db
    Updating media info for: {1D95FA40-28A4-11DF-90FF-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-pl_PL\Install.db
    Updating media info for: {1D95FA41-28A4-11DF-85FA-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-ru_RU\Install.db
    Updating media info for: {1D95FA42-28A4-11DF-9C38-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-tr_TR\Install.db
    Updating media info for: {1D986B40-28A4-11DF-BD12-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-uk_UA\Install.db
    Updating media info for: {1D986B41-28A4-11DF-BCC6-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-hu_HU\Install.db
    Updating media info for: {1DA90D10-28A4-11DF-937C-0024E8692489}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\DeviceCentral3LP-ro_RO\Install.db
    Updating media info for: {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-en_US\Install.db
    Updating media info for: {2CDBD42B-6184-41BD-9662-A13C3BA09BFA}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-it_IT\Install.db
    Updating media info for: {2E18F0BB-569A-4788-A276-FAA40BB923F0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-ja_JP\Install.db
    Updating media info for: {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeXMPPanelsAll\Install.db
    Updating media info for: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeAPE3-mul\Install.db
    Updating media info for: {30221E3E-4C47-4560-A296-DD9ABB500C21}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-mul\Install.db
    Updating media info for: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeSuiteSharedConfiguration-mul\Install.db
    Updating media info for: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCameraRaw6.0All\Install.db
    Updating media info for: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorCommonSetCMYK3-mul\Install.db
    Updating media info for: {3BF96AC2-0CA1-11DF-B07B-459956D89593}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeHelp\AIRInstallerRunner.exe
    Updating media info for: {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCameraRawProfile6.0All\Install.db
    Updating media info for: {40F95A03-885A-45fb-9A14-486BEFEDDF34}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeFlashPlayer10_plRel_mul\AdobeFlashPlayer10_plRel_mul.msi
    Updating media info for: {4423F304-2C6B-49FB-AB2C-6C7649A5ED21}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-nl_NL\Install.db
    Updating media info for: {44F29300-6E52-496A-9B77-531A68E8508A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-zh_TW\Install.db
    Updating media info for: {54F4466A-091A-46DA-B697-43D55CEF9DF6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorJA_ExtraSettings3-mul\Install.db
    Updating media info for: {56540320-C921-1029-83D9-FE864D1FC1DF}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeReviewPanel2-mul\Install.db
    Updating media info for: {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-mul\Install.db
    Updating media info for: {593B4750-2F16-4193-A3FA-40F49BD7A906}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-ru_RU\Install.db
    Updating media info for: {597059F2-9EC9-46A5-9EA2-BDBDF354732B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-ko_KR\Install.db
    Updating media info for: {5E08533A-2C1B-469D-AFD5-953C9D00031F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\BrowserLabCSLive-mul\Install.db
    Updating media info for: {61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCameraRaw6.0All-x64\Install.db
    Updating media info for: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\iPhone_Flash11-mul\Install.db
    Updating media info for: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_MFC_x86\Microsoft_VC90_MFC_x86.msi
    Updating media info for: {66173EC7-974E-4652-9468-4A93D2481BF0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeStoryExtension-mul\Install.db
    Updating media info for: {68CEA5C9-2964-4ECB-84A4-D77C511332BC}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AMECore5All_x64\Install.db
    Updating media info for: {694213D7-1E0E-4C8F-B822-E2E3680C0FCE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AMECore5All\Install.db
    Updating media info for: {6C7D437A-D2E9-4FE9-A4D9-A6329860835C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeLinguisticsAll\Install.db
    Updating media info for: {6D96660C-1444-410E-9A84-681C0AFB8937}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobePDFSettings10-mul\AdobePDFSettings10-mul.msi
    Updating media info for: {6E505C8F-2896-11DF-9B64-0013724DD917}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeDeviceCentral3-all\Install.db
    Updating media info for: {6F29BE46-E5F3-4146-8A84-20301E5C985A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorEU_ExtraSettings3-mul\Install.db
    Updating media info for: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeTypeSupport10-mul\Install.db
    Updating media info for: {73083037-24CD-4F25-AE12-100EBE3B198D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-fr_FR\Install.db
    Updating media info for: {76BF7895-72EB-4DFC-8FF9-2007A8228D9C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-zh_TW\Install.db
    Updating media info for: {76F9EEBC-B28D-475B-921E-84271789649C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-tr_TR\Install.db
    Updating media info for: {78A53622-CDBA-49D1-A3D0-D563FB398D0C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorCommonSetRGB3-mul\Install.db
    Updating media info for: {7A33510F-1580-42C2-877E-8C5502566292}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeAPE3_x64-mul\Install.db
    Updating media info for: {7B84FFBD-594D-4269-AC87-E19B44417B8F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-de_DE\Install.db
    Updating media info for: {7E5AA19B-0B85-4f44-BA26-728851489200}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeFlashPlayer10_axRel_mul\AdobeFlashPlayer10_axRel_mul.msi
    Updating media info for: {8557397C-A42D-486F-97B3-A2CBC2372593}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_ATL_x86_x64\Microsoft_VC90_ATL_x86_x64.msi
    Updating media info for: {880E072B-D613-4D7A-BD22-55AD5D22C2A9}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-zh_CN\Install.db
    Updating media info for: {8B28A565-4AAD-4803-8EE8-F1791E6AD4AC}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-pl_PL\Install.db
    Updating media info for: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCSXSExtensions2-mul\Install.db
    Updating media info for: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeOutputModuleAll\Install.db
    Updating media info for: {92A3CA0D-55CD-4C5D-BA95-5C2600C20F26}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_CRT_x86_x64\Microsoft_VC90_CRT_x86_x64.msi
    Updating media info for: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC80_CRT_x86\Microsoft_VC80_CRT_x86.msi
    Updating media info for: {955EB78F-C938-4EA8-8470-C6EA71685834}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-en_US\Install.db
    Updating media info for: {95648BD5-9496-4BB7-BE93-303FDB5B6B72}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-pt_BR\Install.db
    Updating media info for: {98DD55B6-C58C-462F-B8A4-F0585BFEBB15}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCMaps3_x64-mul\Install.db
    Updating media info for: {9A8B01C5-78D1-465F-B5F6-BD59B7800EC7}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeTypeSupport10_x64-mul\Install.db
    Updating media info for: {9D2819E4-C51E-4C89-8E28-673B9909A536}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-es_ES\Install.db
    Updating media info for: {A472B9E4-0AFF-4F7B-B25D-F64F8E928AAB}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC90_MFC_x86_x64\Microsoft_VC90_MFC_x86_x64.msi
    Updating media info for: {A8798E04-96FF-4564-9157-0D4C89CB794C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeDynamiclinkSupport5All\Install.db
    Updating media info for: {AE9B837F-D135-42FC-BE03-33545B5DCBDC}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeWinSoftLinguisticsPluginAll\Install.db
    Updating media info for: {B2518294-C06E-44F2-8B1E-1002DD41A6B3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-fr_FR\Install.db
    Updating media info for: {B55FDCCB-8A45-4943-8D90-585C3490A032}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeWinSoftLinguisticsPluginAll_x64\Install.db
    Updating media info for: {B60B8713-F828-44F9-BEEE-7596F814E540}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorEU_Recommended3-mul\Install.db
    Updating media info for: {BAE5212B-6651-4AD8-B26A-1B284D2665C6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobePDFL9.9-mul\Install.db
    Updating media info for: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeCMaps3-mul\Install.db
    Updating media info for: {BD4CFD2A-02C1-4FBE-AF9E-863A9981421A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-sv_SE\Install.db
    Updating media info for: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorNA_ExtraSettings3-mul\Install.db
    Updating media info for: {C26277B5-5561-4C5C-85E9-D777E0386F6E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-ja_JP\Install.db
    Updating media info for: {C52DC2CA-7BEE-440A-8A0F-23EBA0D3A00D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-es_ES\Install.db
    Updating media info for: {C533676C-7A2F-4BCC-BA04-439C93C6DC0F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-pt_BR\Install.db
    Updating media info for: {C9A98E0C-B50E-472A-ADCC-2830F48EF91D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-nl_NL\Install.db
    Updating media info for: {CC62B471-53FE-4451-8867-F3AA43F3FA31}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-cs_CZ\Install.db
    Updating media info for: {CE0BF4F8-F592-4461-91AE-7C15AF19CFDF}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-ko_KR\Install.db
    Updating media info for: {CE8FB687-571B-4E4B-881B-445824993FC3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-de_DE\Install.db
    Updating media info for: {CFA46C39-C539-4BE9-9364-495003C714AD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\SwitchBoard2.0All\Install.db
    Updating media info for: {CFC9F871-7C40-40B6-BE4A-B98A5B309716}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeFlash11-mul\Install.db
    Updating media info for: {D1A19B02-817E-4296-A45B-07853FD74D57}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC80_MFC_x86\Microsoft_VC80_MFC_x86.msi
    Updating media info for: {D26EEF95-420A-4726-B85D-AFBE752EF526}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorNA_Recommended3-mul\Install.db
    Updating media info for: {D343E9D0-DD59-45CD-8939-896660D70435}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-tr_TR\Install.db
    Updating media info for: {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\aifsdk-win\Install.db
    Updating media info for: {D92BBB52-82FF-42ED-8A3C-4E062F944AB7}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Microsoft_VC80_MFCLOC_x86\Microsoft_VC80_MFCLOC_x86.msi
    Updating media info for: {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobePDFSettings10-ja_JP\AdobePDFSettings10-ja_JP.msi
    Updating media info for: {E319B9F9-4DE6-462C-970B-77D06C7807EE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\Players_Flash11-mul\Install.db
    Updating media info for: {E3354D9C-31B9-4391-8004-92B3FF074762}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-ru_RU\Install.db
    Updating media info for: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeExtensionManager5.0All\Install.db
    Updating media info for: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeColorJA_Recommended3-mul\Install.db
    Updating media info for: {E5DD149F-8370-48F9-A32C-2E3DC776CFFB}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeJRECS5-mul\Install.db
    Updating media info for: {E796AA2F-D55C-47D6-887F-24B90AC5151B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-pl_PL\Install.db
    Updating media info for: {E995AC53-954A-48D2-A861-613B8D42A9BE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeExtendScriptToolkit3.5.0-mul\Install.db
    Updating media info for: {ECB4C6D6-54BF-40FD-96ED-80F36CFE11EA}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeMobileExtension_Flash11-cs_CZ\Install.db
    Updating media info for: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\TLF_Flash11-mul\Install.db
    Updating media info for: {F6FA54C9-3E8F-4416-905C-DA5398DF9640}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AdobeAIR1.5.3-mul\AdobeAIRInstaller.exe
    Updating media info for: {F9E77304-0ACA-454A-AFD5-9B79CF94B184}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-it_IT\Install.db
    Updating media info for: {FBF38B3A-1D5D-4CD6-930F-C5B8097011F6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe Flash Professional CS5
      Path: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5\payloads\AIR2_Flash11-sv_SE\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,3.0.121.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    [    4588] Tue Nov 09 14:49:50 2010  INFO
    ______ Verify Dependency Subscribers ______
    [    4588] Tue Nov 09 14:49:50 2010 ERROR
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: Adobe Player for Embedding x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: Shared Technology
        ProductName: Photoshop Camera Raw (64 bit)
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: AdobeCMaps x64 CS5
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: Adobe Linguistics CS5 x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: AdobePDFL x64 CS5
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: AdobeTypeSupport x64 CS5
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has required dependency on:
        Family: CoreTech
        ProductName: Adobe WinSoft Linguistics Plugin CS5 x64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this dependency from list. Product may function improperly.
    [    4588] Tue Nov 09 14:49:50 2010  WARN
    The payload with AdobeCode:  {CFC9F871-7C40-40B6-BE4A-B98A5B309716} has recommended dependency on:
        Family: Adobe Web Suite CS5
        ProductName: Adobe Media Encoder CS5 X64
        MinVersion: 0.0.0.0
        This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
        Removing this payload from the dependency list.
    [    4588] Tue Nov 09 14:49:50 2010  INFO
    Setting property "INSTALLDIR" to: C:\Program Files\Adobe
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Setting property "installSourcePath" to: C:\Users\Owner\Documents\Programs\Adobe Flash Professional CS5
    Overwrite property "userASUPath" to: C:\Users\Owner\AppData\Local\Adobe\OOBE\PDApp\
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {D7BF3B76-EEF9-4868-9B2B-42ABF60B279A} Microsoft_VC80_CRT_x86 is: true
    Action string for  {D7BF3B76-EEF9-4868-9B2B-42ABF60B279A} Microsoft_VC80_CRT_x86  is none
    Value returned on lookup of payload: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 is: true
    Action string for  {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86  is none
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 is: true
    Action string for  {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86  is none
    Value returned on lookup of payload: {D92BBB52-82FF-42ED-8A3C-4E062F944AB7} Microsoft_VC80_MFCLOC_x86 is: true
    Action string for  {D92BBB52-82FF-42ED-8A3C-4E062F944AB7} Microsoft_VC80_MFCLOC_x86  is none
    Value returned on lookup of payload: {D1A19B02-817E-4296-A45B-07853FD74D57} Microsoft_VC80_MFC_x86 is: true
    Action string for  {D1A19B02-817E-4296-A45B-07853FD74D57} Microsoft_VC80_MFC_x86  is none
    Value returned on lookup of payload: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding is: true
    Action string for  {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding  is none
    Value returned on lookup of payload: {033E378E-6AD3-4AD5-BDEB-CBD69B31046C} Microsoft_VC90_ATL_x86 is: true
    Action string for  {033E378E-6AD3-4AD5-BDEB-CBD69B31046C} Microsoft_VC90_ATL_x86  is none
    Value returned on lookup of payload: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 is: true
    Action string for  {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86  is none
    Value returned on lookup of payload: {E5DD149F-8370-48F9-A32C-2E3DC776CFFB} AdobeJRE is: true
    Action string for  {E5DD149F-8370-48F9-A32C-2E3DC776CFFB} AdobeJRE  is none
    Value returned on lookup of payload: {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer is: false
    Action string for  {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer  is none
    Value returned on lookup of payload: {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25} Microsoft_VC80_ATL_x86 is: true
    Action string for  {0F3647F8-E51D-4FCC-8862-9A8D0C5ACF25} Microsoft_VC80_ATL_x86  is none
    Value returned on lookup of payload: {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5 is: true
    Action string for  {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5  is none
    Value returned on lookup of payload: {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport is: false
    Action string for  {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport  is none
    Value returned on lookup of payload: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5 is: true
    Action string for  {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5  is none
    Value returned on lookup of payload: {3BF96AC2-0CA1-11DF-B07B-459956D89593} AdobeHelp is: true
    Action string for  {3BF96AC2-0CA1-11DF-B07B-459956D89593} AdobeHelp  is none
    Value returned on lookup of payload: {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5 is: false
    Action string for  {2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 is: false
    Action string for  {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5  is none
    Value returned on lookup of payload: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule is: false
    Action string for  {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule  is none
    Value returned on lookup of payload: {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 is: false
    Action string for  {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 is: false
    Action string for  {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5  is none
    Value returned on lookup of payload: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw is: false
    Action string for  {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw  is none
    Value returned on lookup of payload: {E995AC53-954A-48D2-A861-613B8D42A9BE} Adobe ExtendScript Toolkit CS5 is: true
    Action string for  {E995AC53-954A-48D2-A861-613B8D42A9BE} Adobe ExtendScript Toolkit CS5  is none
    Value returned on lookup of payload: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 is: true
    Action string for  {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5  is none
    Value returned on lookup of payload: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5 is: true
    Action string for  {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5  is none
    Value returned on lookup of payload: {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C} Pixel Bender Toolkit is: false
    Action string for  {D5CC77BE-BC5B-424E-8E45-DF60AFF7BE9C} Pixel Bender Toolkit  is none
    Value returned on lookup of payload: {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro is: false
    Action string for  {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro  is none
    Value returned on lookup of payload: {0A7D8837-ABAD-4C29-8F2F-1916B7A07AE2} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_CN is: false
    Action string for  {0A7D8837-ABAD-4C29-8F2F-1916B7A07AE2} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_CN  is none
    Payload {0A7D8837-ABAD-4C29-8F2F-1916B7A07AE2} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_CN is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {F9E77304-0ACA-454A-AFD5-9B79CF94B184} AIR2 For Adobe Flash Pro_AIR2_Flash11-it_IT is: false
    Action string for  {F9E77304-0ACA-454A-AFD5-9B79CF94B184} AIR2 For Adobe Flash Pro_AIR2_Flash11-it_IT  is none
    Payload {F9E77304-0ACA-454A-AFD5-9B79CF94B184} AIR2 For Adobe Flash Pro_AIR2_Flash11-it_IT is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {593B4750-2F16-4193-A3FA-40F49BD7A906} AIR2 For Adobe Flash Pro_AIR2_Flash11-ru_RU is: false
    Action string for  {593B4750-2F16-4193-A3FA-40F49BD7A906} AIR2 For Adobe Flash Pro_AIR2_Flash11-ru_RU  is none
    Payload {593B4750-2F16-4193-A3FA-40F49BD7A906} AIR2 For Adobe Flash Pro_AIR2_Flash11-ru_RU is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {C26277B5-5561-4C5C-85E9-D777E0386F6E} AIR2 For Adobe Flash Pro_AIR2_Flash11-ja_JP is: false
    Action string for  {C26277B5-5561-4C5C-85E9-D777E0386F6E} AIR2 For Adobe Flash Pro_AIR2_Flash11-ja_JP  is none
    Payload {C26277B5-5561-4C5C-85E9-D777E0386F6E} AIR2 For Adobe Flash Pro_AIR2_Flash11-ja_JP is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {44F29300-6E52-496A-9B77-531A68E8508A} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_TW is: false
    Action string for  {44F29300-6E52-496A-9B77-531A68E8508A} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_TW  is none
    Payload {44F29300-6E52-496A-9B77-531A68E8508A} AIR2 For Adobe Flash Pro_AIR2_Flash11-zh_TW is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {4423F304-2C6B-49FB-AB2C-6C7649A5ED21} AIR2 For Adobe Flash Pro_AIR2_Flash11-nl_NL is: false
    Action string for  {4423F304-2C6B-49FB-AB2C-6C7649A5ED21} AIR2 For Adobe Flash Pro_AIR2_Flash11-nl_NL  is none
    Payload {4423F304-2C6B-49FB-AB2C-6C7649A5ED21} AIR2 For Adobe Flash Pro_AIR2_Flash11-nl_NL is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US is: false
    Action string for  {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US  is none
    Payload {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {9D2819E4-C51E-4C89-8E28-673B9909A536} AIR2 For Adobe Flash Pro_AIR2_Flash11-es_ES is: false
    Action string for  {9D2819E4-C51E-4C89-8E28-673B9909A536} AIR2 For Adobe Flash Pro_AIR2_Flash11-es_ES  is none
    Payload {9D2819E4-C51E-4C89-8E28-673B9909A536} AIR2 For Adobe Flash Pro_AIR2_Flash11-es_ES is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {FBF38B3A-1D5D-4CD6-930F-C5B8097011F6} AIR2 For Adobe Flash Pro_AIR2_Flash11-sv_SE is: false
    Action string for  {FBF38B3A-1D5D-4CD6-930F-C5B8097011F6} AIR2 For Adobe Flash Pro_AIR2_Flash11-sv_SE  is none
    Payload {FBF38B3A-1D5D-4CD6-930F-C5B8097011F6} AIR2 For Adobe Flash Pro_AIR2_Flash11-sv_SE is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {C533676C-7A2F-4BCC-BA04-439C93C6DC0F} AIR2 For Adobe Flash Pro_AIR2_Flash11-pt_BR is: false
    Action string for  {C533676C-7A2F-4BCC-BA04-439C93C6DC0F} AIR2 For Adobe Flash Pro_AIR2_Flash11-pt_BR  is none
    Payload {C533676C-7A2F-4BCC-BA04-439C93C6DC0F} AIR2 For Adobe Flash Pro_AIR2_Flash11-pt_BR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {CC62B471-53FE-4451-8867-F3AA43F3FA31} AIR2 For Adobe Flash Pro_AIR2_Flash11-cs_CZ is: false
    Action string for  {CC62B471-53FE-4451-8867-F3AA43F3FA31} AIR2 For Adobe Flash Pro_AIR2_Flash11-cs_CZ  is none
    Payload {CC62B471-53FE-4451-8867-F3AA43F3FA31} AIR2 For Adobe Flash Pro_AIR2_Flash11-cs_CZ is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {CE8FB687-571B-4E4B-881B-445824993FC3} AIR2 For Adobe Flash Pro_AIR2_Flash11-de_DE is: false
    Action string for  {CE8FB687-571B-4E4B-881B-445824993FC3} AIR2 For Adobe Flash Pro_AIR2_Flash11-de_DE  is none
    Payload {CE8FB687-571B-4E4B-881B-445824993FC3} AIR2 For Adobe Flash Pro_AIR2_Flash11-de_DE is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {D343E9D0-DD59-45CD-8939-896660D70435} AIR2 For Adobe Flash Pro_AIR2_Flash11-tr_TR is: false
    Action string for  {D343E9D0-DD59-45CD-8939-896660D70435} AIR2 For Adobe Flash Pro_AIR2_Flash11-tr_TR  is none
    Payload {D343E9D0-DD59-45CD-8939-896660D70435} AIR2 For Adobe Flash Pro_AIR2_Flash11-tr_TR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {597059F2-9EC9-46A5-9EA2-BDBDF354732B} AIR2 For Adobe Flash Pro_AIR2_Flash11-ko_KR is: false
    Action string for  {597059F2-9EC9-46A5-9EA2-BDBDF354732B} AIR2 For Adobe Flash Pro_AIR2_Flash11-ko_KR  is none
    Payload {597059F2-9EC9-46A5-9EA2-BDBDF354732B} AIR2 For Adobe Flash Pro_AIR2_Flash11-ko_KR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {73083037-24CD-4F25-AE12-100EBE3B198D} AIR2 For Adobe Flash Pro_AIR2_Flash11-fr_FR is: false
    Action string for  {73083037-24CD-4F25-AE12-100EBE3B198D} AIR2 For Adobe Flash Pro_AIR2_Flash11-fr_FR  is none
    Payload {73083037-24CD-4F25-AE12-100EBE3B198D} AIR2 For Adobe Flash Pro_AIR2_Flash11-fr_FR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {E796AA2F-D55C-47D6-887F-24B90AC5151B} AIR2 For Adobe Flash Pro_AIR2_Flash11-pl_PL is: false
    Action string for  {E796AA2F-D55C-47D6-887F-24B90AC5151B} AIR2 For Adobe Flash Pro_AIR2_Flash11-pl_PL  is none
    Payload {E796AA2F-D55C-47D6-887F-24B90AC5151B} AIR2 For Adobe Flash Pro_AIR2_Flash11-pl_PL is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {F6FA54C9-3E8F-4416-905C-DA5398DF9640} Adobe AIR is: true
    Action string for  {F6FA54C9-3E8F-4416-905C-DA5398DF9640} Adobe AIR  is none
    Value returned on lookup of payload: {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live is: false
    Action string for  {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live  is none
    Value returned on lookup of payload: {7E5AA19B-0B85-4f44-BA26-728851489200} Adobe Flash Player 10 ActiveX is: false
    Action string for  {7E5AA19B-0B85-4f44-BA26-728851489200} Adobe Flash Player 10 ActiveX  is none
    Value returned on lookup of payload: {40F95A03-885A-45fb-9A14-486BEFEDDF34} Adobe Flash Player 10 Plugin is: false
    Action string for  {40F95A03-885A-45fb-9A14-486BEFEDDF34} Adobe Flash Player 10 Plugin  is none
    Value returned on lookup of payload: {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A} Adobe Media Player is: true
    Action string for  {03B6AF5B-A024-43DE-8DD2-8FB7B6A4149A} Adobe Media Player  is none
    Value returned on lookup of payload: {56540320-C921-1029-83D9-FE864D1FC1DF} Adobe ReviewPanel CS5 is: true
    Action string for  {56540320-C921-1029-83D9-FE864D1FC1DF} Adobe ReviewPanel CS5  is none
    Value returned on lookup of payload: {AE9B837F-D135-42FC-BE03-33545B5DCBDC} Adobe WinSoft Linguistics Plugin CS5 is: false
    Action string for  {AE9B837F-D135-42FC-BE03-33545B5DCBDC} Adobe WinSoft Linguistics Plugin CS5  is none
    Value returned on lookup of payload: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK is: false
    Action string for  {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK  is none
    Value returned on lookup of payload: {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB is: false
    Action string for  {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB  is none
    Value returned on lookup of payload: {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5 is: false
    Action string for  {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5  is none
    Value returned on lookup of payload: {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5 is: false
    Action string for  {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5  is none
    Value returned on lookup of payload: {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5 is: false
    Action string for  {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5  is none
    Value returned on lookup of payload: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5 is: false
    Action string for  {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5  is none
    Value returned on lookup of payload: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5 is: false
    Action string for  {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5  is none
    Value returned on lookup of payload: {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5 is: false
    Action string for  {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5  is none
    Value returned on lookup of payload: {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension is: true
    Action string for  {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension  is none
    Value returned on lookup of payload: {6D96660C-1444-410E-9A84-681C0AFB8937} PDF Settings CS5 is: false
    Action string for  {6D96660C-1444-410E-9A84-681C0AFB8937} PDF Settings CS5  is none
    Value returned on lookup of payload: {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3} PDF Settings CS5 is: false
    Action string for  {DE99CD25-C87E-499F-AFB8-88D00F0BAEB3} PDF Settings CS5  is none
    Value returned on lookup of payload: {E319B9F9-4DE6-462C-970B-77D06C7807EE} Players For Adobe Flash Pro is: false
    Action string for  {E319B9F9-4DE6-462C-970B-77D06C7807EE} Players For Adobe Flash Pro  is none
    Value returned on lookup of payload: {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages is: true
    Action string for  {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages  is none
    Value returned on lookup of payload: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro is: false
    Action string for  {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro  is none
    Value returned on lookup of payload: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing is: false
    Action string for  {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing  is none
    Value returned on lookup of payload: {6C7D437A-D2E9-4FE9-A4D9-A6329860835C} Adobe Linguistics CS5 is: true
    Action string for  {6C7D437A-D2E9-4FE9-A4D9-A6329860835C} Adobe Linguistics CS5  is none
    Value returned on lookup of payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 is: false
    Action string for  {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0  is none
    Value returned on lookup of payload: {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral is: true
    Action string for  {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral  is none
    Value returned on lookup of payload: {1D8A135E-28A4-11DF-B54E-0024E8692489} DeviceCentral_DeviceCentral3LP-it_IT is: false
    Action string for  {1D8A135E-28A4-11DF-B54E-0024E8692489} DeviceCentral_DeviceCentral3LP-it_IT  is none
    Payload {1D8A135E-28A4-11DF-B54E-0024E8692489} DeviceCentral_DeviceCentral3LP-it_IT is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D93B051-28A4-11DF-A202-0024E8692489} DeviceCentral_DeviceCentral3LP-cs_CZ is: false
    Action string for  {1D93B051-28A4-11DF-A202-0024E8692489} DeviceCentral_DeviceCentral3LP-cs_CZ  is none
    Payload {1D93B051-28A4-11DF-A202-0024E8692489} DeviceCentral_DeviceCentral3LP-cs_CZ is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB is: false
    Action string for  {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB  is none
    Payload {1D830E80-28A4-11DF-A025-0024E8692489} DeviceCentral_DeviceCentral3LP-en_GB is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D855870-28A4-11DF-9731-0024E8692489} DeviceCentral_DeviceCentral3LP-de_DE is: false
    Action string for  {1D855870-28A4-11DF-9731-0024E8692489} DeviceCentral_DeviceCentral3LP-de_DE  is none
    Payload {1D855870-28A4-11DF-9731-0024E8692489} DeviceCentral_DeviceCentral3LP-de_DE is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D87C970-28A4-11DF-BC69-0024E8692489} DeviceCentral_DeviceCentral3LP-fr_FR is: false
    Action string for  {1D87C970-28A4-11DF-BC69-0024E8692489} DeviceCentral_DeviceCentral3LP-fr_FR  is none
    Payload {1D87C970-28A4-11DF-BC69-0024E8692489} DeviceCentral_DeviceCentral3LP-fr_FR is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D8EF562-28A4-11DF-8D7D-0024E8692489} DeviceCentral_DeviceCentral3LP-fi_FI is: false
    Action string for  {1D8EF562-28A4-11DF-8D7D-0024E8692489} DeviceCentral_DeviceCentral3LP-fi_FI  is none
    Payload {1D8EF562-28A4-11DF-8D7D-0024E8692489} DeviceCentral_DeviceCentral3LP-fi_FI is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D8A135F-28A4-11DF-A7C5-0024E8692489} DeviceCentral_DeviceCentral3LP-es_ES is: false
    Action string for  {1D8A135F-28A4-11DF-A7C5-0024E8692489} DeviceCentral_DeviceCentral3LP-es_ES  is none
    Payload {1D8A135F-28A4-11DF-A7C5-0024E8692489} DeviceCentral_DeviceCentral3LP-es_ES is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {1D8A1360-28A4-11DF-B5B3-0024E8692489} DeviceCentral_DeviceCentral3LP-es_MX is: false
    Action string for  {1D8A1360-28A4-11DF-B5B3-0024E8692489} DeviceCentral_DeviceCentral3LP-es_MX  is none
    Payload {1D8A1360-

  • Mozart-oz makepkg error; can build manually just fine

    Grrr.... I am trying to get a PKGBUILD working for mozart-oz http://www.mozart-oz.org/ (oz is a programming language). I have successfully built the package by hand, however my PKGBUILD fails with the following error.
    make boot-init.linked && \
    /home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib/p2t.sh < boot-init.linked > boot-init.ozt && \
    rm -f boot-init.linked
    gzip -d < /home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib/boot-ozc.ozt.gz > boot-ozc.ozt
    make[4]: Entering directory `/home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib'
    /home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib/ozc -z 9 -DSITE_PROPERTY -l Base=/home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib/Base.ozf -b /home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib/ -c dp/URL.oz -o URL.ozf
    make[4]: /home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib/ozc: Command not found
    make[4]: *** [URL.ozf] Error 127
    make[4]: Leaving directory `/home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib'
    make[3]: *** [boot-init.ozt] Error 2
    make[3]: *** Waiting for unfinished jobs....
    make[3]: Leaving directory `/home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib'
    make[2]: *** [bootstrap] Error 2
    make[2]: Leaving directory `/home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share/lib'
    make[1]: *** [bootstrap] Error 1
    make[1]: Leaving directory `/home/mbeisser/packages/mozart/src/mozart-1.3.2.20060615/share'
    make: *** [bootstrap] Error 1
    ==> ERROR: Build Failed. Aborting...
    PKGBUILD
    # Contributer: Matt Beisser <beissemj(at)gmail(dot)com>
    pkgname=mozart
    pkgver=1.3.2.20060615
    pkgrel=1.1
    pkgdesc="A Compiler for the Oz Programing Language"
    arch=('i686')
    url="http://www.mozart-oz.org"
    license=('X11 style')
    depends=('bison' 'gcc' 'gmp' 'zlib' 'emacs')
    install=
    source=(http://www.mozart-oz.org/download/mozart-ftp/store/1.3.2-2006-06-15-tar/mozart-1.3.2.20060615-src.tar.gz
    http://www.mozart-oz.org/download/mozart-ftp/store/1.3.2-2006-06-15-tar/mozart-1.3.2.20060615-std.tar.gz)
    md5sums=('b84fb3932eca573e6b8d5d1b26379371'
    '0daf6c873990bebdde550ec1fd70bdb6')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr --disable-doc --with-stdlib=../$pkgname-$pkgver-std
    make || return 1
    install -m 755 $pkgname $startdir/pkg/usr/
    After doing a bit of googling I found someone with a similar problem, and this is what was said. The problem is it obviously can't find ozc.
    > And I checked the Makefile and Makefile.in, I found that in order to
    > compile the source codes in this directory, I need an executable named
    > "ozc". But the question is that in order to make this "ozc", I need "ozc"
    > itself. It is just like a circle. How can I fix this problem?
    Here is how one normally builds mozart from sources:
    - fetch the sources into directory mozart
    - optionally fetch the sources of mopzart-stdlib into directory mozart-stdlib
    - create a sibling directory build
    cd build
    ../mozart/configure --with-stdlib=../mozart-stdlib
    make depend #this normally optional, but essential if you hack on the sources
    make
    make install
    Now, one very important detail is that in the top directory "make"
    actually invokes "make bootstrap". It is very important to remember
    this distinction if you are ever tempted to invoke make manually from
    a lower directory.  In this case, you should always invoke "make
    bootstrap" otherwise things won't work.
    To answer your worry: how do
    we get bootstrapped if we need the compiler in order to build the
    compiler?  The answer is that the sources contain a checked in version
    of the Oz compiler (the boot compiler) stored using the text form of
    the bytecode.  We use it to compile the Oz sources, including the
    sources of the compiler itself, thus obtaining a fresh build of a
    production compiler (this is in fact how we can update the boot
    compiler too).
    Cheers,
    Denys Duchier -
    I understand the solution and it makes sense, I just don't understand how to make makepkg do it...

    To fix the build issue, add
    options=('!makeflags')
    to the PKGBUILD. This package has problems building on multi-thread or multi-core cpu. This is usually the case when you get this error message:
    make[3]: *** Waiting for unfinished jobs....

  • Build a 2-dim array

    Hello!
    Now we have this problem: We start with a for-loop that runs as many times as there are numbers of signals. Then we want to create a 2-dim array. We know the numbers of columns but not number of rows... so the numbers of coumns can not be created dynamically like the number of rows. We thought of somethning with the "initialize array" but then one need to know both the numbers of rows and columns... any idea? Thank you and best regards.

    Typically it ie easiest to use a shift register and build the array by adding new rows. (see attached, LV 7.0).
    If you had something different in mind, please explain.
    (If you expect the arrays to become very large, building arrays this way may cause slowdowns due to memory allocations.)
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    BuildArray.vi ‏33 KB

  • Makepkg fails to build kernel

    This is my first time building the kernel myself. Following this wiki page:
    https://wiki.archlinux.org/index.php/Ke … ild_System
    makepkg or makepkg -i fails with this output:
    Hunk #1 succeeded at 56 with fuzz 2 (offset -2 lines).
    ==> Starting build()...
    make: *** INTERNAL: readdir: Not a directory
    . Stop.
    ==> ERROR: A failure occured in build().
    Aborting...
    Subsequent calls to makepkg looks like this: http://ix.io/6Xf
    Additional info:
    * Linux 3.10.3-1-ARCH #1 SMP PREEMPT x86_64 GNU/Linux
    * Trying to build 3.10.
    I made a bug report here after consulting people on #archlinux here: https://bugs.archlinux.org/task/36337
    As you can see it's closed since it's intended behavior. What did I miss?

    Yeah, it's weird. I just tried the exact same procedure on my other desktop Arch machine with different hardware but very similar setup. It looks like it's building fine there.
    This is a 2013 Macbook Air. Regarding my home dir being hfsplus I haven't had many issues with that before, and I did redo the whole procedure from scratch a couple of times with the same results.
    mount
    proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
    sys on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
    dev on /dev type devtmpfs (rw,nosuid,relatime,size=3970628k,nr_inodes=992657,mode=755)
    run on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
    /dev/sda6 on / type ext3 (rw,relatime,data=ordered)
    securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
    tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
    devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
    tmpfs on /sys/fs/cgroup type tmpfs (rw,nosuid,nodev,noexec,mode=755)
    cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd)
    pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
    efivarfs on /sys/firmware/efi/efivars type efivarfs (rw,nosuid,nodev,noexec,relatime)
    cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
    cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpuacct,cpu)
    cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
    cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
    cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
    cgroup on /sys/fs/cgroup/net_cls type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls)
    cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
    systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=36,pgrp=1,timeout=300,minproto=5,maxproto=5,direct)
    hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
    debugfs on /sys/kernel/debug type debugfs (rw,relatime)
    configfs on /sys/kernel/config type configfs (rw,relatime)
    mqueue on /dev/mqueue type mqueue (rw,relatime)
    tmpfs on /tmp type tmpfs (rw)
    /dev/sda5 on /boot type ext2 (rw,relatime)
    /dev/sda4 on /home type hfsplus (rw,relatime,umask=22,uid=0,gid=0,nls=utf8)
    free -m
    total used free shared buffers cached
    Mem: 7771 988 6783 0 29 291
    -/+ buffers/cache: 667 7104
    Swap: 0 0 0
    df -h
    Filesystem Size Used Avail Use% Mounted on
    /dev/sda6 90G 9.0G 77G 11% /
    dev 3.8G 0 3.8G 0% /dev
    run 3.8G 564K 3.8G 1% /run
    tmpfs 3.8G 0 3.8G 0% /dev/shm
    tmpfs 3.8G 0 3.8G 0% /sys/fs/cgroup
    tmpfs 3.8G 436K 3.8G 1% /tmp
    /dev/sda5 1007M 22M 918M 3% /boot
    /dev/sda4 280G 20G 261G 7% /home
    cat /proc/cpuinfo
    processor : 0
    vendor_id : GenuineIntel
    cpu family : 6
    model : 69
    model name : Intel(R) Core(TM) i7-4650U CPU @ 1.70GHz
    stepping : 1
    microcode : 0x11
    cpu MHz : 759.000
    cache size : 4096 KB
    physical id : 0
    siblings : 4
    core id : 0
    cpu cores : 2
    apicid : 0
    initial apicid : 0
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm
    bogomips : 4601.54
    clflush size : 64
    cache_alignment : 64
    address sizes : 39 bits physical, 48 bits virtual
    power management:
    processor : 1
    vendor_id : GenuineIntel
    cpu family : 6
    model : 69
    model name : Intel(R) Core(TM) i7-4650U CPU @ 1.70GHz
    stepping : 1
    microcode : 0x11
    cpu MHz : 759.000
    cache size : 4096 KB
    physical id : 0
    siblings : 4
    core id : 1
    cpu cores : 2
    apicid : 2
    initial apicid : 2
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm
    bogomips : 4601.54
    clflush size : 64
    cache_alignment : 64
    address sizes : 39 bits physical, 48 bits virtual
    power management:
    processor : 2
    vendor_id : GenuineIntel
    cpu family : 6
    model : 69
    model name : Intel(R) Core(TM) i7-4650U CPU @ 1.70GHz
    stepping : 1
    microcode : 0x11
    cpu MHz : 759.000
    cache size : 4096 KB
    physical id : 0
    siblings : 4
    core id : 0
    cpu cores : 2
    apicid : 1
    initial apicid : 1
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm
    bogomips : 4601.54
    clflush size : 64
    cache_alignment : 64
    address sizes : 39 bits physical, 48 bits virtual
    power management:
    processor : 3
    vendor_id : GenuineIntel
    cpu family : 6
    model : 69
    model name : Intel(R) Core(TM) i7-4650U CPU @ 1.70GHz
    stepping : 1
    microcode : 0x11
    cpu MHz : 759.000
    cache size : 4096 KB
    physical id : 0
    siblings : 4
    core id : 1
    cpu cores : 2
    apicid : 3
    initial apicid : 3
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm
    bogomips : 4601.54
    clflush size : 64
    cache_alignment : 64
    address sizes : 39 bits physical, 48 bits virtual
    power management:

  • AP3 hanging, crashing and now refusing to start due to insufficient GPU???

    After having spent two whole days rebuilding a face recog database and briefly got it working, AP3 now suddenly refuses to launch at all due to lack of GPU hardware:
    http://www.ansatt.hig.no/kjellr/misc/20100223ap3_gpumessage.png
    This is yet another situation that effectively has rendered my newly purchased Aperture 3 useless so far.
    Any fix for this last error message that suddenly appeared, and a fix for all the other problems in sight?
    Best regards,
    Kjell Are Refsvik
    Lillehammer, Norway

    You might consider starting the entire library conversion and face detection over again but in 32bit mode until you get stable behaviour from Aperture. Then you can switch to 64bit mode as long as you are not using 32bit plugins like Photoshop and onOne as I do. That's forced me to stay in 32bit mode until Photoshop CS5 is released for the Mac. Everything working well in that regard now. When you run into a wall, might be faster to go around the wall (redo everything) than figure out a way through the wall.
    I've posted other hints that Faces does not work at the Library level; appears to work at the project and album level. Naming faces is not as reliable as just using the CONFIRM FACES view within one of your faces and then clicking on a suggested face to CONFIRM or NOT as appropriate.

  • [SOLVED] makepkg fails when building libdivecomputer-git from AUR.

    I'm not sure where to start debugging this failure as I'm a newb when it comes to compiling packages.
    Can anyone point me in the right direction?
    [dan@arch libdivecomputer-git]$ makepkg -s PKGBUILD
    ==> Determining latest git revision...
    -> Version found: 20120714
    ==> Making package: libdivecomputer-git 20120714-1 (Sat Jul 14 13:43:22 EST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    ==> Extracting Sources...
    ==> Starting build()...
    ==> Connecting to GIT server....
    Cloning into 'libdivecomputer'...
    remote: Counting objects: 3995, done.
    remote: Compressing objects: 100% (1563/1563), done.
    remote: Total 3995 (delta 3240), reused 2983 (delta 2429)
    Receiving objects: 100% (3995/3995), 739.19 KiB | 59 KiB/s, done.
    Resolving deltas: 100% (3240/3240), done.
    ==> GIT checkout done or server timeout
    ==> Starting make...
    Cloning into '/home/dan/libdivecomputer-git/src/libdivecomputer-build'...
    done.
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
    libtoolize: copying file `m4/libtool.m4'
    libtoolize: copying file `m4/ltoptions.m4'
    libtoolize: copying file `m4/ltsugar.m4'
    libtoolize: copying file `m4/ltversion.m4'
    libtoolize: copying file `m4/lt~obsolete.m4'
    configure.ac:25: installing './config.guess'
    configure.ac:25: installing './config.sub'
    configure.ac:21: installing './install-sh'
    configure.ac:21: installing './missing'
    examples/Makefile.am: installing './depcomp'
    automake: warnings are treated as errors
    /usr/share/automake-1.12/am/ltlibrary.am: warning: 'libdivecomputer.la': linking libtool libraries using a non-POSIX
    /usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
    src/Makefile.am:4: while processing Libtool library 'libdivecomputer.la'
    autoreconf: automake failed with exit status: 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    Last edited by bergersau (2012-07-18 03:57:09)

    You may want to notify the maintainer by posting a comment on https://aur.archlinux.org/packages.php?ID=52648

  • Building child-parentr dependency in menu selectors

    I ahve arather lengthy list of 59 sub-categories (datasets) for my data, which all fall under 8 main categories.
    Example:
    Portfolio [category C1]
             Total Responsible SF  [dataset B1]
             Total Building Count    [dataset B2]
    This continues with a limited set of sub-categories for each main category (5-7 datasets each).  I am trying to create a dependency between a table seltion for the Main Category, and have that filter the choices that are only relevent to that Category.  I have tried using a dynamic function of  a Switching Logic and Swtich, but that seems to only work if you want to tie specific charts to a selection.  I am trying to reuse the same chart for each dataset, and simply want to reduce the choices avaialable for the user, for ease and space reasons.
    Has anyone actually done something like this?  I can share excel file and source information if need be.  THANKS.....

    At this time Xcelsius selector components do not support dynamic selection. However, I believe what you want to achieve can be done by creating a sort of cascading selector prompts. One main category selector followed by a sub-category selector from which a selection will dictate the data displayed in a chart. 
    1) build a "main" selector that will provide the selections for the 8 main categories
    2) create a "sub" selector with the sub-categories for the first main category
    3) repeat step 2, creating identical selectors for each main category; using dynamic visibility configuration, set each "sub" selector to show only with the appropriate selection on the "main" selector (be sure to layer them on top of each other to create a seamless transition for the user)
    4) you should have created 9 selectors at this point
    5) to have only one chart displaying the data for your datasets (sub-categories), the key is to build the logic into your Excel spreadsheet. This can be done with VLOOKUP formulas to create a table the changes dynamically according to the value in a reference cell. For example, when the value "Total Responsible SF" is inserted from the "sub" selector into the spreadsheet, the dynamic table in Excel will display the data for dataset B1. Your Xcelsius chart will be configured to display data from the dynamic table.
    The above should help you build cascading prompts. I hope this helps point you in the right direction! If you need help with the dynamic visibility please refer to the learning section on Xcelsius.com.

  • Build dynamic query depending upon selection of table and columns

    Hi ,
    I want your views on following requirement :
    we r doing generic export to excel functionality .
    1.User will select multiple tables and according to tables ,columns on that table will select
    2.There can be multiple table
    3.depending upon column and table selection , we have to build dynamic query and execute .
    Please let me know is it possible .If yes then please tell me how to do above requirement.
    Thanks in advance

    Hi,
    Identifiers cannot be used as bind variables, query are parsed
    before evaluate bind variables. Identifiers like table name.
    For excel you can use some like this:
    SET MARKUP HTML ON ENTMAP ON SPOOL ON PREFORMAT OFF
    SPOOL test_xls.xls
    SELECT colum1||chr(9)||columN FROM tableName;
    or CSV:
    SELECT colum1|| ',' ||columN FROM tableName;
    SPOOL OFF
    SET MARKUP HTML OFF ENTMAP OFF SPOOL OFF PREFORMAT ON
    For construct the query i suggest to read "Dynamic SQL Statements":
    http://www.java2s.com/Tutorial/Oracle/0440__PL-SQL-Statements/0300__Dynamic-SQL.htm
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28370/dynamic.htm
    http://docs.oracle.com/cd/B10500_01/appdev.920/a96590/adg09dyn.htm
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:227413938857
    --sgc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Query with different parameter take different time to execute.

    Hi, I am a C/C++ programmer and newbie to database. I find weird case to my company database. oracle 10g. I have a query (below). When I set GENRE_ID value to 20, query execution time only take *5* seconds. But when I change to 10, it take *54* secon

  • I had a stolen macbook pro 15 "

    I had a stolen macbook pro 15 "MD546LL/A S/N: C0******24T. Please help me find it! It is very important to me, my 1.5 year of heavy labour! <Edited by Host>

  • Strange behaviour of DB_RECOVERY_FILE_DEST

    Hi , Problem Description : Oracle 11.2.0.2 dataguard environment (1 primary and 1 physical standby ) At os level , /ora/TEST/arch file system is 125G on both primray and standby . The following parameter has been set on the both primary and standby d

  • I want to learn JDE

    Hi I began to study JD Edwards EnterpriseOne by examples from JD Edwards Best Practice Center http://www.oracle.com/technetwork/middleware/fmw4apps/jde/index-088030.html I have installed VM image with JD Edwards EnterpriseOne 9.0 Standalone Client SS

  • Command+backspace issue

    Hi there, I've been trying to send files to the trash through the command+backspace shortcut, but from some days 'till now, it only says to me that the file will be deleted immediately (with a confirmation dialog box), instead. I've defaulted all of