Set-AzureVMDscExtension Failing to install extension on Azure VM

When I attempt to run the following bit of code against a VM in Azure I get the error below. So the patch it is trying to install is already present on the server, but seems it is failing out all the same. Any suggestions as I can't really configure this
bit of the code as far as I know?
::CODE::
$vmname = "NameofServer"
$DomainCred = get-credential
$serviceName = "AzureServiceName"
$vm = Get-AzureVM -Name $vmName -ServiceName $serviceName
$vm = Set-AzureVMDscExtension -VM $vm -ConfigurationArchive AddAzureSecTeamGroups.ps1.zip -ConfigurationName AddAzureSecTeamGroups -ConfigurationArgument @{ NodeName = $vmName; DomainCred = $Domaincred} -Verbose
$VM | Update-AzureVM -Verbose
::ERROR::
Execution Error:
C:\Packages\Plugins\Microsoft.Powershell.DSC\1.5.0.0\bin\enable.ps1 : Error enabling the DSC Extension: The DSC Extension was
not installed correctly, please check the logs on the VM.
At C:\Packages\Plugins\Microsoft.Powershell.DSC\1.5.0.0\bin\pre-enable.ps1:51 char:5
+     & $scriptRoot\enable.ps1 -Verbose
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,enable.ps1
chacho

