domingo, 18 de noviembre de 2012

Virtualization by Davis

Virtualization by Davis


Can't Load Package from Publishing Server - Event ID 1008

Posted: 17 Nov 2012 03:46 PM PST

I'm stuck, using the production release of App-V 5.0, not the BETA version. Converted several packages from version 4.6 leveraging Powershell cmdlet.  Published the package and created a local policy to set the publishing server on the client. I've tried the troubleshooting steps here (http://support.microsoft.com/kb/2778168?wa=wsignin1.0) and elsewhere, but haven't turned up anything out of the ordinary, should volunteer that the packages are hosted on DFS and I've confirmed that the logged in account can access the share.

This is what I get in event viewer:

Event ID 1008

Package {c851601d-e4c2-4c7a-aa23-857d9067fbf7} version {cb8cc299-87e4-45b9-9f09-032bff09a78b} failed configuration in folder 'C:\ProgramData\App-V\C851601D-E4C2-4C7A-AA23-857D9067FBF7\CB8CC299-87E4-45B9-9F09-032BFF09A78B' with error 0x86D00D06-0xB.

------------

This is what I get when I force a sync via Powershell

PS H:\> import-module AppvClient
PS H:\> Sync-AppvPublishingServer 1
Sync-AppvPublishingServer : There were errors encountered when trying to publish packages from the server.
Operation attempted: RefreshPublishingServer.
AppV Error Code: 070000000B.
Please consult AppV Client Event Log for more details.
At line:1 char:1
+ Sync-AppvPublishingServer 1
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidResult: (:) [Sync-AppvPublishingServer], ClientException
    + FullyQualifiedErrorId : RefreshPublishingServerError,Microsoft.AppV.AppvClientPowerShell.SyncAppvPublishingServer

------------

In case anyone's interested here's the script I'm using to recurse a folder and convert the package:

  $Source = "C:\PACKAGES"
  $Destination = "C:\PACKAGES.V5"

# create destination folder (parent)
  New-Item -Path $Destination -type directory

# create subfolders
  Get-ChildItem -Path $Source | ForEach-Object { New-Item -Path $Destination\$_ -type directory }

  $Packages = Get-ChildItem -Path $Source

  cd c:\packages

  foreach ($Item in $Packages){
     $Result = Test-AppvLegacyPackage $Item.FullName
     if ($Result.Errors.Count -eq 0) {
        Write-Host "Processing " $Item.FullName
        ConvertFrom-AppvLegacyPackage -SourcePath $Item -DestinationPath $Destination\$Item
        }
     }



This posting includes an audio/video/photo media file: Download Now

No hay comentarios:

Publicar un comentario