TeX Live 2013 update issue: Package biblatex Error

Hi.
Today I updated texlive 2012 to 2013 version. After this I can't compile my projects with error:
! Package biblatex Error: Patching 'babel' package failed.
I use biblatex with biber backend and polyglossia packages.
Installed packages:
extra/texlive-bibtexextra 2013.30944-1 (texlive-most)
TeX Live - Additional BibTeX styles and bibliography databases
extra/texlive-bin 2013.30973-2
TeX Live binaries
extra/texlive-core 2013.30962-2 (texlive-most)
TeX Live core distribution
extra/texlive-fontsextra 2013.30955-1 (texlive-most)
TeX Live - all sorts of extra fonts
extra/texlive-formatsextra 2013.30214-1 (texlive-most)
TeX Live - collection of extra TeX 'formats'
extra/texlive-games 2013.30959-1 (texlive-most)
TeX Live - Setups for typesetting various board games, including chess
extra/texlive-genericextra 2013.29803-1 (texlive-most)
TeX Live - mixed bag of generic macro packages and fonts
extra/texlive-htmlxml 2013.29725-1 (texlive-most)
TeX Live - Packages to convert LaTeX to XML/HTML, and typeset XML/SGML
extra/texlive-humanities 2013.30815-2 (texlive-most)
TeX Live - LaTeX packages for law, linguistics, social sciences, and humanities
extra/texlive-langcyrillic 2013.30653-1 (texlive-lang)
TeX Live - Fonts and macro packages to typeset Cyrillic texts
extra/texlive-latexextra 2013.30964-1 (texlive-most)
TeX Live - Large collection of add-on packages for LaTeX
extra/texlive-music 2013.30005-1 (texlive-most)
TeX Live - Music typesetting packages
extra/texlive-pictures 2013.30637-2 (texlive-most)
TeX Live - Packages for drawings graphics
extra/texlive-plainextra 2013.30377-1 (texlive-most)
TeX Live - A collection of add-on packages and macros for plain TeX
extra/texlive-pstricks 2013.30956-1 (texlive-most)
TeX Live - Additional PSTricks packages
extra/texlive-publishers 2013.30958-1 (texlive-most)
TeX Live - LaTeX classes and packages for specific publishers
extra/texlive-science 2013.30910-1 (texlive-most)
TeX Live - Typesetting for natural and computer sciences
Last edited by unikum (2013-08-04 10:30:23)

@unikum: Yes I have , and I can confirm that everything (apart from polyglossia) compiles flawlessly. It would appear with XeTeX the polyglossia package works but the BibLaTeX doesn't. With PDFTeX, BibLaTeX does work, but I see that polyglossia only works with XeTeX (my compiler also suggests LuaTeX but I'm not going to try it).
I'm quite happy with how BibTeX works though I'm going guess that you use BibLaTeX for your own reasons.
LaTeX itself works, I've been working on my MSc Dissertation, lectures notes and other bits, conveniently written in LaTeX, with a working BibTex bibliography. Have I had any problems after uninstalling TeXLive 2012 and then installing TeXLive 2013? NO.
As for your second question, no. I will not repeat how I did the upgrade for a third time, so please read my previous posts.
Edited after re-reading entire thread (things getting mixed up in my head ¬¬).
Last edited by clfarron4 (2013-08-05 21:45:25)