The DSC config is indeed published, here is the full bit of code listed below for both VM creation and the DSC config ps1 file.  Also the pre-enable.ps1 is just a script not the log. The WaAppAgent log shows that everything is succesfull... so really
something else is afoot.
=====
[00000016] [02/14/2015 00:45:51.44] [INFO]  Process runtime settings of plugin (name: Microsoft.Powershell.DSC, version: 1.5.0.0)., Code: 0
[00000016] [02/14/2015 00:45:51.44] [INFO]  Writing runtime settings for the plugin (name Microsoft.Powershell.DSC version 1.5.0.0).
[00000016] [02/14/2015 00:45:51.44] [INFO]  RuntimeSettings found for the plungin Microsoft.Powershell.DSC version 1.5.0.0.
[00000016] [02/14/2015 00:45:51.44] [INFO]  Writing runtime settings to temp file C:\Packages\Plugins\Microsoft.Powershell.DSC\1.5.0.0\RuntimeSettings\3.settings.tmp succeeded.
[00000016] [02/14/2015 00:45:51.44] [INFO]  Provided runtime settings to plugin Microsoft.Powershell.DSC version 1.5.0.0 in C:\Packages\Plugins\Microsoft.Powershell.DSC\1.5.0.0\RuntimeSettings\3.settings file.
[00000016] [02/14/2015 00:45:51.44] [INFO]  Enabling plugin (name: Microsoft.Powershell.DSC, version: 1.5.0.0)., Code: 0
[00000016] [02/14/2015 00:45:51.44] [INFO]  Staring a process with the launch command C:\Packages\Plugins\Microsoft.Powershell.DSC\1.5.0.0\bin\enable.cmd and params:
[00000016] [02/14/2015 00:45:51.44] [INFO]  Beginning enable of plugin Microsoft.Powershell.DSC.
[00000016] [02/14/2015 00:45:51.44] [INFO]  Waiting for command C:\Packages\Plugins\Microsoft.Powershell.DSC\1.5.0.0\bin\enable.cmd of plugin (name Microsoft.Powershell.DSC version 1.5.0.0) to finish...
[00000017] [02/14/2015 00:45:51.45] [INFO]  Processing plugin Microsoft.Compute.BGInfo version 1.1, state: enabled, autoupgrade: True, isJson: False
[00000017] [02/14/2015 00:45:51.45] [INFO]  Plug-in Microsoft.Compute.BGInfo 1.1 found in cache.
[00000017] [02/14/2015 00:45:51.45] [INFO]  Extracting plug-in zip file to folder. Zip file: C:\Packages\Plugins\Microsoft.Compute.BGInfo\1.1\Microsoft.Compute.BGInfo_1.1.zip
[00000017] [02/14/2015 00:45:51.52] [INFO]  Xml manifest file C:\Packages\Plugins\Microsoft.Compute.BGInfo\1.1\PluginManifest.xml found corresponding to the plugin Microsoft.Compute.BGInfo
[00000017] [02/14/2015 00:45:51.52] [INFO]  Install command of plugin Microsoft.Compute.BGInfo: C:\Packages\Plugins\Microsoft.Compute.BGInfo\1.1\BGInfoLauncher.exe
[00000017] [02/14/2015 00:45:51.52] [INFO]  Beginning installation of plugin Microsoft.Compute.BGInfo 1.1.
[00000017] [02/14/2015 00:45:51.58] [INFO]  Waiting for command of plugin Microsoft.Compute.BGInfo to finish...
[00000017] [02/14/2015 00:45:54.72] [INFO]  Successfully installed plugin Microsoft.Compute.BGInfo 1.1.
[00000017] [02/14/2015 00:45:54.72] [INFO]  Plugin enabled (name: Microsoft.Compute.BGInfo, version: 1.1)., Code: 0
[00000016] [02/14/2015 00:46:00.58] [INFO]  Command C:\Packages\Plugins\Microsoft.Powershell.DSC\1.5.0.0\bin\enable.cmd of Microsoft.Powershell.DSC has exited with Exit code: 0
[00000016] [02/14/2015 00:46:00.58] [INFO]  Successfully enabled plugin Microsoft.Powershell.DSC.
[00000016] [02/14/2015 00:46:00.58] [INFO]  Setting the install state of the handler Microsoft.Powershell.DSC_1.5.0.0 to Enabled
[00000016] [02/14/2015 00:46:00.58] [INFO]  Plugin enabled (name: Microsoft.Powershell.DSC, version: 1.5.0.0)., Code: 0
======
$Domaincred = Get-Credential -Message "Enter Domain UserName"
$LocalAdminCred = Get-Credential -Message "Enter LocalAdmin Password" -UserName MyLocalAdmin
$subName = "MYSUBNAME"
$subID = "MYSUBGUID"
$serviceEP = "https://management.core.windows.net/"
$userName = $LocalAdminCred.GetNetworkCredential().UserName
$adminPassword = $LocalAdminCred.GetNetworkCredential().Password
$domain = "MYDOMAIN"
$domainJoin = "MYDOMAIN.FQDN"
$domainUser = $Domaincred.GetNetworkCredential().UserName
$domainPassword = $Domaincred.GetNetworkCredential().Password
$MachineOU = "OU=SOMEOU,OU=SOMEOTHEROU,DC=DOMAIN,DC=FQDN"
$vmName = "AZURETESTVM01"
$serviceName = "USEAST-01-SERVICE"
$vnetName = "MYExpressRouteVNET"
$location = "East US"
$instanceSize = "A5"
$storagepoolname = "USEASTPOOL"
$subNet = "10.1.100.0/24"
$DSCGroupConfig = "C:\ExpressRouteScripts\AddAzureSecTeamGroups.ps1"
Publish-AzureVMDscConfiguration -ConfigurationPath $DSCGroupConfig -Force -Verbose
# Configure settings for the new VM and cloud service
$image = (Get-AzureVMImage | Where { $_.ServiceName -eq $serviceName}).ImageName
$newVM = New-AzureVMConfig -Name $vmName -InstanceSize $instanceSize -ImageName $image
$newVM = Add-AzureProvisioningConfig -VM $newVM  -WindowsDomain -JoinDomain $domainJoin -domain $domain -DomainUserName $domainUser -DomainPassword $domainPassword -MachineObjectOU $MachineOU -Password $adminPassword -AdminUsername $userName -NoRDPEndpoint
-NoWinRMEndpoint
$newVM = Set-AzureSubnet -vm $newVM -SubnetNames $subNet
$newVM = Set-AzureVMDscExtension -VM $newVM -ConfigurationArchive AddAzureSecTeamGroups.ps1.zip -ConfigurationName AddAzureSecTeamGroups -ConfigurationArgument @{ NodeName = $vmName; DomainCred = $Domaincred} -Verbose
# Create the new VM and cloud service using the reserved VIP
New-AzureVM -ServiceName $serviceName -VMs $newVM -VNetName $vnetName -Location $location -Verbose
=======
Actual AddAzureSecTeamGroups.ps1
=======
Configuration AddAzureSecTeamGroups
 [CmdletBinding()]
 param(
     [Parameter(Mandatory=$true, Position=0)]
     [string] 
     $NodeName,
  [Parameter(Mandatory=$true, Position=0)]
     [string] 
     $Domaincred
 Node $NodeName
  WindowsFeature Telnet-Client
    Ensure = "Present" # To uninstall the role, set Ensure to "Absent"
    Name = "Telnet-Client" 
  WindowsFeature RSAT-AD-PowerShell
    Ensure = "Present" # To uninstall the role, set Ensure to "Absent"
    Name = "RSAT-AD-PowerShell" 
  Group SEC-Eng-LocalAdmins
   GroupName = "Administrators"
   Credential = $Domaincred
   MembersToInclude = "domain\group01;domain\group02"
chacho

Similar Messages

  • Extension Manager CS6 fails to install extension

    Hello,
    I am Elena Coman from Extend Studio.
    We have a customer who tries to install the Flexi Lightbox estension in DW CS6 - https://flexilightbox.s3.amazonaws.com/Flexi_Lightbox_1.0.152.zip but the extension is not installing.
    Here is what the customer said:
    I have tried several times to install using the Adobe Extension Mgr CS6 and it just runs and never stops.
    I already uninstalled extension manager CS6 and reinstalled it 2 times. Got
    the same issue.
    I had suggested thet he opens the EM as Administrator, but the same issue occurs.
    Other details:
    OS version - Win XP
    Soft version - Dreamweacer CS6
    Please let me know what may cause this issue.
    Best,
    Elena Coman

    Sorry, I have tried a few things to upset the installation, without success as you can see in the following
    Try by closing Extension Manager and Dreamweaver, rename the Configuration folder to Configuration_backup or similar, restart Extension Manager and try the installation again.
    The configuration folder can be found as follows:
    Vista, 7 & 8: C:\Users\<username>\AppData\Roaming\Adobe\Dreamweaver CS6\<language>\Configuration
    XP: C:\Documents and Settings\<username>\Application Data\Adobe\Dreamweaver CS6\<language>Configuration\
    MAC: MacHD : Users : <username> : Library : Application Support : Adobe : Dreamweaver CS6 : <language> : Configuration :

  • Extension install failing Adobe Exchange extension

    Mutiple users, our test systems from Mac and Windows are failing when installing extensions from the Adobe Exchange extension.
    Install Extension from Adobe Exchange Panel in Adobe CC application, Ps, Ai, Id,…
              click to download extension
              installing
              ask to open Extension Manger CC, choose yes
    Extension Manager CC
              Asked to quit Adobe CC application
              Sometimes: in Adobe CC application Panel shows "Installation failed. Please close Extension Manager and try again."
              Quit Adobe CC application, click Retry
              Extension Manager error - "File cannot be found... Extension will not be installed."
    Result: Installed extension not shown installed in Extension Manager or Adobe Exchange Panel, but extension is installed.
    Attempting to reinstall has same failure. Extension is installed, but has no method to remove.
    Note installing steps in Panel and in Extension Manager can last 5+ minutes.

    I am sorry about that. These extensions should have been specified force-quit="true" in mxi file by their producers. This attribute means that the application must be closed in order to install these extensions. Because the Exchange Panel runs in applications, so these extensions can't be installed by Exchange Panel. User have to quit applications and launch Extension Manager to install them. This is bad user experience so we  hope the extension developers use this attribute only if it is indeed necessary.
    To get the real root cause, please create a file named ExManCoreLibLog.YES in the "C:\Users\<UserName>\AppData\Roaming\Adobe\Extension Manager CC\Log" (Windows) or "/Users/<UsreName>/Library/Application Support/Adobe/Extension Manager CC/Log" folder (Mac), then launch Extension Manager CC and reproduce your problem, then send the ExManCoreLibrary.log in this folder to [email protected] Thanks!

  • After upgrading to 8.0.1 Firefox will download but not install extensions after upgrading to 8.0.1

    Windows Vista. Avast Antivirus with Sandbox feature.
    Outside Sandbox - all extensions available. Within Sandbox - no extensions available and not able to install any extensions. ie Adblock Plus, No Script etc.
    Before upgrading to 8.0.1 no problems in either mode. Add-ons appear to be intact in either mode.
    When attempting to install an extension after downloading:
    "(extension) could not be installed because Firefox cannot modify the needed file".
    Reluctant to delete pluginreg dat file because all extensions are working outside Sandbox.

    Hi,
    You may have to "trust' the upgraded Firefox, if there is such a setting in Avast and install extensions after starting Firefox outside of the sandbox - normally. Not sure about Avast, but usually a sandbox would mean a virtual area like hard disk storage, registry settings etc. for the sandboxed app and once the application is closed or the computer is shutdown, everything that was done by the app or via the app is sort of vaporized and the application and it's settings are returned to it's previous permanent state.

  • VM in Running (Installing Extensions) state - it seems it's failing to enable the Microsoft.Azure.Diagnostics.IaasDiagnostics plugin

    My VM is in the follow state "Running (installing extensions) state. In the dashboard it appears that the IaasDiagnostics extension is not enabled. The message displayed in the dashboard is:
    Enable failed for plugin (name: Microsoft.Azure.Diagnostics.IaaSDiagnostics, version 1.2.0.0) with exception Command C:\Packages\Plugins\Microsoft.Azure.Diagnostics.IaaSDiagnostics\1.2.0.0\DiagnosticsPluginLauncher12.exe of Microsoft.Azure.Diagnostics.IaaSDiagnostics has exited with Exit code: -3
    How can I get this working?

    Hi,
    Thanks for your feedback.
    Can you RDP into the VM? If yes, you can check the log in the path below to see if you can find any root reason for this issue:
    C:\WindowsAzure\Logs\WaAppAgent.log
    I also tried to use the Remove-AzureVMDiagnosticsExtension cmdlets to do that and got the same results as yours:
    I am sorry to say that I haven't found any ways to remove the DiagnosticsExtension in Azure PowerShell at present. I recommend you to feeback this on the Azure feedback
    link below:
    http://feedback.azure.com/forums/216843-virtual-machines
    By the way, you can access the
    preview portal by going to Browse Virtual Machines, select the VM, select
    Extensions, select the extension to remove and click Delete. After it has been deleted, go back and select
    Add and add it back.
    In addition, if you restart the VM and still encounter this issue, please contact Azure support by requesting a support ticket in the link below:
    http://azure.microsoft.com/en-us/support/options/
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • When setting up Elements 9 from the disk  I get the message "the wizard was interrupted before Adobe Photoshop Elements 9 could be completely installed. The mentioned application has failed to install th: Shared Technologies.

    When setting up Elements 9 from the disk  I get the message "the wizard was interrupted before Adobe Photoshop Elements 9 could be completely installed. The mentioned application has failed to install th: Shared Technologies.

    Try downloading and installing the 9.0.3 updater from here:
    mac
    Adobe - Photoshop Elements : For Macintosh
    windows
    Adobe - Photoshop Elements : For Windows

  • Failed to Install the Extension CC 2014

    I have an extension that I have installed on hundreds of computers but have come across this error on a recent install and I can't figure out what's causing the issue.
    "Failed to install the extension. Please make sure the Manifest.xml of this extension is valid and the Extension Manager recognizes at least one product which the extension supports."
    The correct version of Extension Manager is installed and being used. I am at a loss to what is causing the issue, does anyone have any ideas.
    Thanks,

    I'm having the same problem here. The icons are not showed on the left bar in my extension manager CC. I've tried reinstall and the problem still the same. Does anybody know how to solve that?
    How can I fix the manifest.xml file issue?
    Here the screenshot.
    Thanks for any help.

  • Installing extension fails - CS5 Mac

    I downloaded the 3D "Materials" extensions (materials.zxp) for PSE/CS5 and it failed to install with the following error:
    I am indeed the Administrator (there is no other user). I have fixed permissions and still get this problem. Running OSX 10.5.8.

    This extension would install some files into <Photoshop CS5 installation folder>/Presets/Materials folder. Could you check whether you have permission to create file under that folder?
    I think you can check it by:
    1. Go to Photoshop CS5 installation folder. Default it should be /Applications/Adobe Photoshop CS5.
    2. Go to sub folder Presets->Materials.
    3. Try to create a new file under this folder. (Copying a file to this folder will do)
    If you can't create a new file under this folder, you need to change the permission of this folder. Then try to install the extension again.

  • Install Extension Builder 2.1 trial failed [ windows 7 64bits ]

    Hi !
    Trying to install the trial version of Extension Builder 2.1 on windows 7 64bits,
    I'm stopped by the msi app that is not go true the last step of install...
    Saying that it can't install Extension Builder 2.1 because Extension Builder 2.1 is not installed !
    Don't now what to do whit this.
    pierre.

    Hi !
    I finally succeded in installing Extension Builder 2.1.
    I followed the advices from that forum topic http://forums.adobe.com/thread/1245836
    and installed manually Flash Builder 4.6 before.
    The first try failed. After cleaning of the registry for "Extension Builder" items, the installation succeded.

  • "Installing extensions on virtual machine..." does not complete on Azure VM

    When creating VM using my custom disk, I encountered the same issue as the one mentioned in this post(http://blogs.msdn.com/b/mast/archive/2014/06/18/azure-vm-provisioning-stuck-on-quot-installing-extensions-on-virtual-machine-quot.aspx). I can’t
    resolve my problem by following the steps of the post. 
    Here is the context:
    Before uploading the disk, I prepare my Ubuntu VM by following this post(http://azure.microsoft.com/en-us/documentation/articles/virtual-machines-linux-create-upload-vhd-ubuntu/) in which there is a step “sudo apt-get install walinuxagent”.
    When creating VM, the portal is stuck in "Installing extensions on virtual machine...”.
    I can’t SSH to the VM.
    I checked the status of VM agent using PowerShell, it shows ‘GuestAgentVersion: Unknown’ and ‘Status: NotReady’.
    Could you kindly help me out?

    Hi Hulu;
    Thank you for your post. Apologies for the late response. From a support perspective the way forward would be to open up a support ticket as we would need to do get the
    need subscription id, deploymend id and vm name for further troubleshooting I encourage you to do the same.
    Please refer to
    this documentation on how to open a support ticket. Hope this helps.
    Warm Regards;
    Prasant

  • "Failed to debug the Windows Azure Cloud Service project. The Output directory .... does not exist" - Looking for Solution Config Name Folder?

    Good evening,
    I've been working on and with a VS2013 Update 2 / Azure SDK 2.3 Cloud Service project for a while now and never had a problem debugging it (setting the .ccproj Project as Startup Project) but at the moment I cannot Debug it anymore - I always get the following
    error message:
    Failed to debug the Windows Azure Cloud Service project.  The output directory 'D:\Workspace\Development\Sources\AzureBackend\csx\Backend - Debug' does not exist.
    Now what's odd here, is the last part - the "Backend - Debug" is the Solution configuration name, ALL projects in that particular solution configuration are set to the Debug Configuration. The .ccproj file also only specifies Debug|Any CPU (and
    Release|Any CPU respectively) as its output folder(s). Why is the Solution config appearing up there?
    And more importantly.. why is this happening and what can I do?!
    Thanks,
    -Jörg
    Ps: there seems to be a related
    connect bug and these sorts of issues do appear around the forums but none contains a solution (neither reinstalling the Azure SDK nor cloaking the workspace/re-retrieving & building everything worked).

    Good morning Jambor,
    I already tried de-installing everything Azure-Tooling related including the Azure SDK, Restarting my machine and re-installing the SDK.
    Same result. I can build the .ccproj perfectly fine and the cspack file IS generated perfectly fine, only debugging does not work and there's NO information in the VS output window (again - all projects succeed to build).
    I tried explicitely running VS as Administrator, no change. I removed all IIS Express sites (as the ccproj has one web worker role), remapped my local TFS workspace.. nothing helped.
    As building works, deploying to Azure Cloud Service (manually and via Publish inside VS) all works -perfectly-, I am pretty sure this IS a bug and I'd LOVE to help to get this fixed. As I said, currently I cannot debug and/or run & test my work, hence
    I cannot do ANY work.

  • 10.6.2 failed to install due to 'nfs error', audio no longer works

    macbook pro, all other updates have installed just fine, except for 10.6.2
    I get this in the log:
    11/10/09 3:58:15 PM com.apple.kextcache410 Created mkext archive //System/Library/Caches/com.apple.kext.caches/Startup/Extensions.mkext.
    11/10/09 3:58:15 PM com.apple.kextcache403 Failed to mount helper partition: error 0XF8DA000C (DA err# 0x0c).
    11/10/09 3:58:15 PM com.apple.kextd10 kextcache error while updating / (error count: 4)
    11/10/09 3:58:15 PM com.apple.kextcache403 /: trouble updating one or more helper partitions.
    11/10/09 3:58:15 PM com.apple.kextd10 async child pid 403 exited with status 70
    11/10/09 3:58:15 PM com.apple.kextd10 kextcache error while updating / (error count: 5)
    11/10/09 3:58:15 PM installd376 PackageKit: Install Failed: (null)
    Error Domain=PKInstallErrorDomain Code=121 UserInfo=0x104d22740 "An error occurred while updating system extension information." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=70 "The operation couldn’t be completed. Stale NFS file handle") {
    NSLocalizedDescription = "An error occurred while updating system extension information.";
    NSUnderlyingError = "Error Domain=NSPOSIXErrorDomain Code=70 \"The operation couldn\U2019t be completed. Stale NFS file handle\"";
    arguments = (
    "-update-volume",
    nothing is mounted (i rebooted before applying). not sure why it's giving that NFS error. it's consistent tho.. if i reboot and try the manual install of the patch, I get the same error.
    after the failed patch "installed" it left my sound not working... so far everything else appears to work. any thoughts on fixing this are appreciated. i ran diskutil and 'fixed perms' and 'verified disk' ... patch still fails.

    Try reinstalling the patch. If you get all the way through the installation, then see if your sound works. If not, then I suggest you do a repair install of Sno by installing Sno over Sno as in an upgrade install. Such an install, while usually very safe, still is an install so be appropriated backed up if you proceed.

  • Install of CUCM 8.6.1.10000-43 on VMWare fails on installing progmeter

    Hi, Everyone
    First time post here, and first time installing CUCM (any version).
    I built a VM using a downloaded OVA template for CUCM 6.5.1.10000-43, and the install fails with a critical stop.  Once I figured out how to dump logs to the virtual serial port, and looked at the install.log, I found the following information that looks like where the install failed (these are the only LVL::Error and LVL::Critical messages in the log).
    It looks like install failed to install the progmeter application component.
    Does anyone know what this app does?  Any ideas on why it might have failed to install and possible workaround?
    I may already have the answer to the question, as I'm attempting install on a VM running on VMWare vServer (rather than ESX/ESXi/vSphere).  It is possible that simply being on an unsupported configuration is my problem.  I'm trying to work with the equipment immediately available to me, but fully understand that I may have set myself up for failure by even attempting this.
    Any help is appreciated greatly.
    Regards,
    Sean C
    INSTALL LOG SNIPPET
    08/17/2011 17:51:51 component_install|File:/opt/cisco/install/bin/component_install:743, Function: exec_progmeter(), /opt/cisco/install/bin/progmeter failed (1)|<LVL::Error>
    08/17/2011 17:51:51 appmanager.sh|Internal Error, File:/usr/local/bin/base_scripts/appmanager.sh:155, Function: install(), failed to install application components|<LVL::Critical>
    08/17/2011 17:51:51 post_install|File:/opt/cisco/install/bin/post_install:869, Function: install_applications(), /usr/local/bin/base_scripts/appmanager.sh -install failed (1)|<LVL::Error>
    08/17/2011 17:51:51 post_install|Exiting with result 1|<LVL::Info>
    08/17/2011 17:51:51 post_install|INSTALL_TYPE="Basic Install"|<LVL::Debug>
    08/17/2011 17:51:51 post_install|File:/opt/cisco/install/bin/post_install:570, Function: check_for_critical_error(), check_for_critical_error, found /common/log/install/critical.log, exiting|<LVL::Error>
    08/17/2011 17:51:52 post_install|(CAPTURE) Mail notification cancelled - smtp server address for email not found! [/usr/local/platform/conf/platformConfig.xml]|<LVL::Debug>
    08/17/2011 17:51:52 display_screen|Arguments: "Critical Error" "The installation has encountered a unrecoverable internal error. For further assistance report the following information to your support provider.
    "/opt/cisco/install/callmanager/scripts/cm_msa_post.sh install PostInstall 8.6.1.10000-43 8.6.1.10000-43 /usr/local/cm/ /usr/local/cm/ /common/log/install/capture.txt " terminated. Exceeded max time (360)
    The system will now halt.
    Continuing will allow you to dump diagnostic information before halting." "Continue"|<LVL::Debug>

    Hi,
    Has anyone found a fix for this?
    I am trying to run call manager 8.6.1 on the following enviroment
    VMware ESXI 4.1
    4GB of RAM
    80 GB HDD Space
    I have allocated the VM one CPU
    In regards to vsergeyey reponse I have checked the network adapter and this is flexible.
    I have run the OVA template firstly before mounting the image
    I have tried installing numerous times.
    Each and every time near the "Installing Database Component" I get the following error;

  • Upgrade to R2 from SCOM 2012 SP 1 UR 4 - Final configuration failed to install

    I was upgrading our test SCOM 2012 SP1 UR 4 sever to R2 and ran into the following issue:
    Setup cannot be completed…  Final configuration failed to install.
    Everything else upgraded fine.
    There was no rollback performed…. The log states “Skipping rollback for install item Final Configuration as it was not successfully installed”
    Looking in OpsManagerSetupWizard.log in the section for Final Configuration I see the following:
    [16:00:43]:           Always: :!***** Installing: POSTINSTALL ***
    [16:00:43]:           Info:      :SetProgressScreen: StartMinorStep.
    [16:00:43]:           Warn:    :ApplyUpdates: Unable to load QFE file.
    [16:00:43]:           Always: :Doing Preinstall task for POSTINSTALL
    [16:00:43]:           Warn:    :CheckAndLoadUpdateFiles: Unable to load QFE file.
    [16:00:43]:           Always: :Doing Install task for POSTINSTALL
    [16:00:44]:           Debug: :DoInstallTask: Found Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.PostInstall;PostInstallProcessor as type and method.
    [16:00:44]:           Info:      :Type: Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.PostInstall  Method: PostInstallProcessor
    [16:00:44]:           Info:      :SetProgressScreen: Init Exe Install progress.
    [16:00:44]:           Info:      :AddUninstallChangeEntry: Cleaning out existing files at the ARP file cache location D:\Program Files\System Center 2012\Operations
    Manager\Setup
    [16:00:44]:           Error:     :InstallActionProcessor.DoInstallTask: method PostInstallProcessor threw exception.  We will return installSuccessful = false.:
    Threw Exception.Type: System.Reflection.TargetInvocationException, Exception Error Code: 0x80131604, Exception.Message: Exception has been thrown by the target of an invocation.
    [16:00:44]:           Error:     :StackTrace:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at Microsoft.SystemCenter.Essentials.SetupFramework.InstallActionProcessor.DoInstallTask(InstallItemsInstallDataItem itemToInstall)
    [16:00:44]:           Error:     :Inner Exception.Type: System.UnauthorizedAccessException, Exception Error Code: 0x80131604, Exception.Message: Access to the path 'EULA_EN_EVAL.RTF'
    is denied.
    [16:00:44]:           Error:     :InnerException.StackTrace:   at System.IO.Directory.DeleteHelper(String fullPath, String userPath, Boolean recursive, Boolean
    throwOnTopLevelDirectoryNotFound)
       at System.IO.Directory.Delete(String fullPath, String userPath, Boolean recursive, Boolean checkHost)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SetupHelpers.ARPFileCache()
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SetupHelpers.AddUninstallChangeEntry()
       at Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.PostInstall.PostInstallProcessor(Func`3 setProgressScreen)
    [16:00:44]:           Error:     :ProcessInstalls: Install Item Final Configuration failed to install.  We did not launch the post process delegate.
    [16:00:44]:           Always: :SetErrorType: Setting VitalFailure. currentInstallItem: Final Configuration
    [16:00:44]:           Info:      :SetProgressScreen: FinishMinorStep.
    [16:00:44]:           Always: :****************************************************************
    [16:00:44]:           Always: :****Starting*RollBack*******************************************
    [16:00:44]:           Always: :****************************************************************
    [16:00:44]:           Info:      :SetProgressScreen: StartMinorStep.
    [16:00:44]:           Always: :ProcessRollback: Skipping rollback for install item Final Configuration as it was not successfully installed.
    [16:00:44]:           Always: :****************************************************************
    [16:00:44]:           Always: :****Ended*RollBack**********************************************
    [16:00:44]:           Always: :****************************************************************
    [16:00:44]:           Always: :Entering Page: FinishPage
    The log states “Access to the path 'EULA_EN_EVAL.RTF' is denied.”  I was able to find this file in D:\Program Files\System Center 2012\Operations Manager\SetupTemp\EN, but when viewing its contents I see it
    was from the SP 1 upgrade as it starts off with “MICROSOFT EVALUATION SOFTWARE LICENSE TERMS MICROSOFT SYSTEM CENTER 2012 STANDARD SERVICE PACK 1.”  Based on everything else referenced in the log file previously, it seems like it was trying to locate
    this file in D:\Program Files\System Center 2012\Operations Manager\Setup.  Also, I applied the product key after installing SP1 previously, so it was not running with an evaluation license.
    Running Get-SCOMManagementGroup | ft skuforlicense, version, timeofexpiration –a
    gives me:
    SkuForLicense Version     TimeOfExpiration
           Retail 7.1.10226.0 12/31/9999 11:59:59 PM
    The version (7.1.10226.0) is that of SCOM 2012 R2 (as I noted before, there was no rollback.)  Everything seems to be functioning fine (Console, Web Console, Reporting Services.)
    Is there a way to get it to re-run only the Final Configuration steps (which will probably fail again as the EULA file does not exist where it expects it)?  I am not sure if there were supposed to be any further
    configuration steps that did not get completed, so i dont know how stable SCOM is now.  Should I re-run the R2 installer?  Or is it OK as is?  The only info online about a SCOM Install where the final configuration failed to install dealt with
    an error upgrading the SCOM Console, which is not relevant to my situation.  This is my test SCOM environment, running on a VM.  I could revert to the pre-upgrade snapshot and see if another upgrade attempt completes successfully, but if that does
    work I am concerned that something like this may happen in my prod environment, which is not running on a VM, so has no ability to revert to a snapshot.

    Hi,
    Please refer to the following links:
    Do I need a specific Cumulative Update Release (UR) in order to upgrade to SCOM 2012 or 2012 SP1 or 2012 R2?
    http://blogs.technet.com/b/kevinholman/archive/2014/01/20/do-i-need-a-specific-cumulative-update-release-ur-in-order-to-upgrade-to-scom-2012-or-2012-sp1-or-2012-r2.aspx
    Upgrading Operations Manager from 2012 SP1 to 2012 R2 step by step
    http://www.systemcentercentral.com/upgrading-operations-manager-from-2012-sp1-to-2012-r2-step-by-step-upgrading-to-2012-r2-series/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+systemcenterforum+%28System+Center+Central+Rollup%29
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    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.

  • Management Point fails after installing SCCM 2012 SP1

    I'm carrying out an install of SCCM 2012 SP1 with the following hardware (fresh install not an upgrade from 2007)
    1. Newly built Windows Server 2012 box
    2. Site database located on a remote SQL 2012 cluster, both nodes Windows Server 2012, with CU5
    The install went fine but when checking the Site Server Components the Management Point isn't installing. The following both show errors;
    SMS_MP_CONTROL_MANAGER - MP.msi could not install. Checked the MP.msi log file which shows the following errors;
    [19:53:18] Failed to compile 'C:\Program Files\SMS_CCM\CcmExec_Global.mof' (Phase: 3, Object: 5, Lines: 76 - 83, Error: 80041002)
    [19:53:18] Failed to compile 'C:\Program Files\SMS_CCM\PolicyDefaults.mof' (Phase: 3, Object: 4, Lines: 49 - 57, Error: 80041002)
    [19:53:18] Failed to compile 'C:\Program Files\SMS_CCM\StateMsgSchema.mof' (Phase: 3, Object: 6, Lines: 89 - 94, Error: 80041002)
    [19:53:18] Failed to compile 'C:\Program Files\SMS_CCM\DataTransferService.mof' (Phase: 3, Object: 5, Lines: 318 - 323, Error: 80041002)
    [19:53:19] Failed to compile 'C:\Program Files\SMS_CCM\CcmExec_MP.mof' (Phase: 3, Object: 1, Lines: 31 - 36, Error: 80041002)
    MSI (s) (0C!94) [19:53:20:862]: Product: ConfigMgr Management Point -- Error 25140. Setup was unable to compile the file CcmExec_Global.mof
    The error code is 80041002
    Error 25140. Setup was unable to compile the file CcmExec_Global.mof
    The error code is 80041002
    CustomAction CcmRegisterWmiMofFile returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    SMS_NOTIFICATION_SERVER - bgbisapi.msi could not install. Extract from log below;
    [19:53:38] IGNORE: Failed to delete extension 'C:\Program Files\SMS_CCM\bgbisapi.dll'. Return Code = 0x80020009 (The extension might not be registered)
    [19:53:39] WARNING: Failed to remove PerfLib entries for performance application SmsBgb (2)
    [19:53:39] WARNING: Failed to remove configuration for performance application SmsBgb (80070057)
    MSI (s) (0C!80) [19:53:39:540]: Product: BGB http proxy -- Internal Error 25001. 80070057
    Internal Error 25001. 80070057
    CustomAction CcmRegisterPerfCounters returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    I've tried uninstalling MP and reinstalling, triple checked all the right pre-reqs in Roles and Features are enabled, even rebuilt the server from scratch and tried again but same result. 
    Would really appreciate some help if anyone's fixed this issue

    I'm still struggling, I've uninstalled MP
    <04/16/14 08:06:59> SMSMP Setup Started....
    <04/16/14 08:06:59> Parameters: D:\Program Files\Microsoft Configuration Manager\bin\x64\rolesetup.exe /deinstall /siteserver:EICSC001 SMSMP 0
    <04/16/14 08:06:59> Deinstalling the SMSMP
    <04/16/14 08:06:59> No versions of SMSMP are installed.  Returning Success.
    <04/16/14 08:06:59> ~RoleSetup().
    Ran the command, Invoke-Command  {gwmi -query "SELECT * FROM __Namespace WHERE Name='CCM'" -Namespace "root" | Remove-WmiObject}
    Checked Namespace Instances to ensure '= ccm' is not longer there. 
    Rebooted Server and re-installed MP but it still fails
    <04/16/14 08:37:26> ====================================================================
    <04/16/14 08:37:26> SMSMP Setup Started....
    <04/16/14 08:37:26> Parameters: D:\Program Files\Microsoft Configuration Manager\bin\x64\rolesetup.exe /install /siteserver:EICSC001 SMSMP 0
    <04/16/14 08:37:26> Installing Pre Reqs for SMSMP
    <04/16/14 08:37:26>         ======== Installing Pre Reqs for Role SMSMP ========
    <04/16/14 08:37:26> Found 2 Pre Reqs for Role SMSMP 
    <04/16/14 08:37:26> Pre Req MSXML60 found.
    <04/16/14 08:37:26> No versions of MSXML60 are installed.  Would install new MSXML60.
    <04/16/14 08:37:26> Enabling MSI logging.  msxml6_x64.msi will log to D:\Program Files\Microsoft Configuration Manager\logs\msxml6_x64MSI.log
    <04/16/14 08:37:26> Installing D:\Program Files\Microsoft Configuration Manager\bin\x64\00000409\msxml6_x64.msi 
    <04/16/14 08:37:26> msxml6_x64.msi exited with return code: 0
    <04/16/14 08:37:26> msxml6_x64.msi Installation was successful.
    <04/16/14 08:37:26> Pre Req SqlNativeClient found.
    <04/16/14 08:37:26> SqlNativeClient already installed (Product Code: {D411E9C9-CE62-4DBF-9D92-4CB22B750ED5}). Would not install again.
    <04/16/14 08:37:26> Pre Req SqlNativeClient is already installed. Skipping it.
    <04/16/14 08:37:26>         ======== Completed Installation of Pre Reqs for Role SMSMP ========
    <04/16/14 08:37:26> Installing the SMSMP
    <04/16/14 08:37:26> Passed OS version check.
    <04/16/14 08:37:26> IIS Service is installed.
    <04/16/14 08:37:26> No versions of SMSMP are installed.  Installing new SMSMP.
    <04/16/14 08:37:26> Enabling MSI logging.  mp.msi will log to D:\Program Files\Microsoft Configuration Manager\logs\mpMSI.log
    <04/16/14 08:37:26> Installing D:\Program Files\Microsoft Configuration Manager\bin\x64\mp.msi CCMINSTALLDIR="D:\Program Files\SMS_CCM" CCMSERVERDATAROOT="D:\Program Files\Microsoft Configuration Manager" USESMSPORTS=TRUE SMSPORTS=80 USESMSSSLPORTS=TRUE
    SMSSSLPORTS=443 USESMSSSL=TRUE SMSSSLSTATE=0 CCMENABLELOGGING=TRUE CCMLOGLEVEL=1 CCMLOGMAXSIZE=1000000 CCMLOGMAXHISTORY=1
    <04/16/14 08:37:26> mp.msi exited with return code: 1603
    <04/16/14 08:37:26> Backing up D:\Program Files\Microsoft Configuration Manager\logs\mpMSI.log to D:\Program Files\Microsoft Configuration Manager\logs\mpMSI.log.LastError
    <04/16/14 08:37:26> Fatal MSI Error - mp.msi could not be installed.
    <04/16/14 08:37:26> ~RoleSetup().
    On checking I don't seem to have anything in IIS, no default web site.
    I've tried reinstalling IIS and reinstalling SCCM 2012 but what ever I do I still hit the same issue with the Management Point.
    Any assistance would be greatly appreciated.
    Thanks

Maybe you are looking for