Similar Messages

  • Kernel 2.6.32.7-1/mkinitcpio update issue - filesystem/ext3 error

    Hi,
    Earlier my desktop (after a week uptime) didn't boot anymore. It got the "Reboot required" error at filesystem check (the rc.sysinit script gives this when fsck returns exit status 2).
    I tried several things, made sure from a live that the partitions were all clean, yet nothing helped. Then i noticed i wasn't all up to date and made a pacman -Su (after refreshing the list) and at the kernel26 upgrade it said 'SUCCESS' but it gave a small error message during it:
    :: Parsing hook [autodetect]
    /lib/initcpio/install/autodetect: Zeile 17: filesystem:ext3:1.0: Kommando nicht gefunden.
    (Sorry in German but it really is just "line 17" and "command not found").
    The Message only appeared in the normal kernel, during building the fallback it didn't say anything.
    I had done the same updates a day before on my netbook and there i can't remember any error message and it also boots just fine.
    As long as i disable automatic fsck at boot in the fstab the system boots fine.
    I'm too tired right now to try any more things, i need sleep. I'd appreciate some help in this, however it's not too urgent, as i can boot and use the system without automatic filesystem check at boot-time.
    Ogion
    EDIT:
    Forgot to add the filesystems and autodetect files from the directory mentioned in the error message:
    /lib/initcpio/install/filesystems:
    # vim: set ft=sh:
    install ()
    MODULES=" $(checked_modules '/kernel/fs' | grep -v "nls") $(checked_modules '/kernel/fs/nls/nls_cp437')"
    BINARIES=""
    FILES=""
    SCRIPT=""
    help ()
    cat<<HELPEOF
    This hook adds filesystems modules to the image. If you would like to
    minimize the modules installed in the image, add the autodetect hook too.
    HELPEOF
    /lib/initcpio/install/autodetect
    # vim: set ft=sh:
    install ()
    MODULE_FILE="${TMPDIR}/autodetect_modules"
    #blegh, we'll let /tmp clean itself up
    AUTODETECT="$(auto_modules -e '/scsi/' -e '/block' -e '/fusion/' \
    -e '/usb/' -e '/ide/' -e '/ieee1394/' -e '/cdrom' \
    -e '/net/' -e '/pcmcia' -e '/ata' \
    | grep -v -e 'ata_generic.ko' -e 'ide-generic.ko')"
    #Filesystem detection, use sysfs instead of /proc
    findfs ()
    for blkdev in $(find /dev -type b | grep -v -e /dev/loop -e /dev/ram -e /dev/fd); do
    (eval $(/sbin/blkid -o udev -p "${blkdev}"); [ "${ID_FS_USAGE}" = "filesystem" ] && echo $ID_FS_TYPE)
    done
    if [ ${UID} -eq 0 -o "$(groups | grep disk)" != "" ]; then
    for fs in $(findfs | sort | uniq); do
    for mod in $(find "${MODULEDIR}" -type f -name "${fs}.ko"); do
    if [ -n "${mod}" ]; then
    AUTODETECT="${AUTODETECT} ${mod}"
    fi
    done
    done
    if [ -e /sbin/mdadm ]; then
    for raidmod in $(/sbin/mdadm -E -s -v /dev/hd* /dev/sd* /dev/rd/* /dev/ida/* /dev/cciss/* /dev/ataraid/* /dev/mapper/* \
    | awk -Flevel= '{print $2}' | awk '{print $1}'); do
    case "${raidmod}" in
    raid4|raid5|raid6)
    AUTODETECT="${AUTODETECT} raid456" ;;
    AUTODETECT="${AUTODETECT} ${raidmod}" ;;
    esac
    done
    fi
    else
    err "User does not have proper permissions to read superblocks, raid and filesystem modules are not detected"
    fi
    for m in ${AUTODETECT}; do
    modname="$(basename ${m%%\.ko})"
    grep "^${modname}$" "${MODULE_FILE}" >/dev/null 2>&1 && continue
    case "${m}" in
    #*/ieee1394/*) echo -e "sbp2\nsd_mod\nsr_mod" >> "${MODULE_FILE}";;
    *ext3*) echo "jbd" >> "${MODULE_FILE}" ;;
    *ext4*) echo -e "jbd2\nmbcache\ncrc16" >> "${MODULE_FILE}" ;;
    *afs*) echo "rxrpc" >> "${MODULE_FILE}" ;;
    *cramfs*) echo "zlib_inflate" >> "${MODULE_FILE}" ;;
    *isofs*) echo "zlib_inflate" >> "${MODULE_FILE}" ;;
    *msdos*) echo "fat" >> "${MODULE_FILE}" ;;
    *vfat*) echo -e "fat\nnls_cp437" >> "${MODULE_FILE}" ;;
    *ocfs2*) echo -e "ocfs2_dlm\njbd\nocfs2_nodemanager\nconfigfs" >> "${MODULE_FILE}" ;;
    esac
    echo "${modname}" >> "${MODULE_FILE}"
    done
    BINARIES=""
    SCRIPT=""
    help ()
    cat <<HELPEOF
    This hook shrinks your initramdisk to a smaller size
    by autodetecting your needed modules. Be sure to verify
    included modules are correct and none are missing.
    This hook must be run before other subsystem hooks in
    order to take advantage of auto-detection. Any hooks
    placed before 'autodetect' will be installed in full.
    HELPEOF
    Last edited by Ogion (2010-02-06 01:23:07)

    Ogion wrote:
    Hi,
    :: Parsing hook [autodetect]
    /lib/initcpio/install/autodetect: Zeile 17: filesystem:ext3:1.0: Kommando nicht gefunden.
    /lib/initcpio/install/autodetect
    # vim: set ft=sh:
    install ()
    MODULE_FILE="${TMPDIR}/autodetect_modules"
    #blegh, we'll let /tmp clean itself up
    AUTODETECT="$(auto_modules -e '/scsi/' -e '/block' -e '/fusion/' \
    -e '/usb/' -e '/ide/' -e '/ieee1394/' -e '/cdrom' \
    -e '/net/' -e '/pcmcia' -e '/ata' \
    | grep -v -e 'ata_generic.ko' -e 'ide-generic.ko')"
    #Filesystem detection, use sysfs instead of /proc
    findfs ()
    for blkdev in $(find /dev -type b | grep -v -e /dev/loop -e /dev/ram -e /dev/fd); do
    (eval $(/sbin/blkid -o udev -p "${blkdev}"); [ "${ID_FS_USAGE}" = "filesystem" ] && echo $ID_FS_TYPE)
    If I'm counting right it's complaining about the last quoted line, correct?
    Try on your command line, what happens when you do:
    for blkdev in $(find /dev -type b | grep -v -e /dev/loop -e /dev/ram -e /dev/fd); do
    eval $(sudo /sbin/blkid -o udev -p "$blkdev")
    [ "${ID_FS_USAGE}" = "filesystem" ] && echo "$ID_FS_TYPE"
    done

  • Live Office update issue

    I applied Service Pack 2 and the Fixpack to Client Live Office, however when I try to refresh objects from Enterprise got an error: Version mismatch: Your Live Office client needs a newer version of BusinessObjects web service.
    anyone can help me with this issue, please.
    Thanks

    Hi Maynor!
    Your BO XI Server has not the correct Patch Level.
    Either you did not upgrade your Server or you too had a corrupt installation. Redownload the SP and FP for the server.
    Repair or reinstall did not solve this error. I had to reinstall everything.
    ciao Hakan
    PS: Same can happen to your Client install - try removing and reinstall.
    PPS: You could also redeploy the web services.

  • Team Foundation Server 2013 update 4 New Install - Error 503 Service Unavailable for Sharepoint Central Admin

    Hello,
    I ran a new install of Team Foundation Server and let it install the built in SharePoint pieces on a single server setup. After the install i'm able to access the
    http://teamfoundation:8080/tfs/ address without issue but am unable to create a project. When I attempt to create a project I get the following error:
    TF30172: You do not have permission to create a new team project (when checking security i'm a member of the project collection administrators and Team Foundation Administrators)
    This led me to look at the sharepoint central administration site where I receive the following error:
    Error 503 Service Unavailable
    I've gone through and validated the identity is set correctly in IIS for the following services:
    SharePoint Central Admin v4
    SharePoint15AppPool
    The SharePoint Web Services Root is set as LocalService instead of the domain user.
    The identity domain user is setup as local administrator on the Team Foundation Server. They are all set to use .net v4.0.30319 with integrated Pipeline mode.
    Any help would be great!
    Thanks!
    Eric

    Hi Eric,      
    Thanks for your post.
    Please share your detailed team project creation log here.
    In your TFS Admin Console>>Extensions for SharePoint Products tab, ensure SharePoint Web Application shows correctly in the right panel. And go to TFS Admin Console>>Application Tier>>SharePoint Web Applications tab, ensure your SharePoint
    web application displays in the right panel, then select your SharePoint web application and click Repair Connection, ensure can repair successfully.
    In your IIS Manager, select your SharePoint Central Administration V4 site and click Browser:17012(http) in the right panel, check if your SharePoint Central site can be opened successfully or not. If your SharePoint Central site cannot be accessed, I think
    this issue relate to your SharePoint site, you should contact SharePoint experts to resolve this issue first. After you resolved this issue and your SharePoint Central Admin site can be accessed correctly, then try to create your team project(within SharePoint
    site) again, if there still has issue when creating team project, please share the detailed error message here, we will try to resolve it.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Software Update fails and shows errors in console (No Leopard 10.5.3)

    I have a MacMini with Leopard installed with boxed DVD last november (upgrade from Tiger).
    Every update (apps and system went fine since them).
    I haven't got the java update 6 since my processor is a Core Duo and not a Core 2 Duo.
    Since it's availability from Apple Servers, the Leopard 10.5.3 is not appearing.
    Neither the direct downoad of Combo of Delta update are not OK to install on my system.
    When i select any system volume (internal and an external usb "up-to-date") i have a warning message:
    "You cannot install Mac OS X Update Combined on this volume. This volume does not meet the requirements for this update."
    Anyone can help?
    Thanks.
    The install.log is:
    May 29 20:34:13 yugo Software Update[2345]: JS: 10.5.2
    May 29 20:34:17 yugo Software Update[2345]: Found receipt (id match) for ((null) / com.apple.pkg.ProAppRuntime): (ProAppRuntime / com.apple.pkg.ProAppRuntime)
    May 29 20:34:17 yugo Software Update[2345]: Found receipt (name match) for (ProAppRuntime / com.apple.pkg.ProAppRuntimeSU): (ProAppRuntime / com.apple.pkg.ProAppRuntime)
    May 29 20:34:17 yugo Software Update[2345]: Found receipt (name match) for (ProRuntime / com.apple.pkg.ProRuntimeSU): (ProRuntime / com.apple.pkg.ProRuntime)
    May 29 20:34:17 yugo Software Update[2345]: Found receipt (id match) for ((null) / com.apple.pkg.ProRuntime): (ProRuntime / com.apple.pkg.ProRuntime)
    May 29 20:34:17 yugo Software Update[2345]: JS: 10.5.2
    May 29 20:34:17: --- last message repeated 1 time ---
    May 29 20:34:17 yugo Software Update[2345]: Package Authoring Error: installation-check results requires a message
    May 29 20:34:17: --- last message repeated 4 times ---
    May 29 20:34:17 yugo Software Update[2345]: Found receipt (name match) for (AppleIntermediateCodec / auto): (AppleIntermediateCodec / com.apple.pkg.AppleIntermediateCodec)
    May 29 20:34:17 yugo Software Update[2345]: Found receipt (name match) for (QuickTimeBroadcaster / a): (QuickTimeBroadcaster / com.apple.pkg.QuickTimeBroadcaster)
    May 29 20:34:18 yugo Software Update[2345]: Found receipt (full match) for (BatchMonitor / com.apple.pkg.BatchMonitor): (BatchMonitor / com.apple.pkg.BatchMonitor)
    May 29 20:34:18: --- last message repeated 1 time ---
    May 29 20:34:18 yugo Software Update[2345]: JS: model = Macmini1,1
    May 29 20:34:19 yugo Software Update[2345]: JS: 10.5.2
    May 29 20:34:19: --- last message repeated 1 time ---
    May 29 20:34:19 yugo Software Update[2345]: Found receipt (full match) for (PluginManager / com.apple.pkg.PluginManager): (PluginManager / com.apple.pkg.PluginManager)
    May 29 20:34:19 yugo Software Update[2345]: Found receipt (name match) for (PluginManager / autoPluginManagerSU): (PluginManager / com.apple.pkg.PluginManager)
    May 29 20:34:20 yugo Software Update[2345]: JS: 10.5.2
    May 29 20:34:20: --- last message repeated 1 time ---
    May 29 20:34:20 yugo Software Update[2345]: Found receipt (name match) for (RemoteDesktopClient / b): (RemoteDesktopClient / com.apple.pkg.RemoteDesktopClient)
    May 29 20:34:20 yugo Software Update[2345]: Found receipt (name match) for (RemoteDesktopAdmin320 / b): (RemoteDesktopAdmin320 / com.apple.pkg.RemoteDesktopAdmin320)
    May 29 20:34:20 yugo Software Update[2345]: Found receipt (name match) for (AirPortExtremeUpdate2007002 / auto): (AirPortExtremeUpdate2007002 / com.apple.pkg.AirPortExtremeUpdate2007002)
    May 29 20:34:20 yugo Software Update[2345]: Found receipt (full match) for (iPhoto_606 / com.apple.pkg.iPhoto_606): (iPhoto_606 / com.apple.pkg.iPhoto_606)
    May 29 20:34:20 yugo Software Update[2345]: Found receipt (name match) for (WebObjects5.3.3Update / auto): (WebObjects5.3.3Update / com.apple.pkg.WebObjects5.3.3Update)
    May 29 20:34:24 yugo Software Update[2345]: Found receipt (name match) for (AirPortExtremeUpdate2007003 / auto): (AirPortExtremeUpdate2007003 / com.apple.pkg.AirPortExtremeUpdate2007003)
    May 29 20:34:24 yugo Software Update[2345]: Found receipt (full match) for (ProAppsEffects / com.apple.pkg.ProAppsEffects): (ProAppsEffects / com.apple.pkg.ProAppsEffects)
    May 29 20:34:24 yugo Software Update[2345]: Found receipt (name match) for (PluginManager / autoPluginManagerSU): (PluginManager / com.apple.pkg.PluginManager)
    May 29 20:34:24 yugo Software Update[2345]: Found receipt (name match) for (ProAppsEffects / ProAppsEffects): (ProAppsEffects / com.apple.pkg.ProAppsEffects)
    May 29 20:34:24 yugo Software Update[2345]: Found receipt (full match) for (PluginManager / com.apple.pkg.PluginManager): (PluginManager / com.apple.pkg.PluginManager)
    May 29 20:34:24 yugo Software Update[2345]: Found receipt (name match) for (FrontRowUpdate1.3.1 / auto): (FrontRowUpdate1.3.1 / com.apple.pkg.FrontRowUpdate1.3.1)
    May 29 20:34:24 yugo Software Update[2345]: JS: Firmware is up to date.
    May 29 20:34:25 yugo Software Update[2345]: Found receipt (name match) for (AirPortExtremeUpdate2007004 / auto): (AirPortExtremeUpdate2007004 / com.apple.pkg.AirPortExtremeUpdate2007004)
    May 29 20:34:25 yugo Software Update[2345]: Found receipt (full match) for (iMovie_710 / com.apple.pkg.iMovie_710): (iMovie_710 / com.apple.pkg.iMovie_710)
    May 29 20:34:25 yugo Software Update[2345]: Found receipt (name match) for (QT72CompatibilityUpdate / auto): (QT72CompatibilityUpdate / com.apple.pkg.QT72CompatibilityUpdate)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (id match) for (Software Update / com.apple.pkg.QuickTimeBroadcaster): (QuickTimeBroadcaster / com.apple.pkg.QuickTimeBroadcaster)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (QuickTimeBroadcaster / auto): (QuickTimeBroadcaster / com.apple.pkg.QuickTimeBroadcaster)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (ProAppsEffects / autoProAppsEffectsSU): (ProAppsEffects / com.apple.pkg.ProAppsEffects)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (PluginManager / autoPluginManagerSU): (PluginManager / com.apple.pkg.PluginManager)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (full match) for (ProAppsEffects / com.apple.pkg.ProAppsEffects): (ProAppsEffects / com.apple.pkg.ProAppsEffects)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (full match) for (PluginManager / com.apple.pkg.PluginManager): (PluginManager / com.apple.pkg.PluginManager)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (QuickTime745_Leopard / auto): (QuickTime745_Leopard / com.apple.pkg.QuickTime745_Leopard)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (PluginManager / autoPluginManagerSU): (PluginManager / com.apple.pkg.PluginManager)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (id match) for (Software Update / com.apple.pkg.PluginManager): (PluginManager / com.apple.pkg.PluginManager)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (iTunesAccess / iTunesAccess): (iTunesAccess / com.apple.pkg.iTunesAccess)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (AppleMobileDeviceSupport / amds): (AppleMobileDeviceSupport / com.apple.pkg.AppleMobileDeviceSupport)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (iTunesX / iTunes): (iTunesX / com.apple.pkg.iTunesX)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (AirPortUtility / a): (AirPortUtility / com.apple.pkg.AirPortUtility)
    May 29 20:34:26 yugo Software Update[2345]: Found receipt (name match) for (AirPortUtility_Leopard / a): (AirPortUtility_Leopard / com.apple.pkg.AirPortUtility_Leopard)
    May 29 20:34:27 yugo Software Update[2345]: Found receipt (name match) for (FrontRowUpdate2.1.3 / auto): (FrontRowUpdate2.1.3 / com.apple.pkg.FrontRowUpdate2.1.3)
    May 29 20:34:27 yugo Software Update[2345]: Found receipt (name match) for (SecUpdQuickTime716 / auto): (SecUpdQuickTime716 / com.apple.pkg.SecUpdQuickTime716)
    May 29 20:34:27 yugo Software Update[2345]: JavaScript error "Undefined value" while running "_choice_suvisible"
    May 29 20:34:27 yugo Software Update[2345]: _choice_suvisible returned error: Undefined value
    The install.log for the combo package :
    /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer[2384]: vm_allocate: 0, 0x5000000 - 0x25000000
    /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer[2384]: vm_protect: 0
    Installer[2384]: @(#)PROGRAM:Install PROJECT:Install-378
    Installer[2384]: @(#)PROGRAM:Installer PROJECT:Installer-278
    Installer[2384]: Hardware: Macmini1,1 @ 1.66 GHz (x 2), 2048 MB RAM
    Installer[2384]: Running OS Build: Mac OS X 10.5.2 (9C7010)
    Installer[2384]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Installer[2384]: Env: TMPDIR=/var/folders/Y4/Y4sMCsAIE58cyYkAJi5FfU+TI/-Tmp-/
    Installer[2384]: Env: SHELL=/bin/bash
    Installer[2384]: Env: HOME=/Users/thierry
    Installer[2384]: Env: USER=thierry
    Installer[2384]: Env: LOGNAME=thierry
    Installer[2384]: Env: DISPLAY=/tmp/launch-2C4GnV/:0
    Installer[2384]: Env: SSHAUTHSOCK=/tmp/launch-5LZwpK/Listeners
    Installer[2384]: Env: ApplePubSub_SocketRender=/tmp/launch-65XpRu/Render
    Installer[2384]: Env: _CF_USER_TEXTENCODING=0x1F5:0:1
    Installer[2384]: Env: SECURITYSESSIONID=cb6620
    Installer[2384]: Env: COMMAND_MODE=unix2003
    Installer[2384]: Mac OS X Update Combined Installation Log
    Installer[2384]: Opened from: /Volumes/Mac OS X Update Combined/MacOSXUpdCombo10.5.3.pkg

    I'm also receiving SU console error messages - irrespective of whether SU is run from the menu, automatically on its weekly schedule, or logged into the computer using a different user.
    Any ideas?
    Here are my console messages:
    5/26/08 12:25:13 pm Software Update[184] Package Authoring Error: installation-check results requires a message
    5/26/08 12:25:13 pm Software Update[184] Package Authoring Error: installation-check results requires a message
    5/26/08 12:25:13 pm Software Update[184] Package Authoring Error: installation-check results requires a message
    5/26/08 12:25:13 pm Software Update[184] Package Authoring Error: installation-check results requires a message
    5/26/08 12:25:13 pm Software Update[184] Package Authoring Error: installation-check results requires a message
    5/26/08 12:25:20 pm Software Update[184] JavaScript error "Undefined value" while running "_choice_suvisible"
    5/26/08 12:25:20 pm Software Update[184] _choice_suvisible returned error: Undefined value

  • Office 2013 Updates Error - Mapped Drive

    Event ID 11327
    Product: Microsoft Office Professional Plus 2013 -- Error 1327. Invalid Drive: V:\
    Event ID 1023:
    Product: Microsoft Office Professional Plus 2013 - Update 'Update for Microsoft Office 2013 (KB2956177) 32-Bit Edition' could not be installed. Error code 1603
    Error within Software Center: The software change returned error code 0x80070643.
    These errors only occur while updating through SCCM 2012 R2 automatic software updates. I can download the update directly from the Microsoft site and install without any errors. I am a new to SCCM, but was able to push out updates for Windows 7 and Office
    2010 without errors. After further testing I found that editing the Office 2013 install with the customization tool would allow the update to run. My MSP file custom install has "Remove Files" set to delete links on a mapped network drive (V:\).
    I am not sure how Office 2013 updates through SCCM (only) would care about a custom install portion that should be unrelated.
    I plan to exclude the V drive file removals from the custom install and just do it from a script. However, I am not sure what to do about updating the machines which currently have 2013 installed and constantly error while updating through SCCM.

    you are getting into different things here. Creating the ADR and runs every-time ? Microsoft do not release patches everyday and there is no point running the ADR everytime.coming to the question , how did you create and update the MSP for the Office Update
    file ? using ADR ,for deploying the updates,you will not have facility to control the command line options . for the drive letter issue (Product:
    Microsoft Office Professional Plus 2013 -- Error 1327), you can refer
    http://support.microsoft.com/en-us/kb/327763. you can try installing the MS office 2013 on a PC without any drive mappings and try the update. I suppose the issue could be with the drive mapping something related.
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • Error in update of packaging material data in mat. master

    Hi all ,
    Actually , when I was going to update the packaging material information in material master , that time noticed whole parameters - blank spaces  / attributes of the packaging material data area is not showing . Why it behaves as ? ...
    regards
    arghya

    This just tells me that you do not even know the basics of a material type.
    SAP does not check the material type name, VERP and ROH is nothing else than a couple characters from the alphabet (in German language they even make some sense). You can create your own material type HUXX for handling units and if it is correctly setup then it will work.
    How long do you consider yourself as a newcomer? you have registered in 2010. You started with SD, then MM (were all your questions got rejected because you failed to search) and now Logistics Execution (by the way I am moderator here too). And everywhere you were told to use Google to search prior to posting. Spend more time to increase the skills on searching, this gets you more benefits on the long run.
    And in the 5th year with SAP and SCN you should at least know how to report an issue. If you have an error message, then tell the exact message along with the message number. Saying the setup is properly and then complaining that the system is asking for something else does not help to solve the issue, as it it just reflects your assumption but does not tell any facts.
    If everything would be properly setup, then you would not have an issue. Does that sound logical?
    Start from wikis like that Logistics General Handling Unit Introduction - ERP SCM - SCN Wiki
    or from help.sap.com, just search with this string in google: sap best practices handling unit management

  • HT1925 Can't update iTunes because of error message "iTunes.msi is not a valid installation package for the produce iTunes".  How can I fix this?

    I can't update iTunes because of error message "iTunes.msi is not a valid installation package for the product iTunes". How can this be resolved.  I am using a PC with Windows XP

    If you can, uninstall and reinstall itunes..... Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    Hope this helps.

  • Can we migrate SharePoint Designer 2013 workflows from DEV to UAT to Live without any issues? Any bad experiences?

    Hi there,
    1. Can we migrate SharePoint Designer 2013 workflows from DEV to UAT to Live without any issues? Any bad experiences?
    2. When we deploy these workflows - does IIS need a restart?
    Thank you.

    That depends, did you create reusable workflows? Those can be deployed to another environment (of course depending on dependencies within the workflow itself)
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Error when updating Client Access Front End Service to Exchange 2013 Update 6

    When updating to Exchange 2013 Update 6 we received the following error at the Step 11 of 13: Client Access role: Client Access Front End service step: 
    Error:
    The following error was generated when "$error.Clear();
    $fe = get-ActiveSyncVirtualDirectory -server $RoleFqdnOrName -DomainController $RoleDomainController -ErrorAction SilentlyContinue;
    if ($fe -eq $null)
    new-ActiveSyncVirtualDirectory -DomainController $RoleDomainController -Role ClientAccess;
    else
    update-ActiveSyncVirtualDirectory $fe -DomainController $RoleDomainController -InstallIsapiFilter $true
    " was run: "System.Management.Automation.ParameterBindingException: Cannot convert 'System.Object[]' to the type 'Microsoft.Exchange.Configuration.Tasks.VirtualDirectoryIdParameter' required by parameter 'Identity'. Specified method is not supported. ---> System.NotSupportedException: Specified method is not supported.
    at System.Management.Automation.ParameterBinderBase.CoerceTypeAsNeeded(CommandParameterInternal argument, String parameterName, Type toType, ParameterCollectionTypeInformation collectionTypeInfo, Object currentValue)
    --- End of inner exception stack trace ---
    at System.Management.Automation.Internal.PipelineProcessor.SynchronousExecuteEnumerate(Object input, Hashtable errorResults, Boolean enumerate)
    at System.Management.Automation.PipelineOps.InvokePipeline(Object input, Boolean ignoreInput, CommandParameterInternal[][] pipeElements, CommandBaseAst[] pipeElementAsts, CommandRedirection[][] commandRedirections, FunctionContext funcContext)
    at System.Management.Automation.Interpreter.ActionCallInstruction`6.Run(InterpretedFrame frame)
    at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)".
    Problem was that if you have more than one ActiveSyncVirtualDirectory, the installer for Update 6 fails because it's not expecting an array of virtual directories to be returned. Solution is to remove the "extra" virtual directory, perform the
    installation, and then re-add the virtual directory. 
    None of the other types of virtual directories are susceptible to this, only ActiveSync. 

    Hi,
    Please try to reset registrar state:
    http://tsoorad.blogspot.in/2013/04/lync-2013-ee-pool-wont-start.html
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    Kent Huang
    TechNet Community Support

  • DFW CC Release – 8/2013 Update is not applicable. Error Code: U44M1P28

    Dreamweaver CC Release – August 2013
    Update is not applicable. Error Code: U44M1P28
    Everytime I log in, it says an update is available..
    Anyone have any ideas?
    It downloads fine but then on install it gives this error.  I also have DW CS6 on my system.
    Also says  "Install"  on DW CC in the  App manager, not   "Installed"  which I think it used to say for the suite...
    Mac  10.8.4

    Dreamweaver CC Release – August 2013
    Update is not applicable. Error Code: U44M1P28
    Everytime I log in, it says an update is available..
    Anyone have any ideas?
    It downloads fine but then on install it gives this error.  I also have DW CS6 on my system.
    Also says  "Install"  on DW CC in the  App manager, not   "Installed"  which I think it used to say for the suite...
    Mac  10.8.4

  • Release Management 2013 Server Web Site throwing "Data at the root level is invalid..." error after applying RM 2013 Update 4

    I upgraded our RM Server from 2013 Update 2 to Update 4. During smoke testing, I discovered that the RM approval website would get stuck and display a loading wheel when showing the list of releases. After rebooting the server and uninstalling and reinstalling,
    I eventually got it to load the web site just fine, however the windows event log is displaying thousands of instances of the same error (about once a second).
    Timestamp: 4/2/2015 2:25:05 PM
    Message: Data at the root level is invalid. Line 2, position 1.: \r\n\r\n   at System.Xml.XmlTextReaderImpl.Throw(Exception e)
       at System.Xml.XmlTextReaderImpl.Throw(String res, String arg)
       at System.Xml.XmlTextReaderImpl.ParseRootLevelWhitespace()
       at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
       at System.Xml.XmlTextReaderImpl.Read()
       at System.Xml.Linq.XDocument.Load(XmlReader reader, LoadOptions options)
       at System.Xml.Linq.XDocument.Parse(String text, LoadOptions options)
       at Microsoft.TeamFoundation.Release.Common.ExtensionMethods.XmlExtensionMethods.ToXDocument(String value, Boolean preserveWhitespace)
       at Microsoft.TeamFoundation.Release.Common.Helpers.WebServiceHelper.ExtractWebMethod(String pathInfo, Stream inputStream)
    Category: General
    Priority: -1
    EventId: 0
    Severity: Error
    Title:
    Machine: [Server Name]
    Application Domain: /LM/W3SVC/2/ROOT-1-130724725961138960
    Process Id: 3448
    Process Name: C:\Windows\SysWOW64\inetsrv\w3wp.exe
    Win32 Thread Id: 1136
    Thread Name:
    Extended Properties:
    This is quite concerning because it leads me to think something else is wrong.  I read somewhere else that .Net Framework 4.5.1 is required for RM, but the system requirements on MSDN don't mention that.  Any help greatly appreciated.
    Specs:
    RM Server: Windows 2012 R2
    Release Management 2013 Update 4
    Connect to TFS Server 2013 Update 2
    We are not using HTTPS:

    Hi Joe519,
    Thanks for your post.
    And thank you for sharing  the experience here. 
    All your participation and support are very important to build such harmonious/ pleasant / learning environment for MSDN community.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Which Visual C++ redistributable package needed for Visual Studio 2013 Update 3 and 4?

    Which redistributable package should be installed at the client side for binaries built with either Visual C++ 2013 Update 3 or 4? 
    From the Download Center, "Visual C++ Redistributable Packages for Visual Studio 2013",
    http://www.microsoft.com/en-us/download/details.aspx?id=40784 I downloaded "vcredist_x86.exe" and "vcredist_x64.exe", which have version number 12.0.21005.1
    My system, which has installed VS2013 Update 3, also has "vcredist_x86.exe" and "vcredist_x64.exe", at "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\redist\1033", but these having a higher version number: 12.0.30501.0
    A colleague of mine has installed  VS2013 Update 4, but has the same redistributable files as my VS2013 Update 3 installation: version 12.0.30501.0.
    Is it correct to conclude that
    the VS2013 redistributables at Microsoft's Download Center (12.0.21005.1) are outdated?
    VS2013 Update 3 and Update 4 based applications may share the very same redistributable package (12.0.30501.0)?

    @Niels,
    Maybe we cannot say it is not uploaded. We can see the package is named as
    Visual C++ Redistributable Packages for Visual Studio 2013 Update 4
    So the package may only specific for one version and does not mean it should have Visual C++ Redistributable Packages
    for Visual Studio 2013 Update 2
    If you want to report anything you can consider use Connect:
    https://connect.microsoft.com/
    However I don't think we need to report this case on Connect.
    For your last question, since the version 30501 seems to be the update version of 21005, I think you will not have them together. Anyway, for this particular VC++ runtime, I would recommend you keep it update to date.
    https://support.microsoft.com/kb/2019667?wa=wsignin1.0
    Then you may get the latest features. And if you have any specific reason that you need a specific version, I think we can handle it case by case. For example, if you want to deploy you C++ application and you need a runtime version.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Combined Update 10.8.3 installation failure JS: Package Authoring Error:

    Hi there,
    I'm trying to install the combined Update 10.8.3 from 10.8.2.
    It doesn't show in the Softwarupdate, so i downloaded it from support.apple.com
    Now i get a failure while Installing, or before installing.
    Konsole log:
    24.04.13 12:06:12,138 CoreServicesUIAgent[3438]: Error: qtn_file_apply_to_path error: Read-only file system
    24.04.13 12:06:12,375 Installer[3474]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    24.04.13 12:06:14,355 Installer[3474]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    24.04.13 12:06:14,664 Installer[3474]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24.04.13 12:06:14,664 Installer[3474]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24.04.13 12:06:14,684 Installer[3474]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24.04.13 12:06:14,684 Installer[3474]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    24.04.13 12:06:14,687 Installer[3474]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    24.04.13 12:06:27,707 SystemUIServer[132]: -[TCMNATPMPPortMapper_Combined refreshExternalIPInThread] NAT-PMP: IP refresh did fail: -7
    Install log:
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: @(#)PROGRAM:Install  PROJECT:Install-735
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: @(#)PROGRAM:Installer  PROJECT:Installer-614
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Hardware: MacBookPro10,1 @ 2.30 GHz (x 8), 8192 MB RAM
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Running OS Build: Mac OS X 10.8.2 (12C3012)
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: TMPDIR=/var/folders/s_/kjdj96xj0y50zdqk_zrl0s5h0000gn/T/
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: SHELL=/bin/bash
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: HOME=/Users/KidNoob
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: USER=KidNoob
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: LOGNAME=KidNoob
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: SSH_AUTH_SOCK=/tmp/launch-6bZ1Un/Listeners
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: Apple_Ubiquity_Message=/tmp/launch-vrGAQ6/Apple_Ubiquity_Message
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: Apple_PubSub_Socket_Render=/tmp/launch-faovOF/Render
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: COMMAND_MODE=unix2003
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Env: __CF_USER_TEXT_ENCODING=0x1F5:0:3
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Kombiniertes OS X-Update  Installation Log
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Opened from: /Volumes/OS X 10.8.3 Update Combo/OSXUpdCombo10.8.3.pkg
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: Product archive /Volumes/OS X 10.8.3 Update Combo/OSXUpdCombo10.8.3.pkg trustLevel=501
    Apr 24 12:06:12 Kid-Mac.local Installer[3474]: JS: Package Authoring Error: Exception thrown while running volume check. TypeError: 'null' is not an object (evaluating 'my.target.systemVersion.ProductVersion')
    Found the solution with the ServerVersion.plist but there is nothing in my CoreServices folder.
    Thx for Help.

    Okay,
    finally I reinstall Mountain Lion,
    CMD+R, New Install!
    The only thing, you have to Install the newest Java Version, thats it!

  • Replace TeTex package by TeX Live

    As of May 2006, TeTeX has been abandoned upstream (see http://www.tug.org/tetex). Another project, called TeX Live, which uses most of the scripts developed for teTeX, is its successor. I would suggest to replace TeTex packages in arch by Tex Live.

    Ah, so then the quest is too make a PKGBUILD for the newer pdftex and overwrite the teTeX provided one (while waiting for TeX Live to be part of Arch Linux). I wonder though if pacman lets you do that.
    Or.. hmm.. I think that the teTeX PKGBUILD could be modified to download the newest pdfTeX and overwrite the old src and then be built as normal. I'll give it a try and see how it goes.
    EDIT: Okay, so I managed to break the teTeX build by taking a chance at with files actually need to be copied, obviously it's more advanced than that. Just building the latest pdfTeX is plain easy though, not sure what will happen if you overwrite the files used by (and "owned") teTeX.
    I'll post the files incase anyone wants to try, I won't take any responsibility though, haven't tried it myself, but a guess is that if it messes teTeX up you should recover by 'pacman -S tetex' and say yes when it tells you the latest version is already installed. That's just a guess though. I've not tried building it on i686, but I don't think it should complain so I put it in there as well.
    PKGBUILD:
    pkgname=pdftex
    pkgver=1.40.3
    pkgrel=1
    pkgdesc="Create PDF-files from TeX-files"
    arch=(i686 x86_64)
    url="http://www.tug.org/applications/pdftex/"
    license=('GPL')
    depends=('glibc')
    install=pdftex.install
    source=(http://sarovar.org/download.php/1160/$pkgname-$pkgver.tar.bz2)
    md5sums=('3e5ce0ff804e0420908b89ae44c69532')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./build.sh
    # Overwrite old files
    install -D $startdir/src/$pkgname-$pkgver/build/texk/web2c/pdfetex $startdir/pkg/usr/bin/pdfetex
    install -D $startdir/src/$pkgname-$pkgver/build/texk/web2c/pdftex $startdir/pkg/usr/bin/pdftex
    install -D -m 644 $startdir/src/$pkgname-$pkgver/build/texk/web2c/pdftex.pool $startdir/pkg/usr/share/texmf/web2c/pdftex.pool
    install -D $startdir/src/$pkgname-$pkgver/build/texk/web2c/pdftosrc $startdir/pkg/usr/bin/pdftosrc
    install -D $startdir/src/$pkgname-$pkgver/build/texk/web2c/ttf2afm $startdir/pkg/usr/bin/ttf2afm
    pdftex.install:
    # arg 1: the new package version
    pre_install() {
    /bin/true
    # arg 1: the new package version
    post_install() {
    echo "Regenerating TeX formats"
    fmtutil --refresh
    /bin/true
    # arg 1: the new package version
    # arg 2: the old package version
    pre_upgrade() {
    /bin/true
    # arg 1: the new package version
    # arg 2: the old package version
    post_upgrade() {
    post_install $1
    /bin/true
    # arg 1: the old package version
    pre_remove() {
    /bin/true
    # arg 1: the old package version
    post_remove() {
    /bin/true
    op=$1
    shift
    $op $*
    Last edited by [vEX] (2007-04-13 21:39:05)

Maybe you are looking for