Hyper-V 2012 R2, integration services issue on multiple VMs

Hello,
I came to you because we encounter a technical issue on one of our Hyper-V (2012 R2).
Our backup (Veeam backup in last version) are still failing with error :
Guest processing skipped (check guest OS VSS state and integration components version)
After checking integration service states of those VMs on the Hyper-V, we get this result :
Get-VM | ft Name, IntegrationServicesVersion
Name                                                       
IntegrationServicesVersion
xxx-3REP-01                                                
6.3.9600.16384
xxx-ADMIN02
xxx-BAK02                                                  
6.3.9600.16384
xxx-MAIL-01
xxx-SCOM-01-1                                              
6.3.9600.16384
xxx-SQL02                                                  
6.3.9600.16384
xxx-VC-01                                                  
6.3.9600.16384
xxx-VD01
xxx-VMM02
xxx-VMM03
xxx-WEB01
Get-VMIntegrationService xxx-vmm02 | Select Name,OperationalStatus
Name                                                       
OperationalStatus
Time Synchronization                                       
{Ok}
Heartbeat                                                         
  {Ok, Ok}
Key-Value Pair Exchange                                  {LostCommunication}
Shutdown                                                          
{LostCommunication}
VSS                                                       
              {LostCommunication}
Guest Service Interface                                     {LostCommunication}
I already try to disable, then enable the operationalStatus :
Disable-VMIntegrationService -VMName MyVM -Name VSS,Shutdown,"Key-Value Pair Exchange"
Enable-VMIntegrationService -VMName MyVM -Name VSS,Shutdown,"Key-Value Pair Exchange"
The status is OK, but If I retry my backup I have the same error.
So, is there a way to reinstall integration service component without rebooting ?
Many thanks for your help.

On the Windows VMs that are not 2012 R2, insert the Integration media ISO, install it, and reboot.
When all is done, run this:
# Input:
$HVHost = "YourHostHere"
# Processing:
$VMInfo = @()
Get-VM -ComputerName $HVHost | where { $_.State -eq "Running" } | % {
$Info = New-Object -TypeName psobject
$Info | Add-Member "VMName" $_.Name
$Info | Add-Member "IntegrationServicesVersion" $_.IntegrationServicesVersion
$OS = Invoke-Command -ComputerName $_.Name { (Get-CimInstance Win32_OperatingSystem).version } -ErrorAction SilentlyContinue
$Info | Add-Member "OSVersion" $OS
$VMInfo += $Info
# Output:
$VMInfo | Out-GridView
$VMInfo | FT -AutoSize
$VMInfo | Export-Csv .\VMInfo.csv -NoTypeInformation
Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx

Similar Messages

  • Improper Install of Hyper-V 2012 R2 Integration Services on 2008 R2 VMs

    I have two VMs that have one or more missing/broken services after upgrading to Integration Services 6.3.9600.16384.  On one VM the Hyper-V Remote Desktop Virtualization Service is missing and the Hyper-V Data Exchange Service won't start.  The
    other VM was missing the Hyper-V Remote Desktop Virtualization Service.  I was able to create that service by restoring registry entries from another VM with working integration services and re-registering the DLLs from the driver, but the service won't
    start.  Both services that won't start return the error "1083: The executable program that this service is configured to run in does not implement the service".   I also tried an Offline
    Install of Integration Services, but that didn't fix anything.  Since I am running 2008 R2, there is no uninstall available (I did modify the powershell script from the abve link to uninstall, but it didn't work).  I have been un-successful in
    finding a way to trick/force the installer to install again over top of itself.

    Hi Gregg,
    Thank you for posting in Windows Server Forum.
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support.
    Best Regards
    Elton Ji
    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.

  • Sqlserver integration service issue CDC source cannot run successfully

    issue category:SQL
    Server Integration Services (SSIS)
    issue type:
    data flow
    Environment
        Windows edition: Windows Server 2012  Standard
        System type: 64-bit Operating System
        Dot Net Framework version: .Net Framework 4 Multi-Targeting Pack
        SQL Server: Microsoft SQL Server 2012 Enterprise (64-bit)
    Error log
        The PrimeOutput method on “XXXSource” returned success, but did not report an end of the rowset. There is an error in the component. It should have reported an end-of-row. The pipeline will shutdown execution to avoid
    unpredictable results.
    Ps: The component mentioned above refers to SSIS component “CDC Source”.
    More information:
    I have found some information about this, it relates with HResults.DTS_E_PRIMEOUTPUTNOEOR Field. I would like to know why this happens, and how to fix it. Also I can run CDC Source in another
    similar environment, but cannot run on Cloud environment.
    Thanks,
    Lory Hou

    Enviroment
        Windows edition: Windows Server 2012  Standard
        System type: 64-bit Operating System
        Dot Net Framework version: .Net Framework 4 Multi-Targeting Pack
        SQL Server: Microsoft SQL Server 2012 Enterprise (64-bit)
    Scenery
        Step 1: Deploy SSIS package on the Integration Service Catalog Folder
        Step 2: After config package, executes it. Then execution faild.
    Error log
        The PrimeOutput method on “XXXSource” returned success, but did not report an end of the rowset. There is an error in the component. It should have reported an end-of-row. The pipeline will shutdown execution to avoid unpredictable results.
    Ps: The component mentioned above refers to SSIS component “CDC Source”.
    I have tried run this script:
    use MyTable
                   declare @start_lsn binary(10), @end_lsn binary(10)
                   set @start_lsn = sys.fn_cdc_increment_lsn(
                           convert(binary(10),'0x' + '0000006A000002620003', 1))
                   set @end_lsn =
                           convert(binary(10),'0x' + '0000008A0000008B0001', 1)
                   select * from cdc.fn_cdc_get_all_changes_dbo_TableOperation_CashDrop_TableCashDropRecord(@start_lsn,
    @end_lsn, 'all')
    The following message may be returned by SQL Server:
    An insufficient number of arguments were supplied for the procedure or function cdc.fn_cdc_get_net_changes_<..>.
    MSDN’s explantion: This error does not indicate that an argument is missing. It means that the start or end LSN values in the CDC state variable are invalid.
    But why is '0x0000006A000002620003' and '0x0000008A0000008B0001' invalid?

  • Hyper-v 2012 R2 Live migration issue in 2003 Domain function Level

    hi Team ,
    i recently build 2012 R2 Hyper-v Cluster with three node. Everrything working fine with out any issue . Cluster working also fine. Later i came across one issue when tried to Live migration virtual machine from one host to another . it failed all the time
    while quick migration is working . i gone through few articles and find it is known issue with hyper-v 2012 R2 where domain functional level is set to 2003 . although they have provided Hotfix but no solution.
    http://support.microsoft.com/kb/2838043
    Please let me know if any one face similar issue and able to resolve by any hotfix. My host are updated .
    Thanks
    Ravindra
    Ravi

    Hi Ravi1987,
    The KB2838043 is applied for Server 2012 node, Could you offer us the related cluster error event id, or you can refer the following article to check your cluster
    network binding order is correct or not.
    Configuring Windows Failover Cluster Networks
    http://blogs.technet.com/b/askcore/archive/2014/02/20/configuring-windows-failover-cluster-networks.aspx
    You can try to install recommended hotfixes and updates for Windows Server 2012 R2-based failover clusters first, then monitor this issue again.
    The KB download:
    Recommended hotfixes and updates for Windows Server 2012 R2-based failover clusters
    http://support.microsoft.com/kb/2920151
    More information:
    Windows Server 2008 R2 Live Migration – “The devil may be in the networking details.”
    http://blogs.technet.com/b/askcore/archive/2009/12/10/windows-server-2008-r2-live-migration-the-devil-may-be-in-the-networking-details.aspx
    I’m glad to be of help to you!

  • How to migrate to SSIS 2012 from Integration Services dtsx file?

    I am struck at migrating the dtsx file to SSIS 2012. How to migrate that dtsx file to SSIS 2012.I made it to migrate from SQL2000 to SQL 2005 dtsx. Now I want to migrate or upgrade it to SSIS 2012.How to achieve it.Help me please. 
    sammy

    Hi sammy,
    Based on your description, you want to upgrade SQL Server 2005 packages to SQL Server 2012. If there are some individual packages, I suggest that we can directly add the SQL Server 2005 package to an existing project in SQL Server Data Tools (SSDT). For
    more details, please see:
    Right click on the SSIS Packages folder in the Integration Services Project in SSDT and Select Add Existing Package from the context menu.
    In the Add Copy of Existing Package dialog box select Package location as File System from the dropdown.
    Click on the ellipsis button next to the Package path textbox.
    Locate the SSIS package (.dtsx file) which you want to add from the file system.
    Click OK in the Add Copy of Existing Package dialog box to finish adding and upgrading the package.
    If those packages are located in a project, we can open a SQL Server 2005 Integration Services (SSIS) project file in SSDT, and then use the SSIS Package Upgrade Wizard to upgrade multiple packages in the project.
    If there are any questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Hyper-V 2012 R2 / Licensing / Service

    Hello,
    In the following environment: Hosts that run virtual machines for customers. Are we allowed to use the free hyper-V 2012 R2 server as service for running fully licensed(SPLA) virtual machines or is the free version only for your own use?

    Hi Darren,
    In addition , you can contact MS activation centor for further assistance :
    http://www.microsoft.com/licensing/existing-customers/activation-centers.aspx
    Best Regards
    Elton Ji
    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.

  • Hyper-v 2012 missing vhdsvc service

    I have a new Hyper-V server that is missing two services
    vhdsvc and nvspwmi
    How can I get these two pieces installed?

    Hi IMSU,
    I assume that you are running server 2008 r2 .
    For the two services you mentioned , please refer to following links :
    http://technet.microsoft.com/en-us/library/ee941120(v=ws.10).aspx
    http://technet.microsoft.com/en-us/library/ee956892(v=ws.10).aspx
    Hope it helps
    Best Regards
    Elton Ji
    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.

  • What happens when a VM with 2012 Integrations Services migrates to a 2008 R2 Hyper-V server?

    I've been going through our Hyper-V environment to make sure our VMs have the latest, greatest Integration Services installed. I found one 2012 running a 2012 version of Integration Services on this 2008 R2 Hyper-V server. What kind of issues can this
    cause? Should I uninstall the current version and 'downgrade' them to 2008 R2?
    Orange County District Attorney

    Hi,
    No, you should not. If the operating system is supported on a hyper-v version you can use it. This means if Windows Server 2012 is supported on Windows Server 2008 R2 hosts you can use Windows Server 2012 or Windows Server 2008 R2 with the Windows Server
    2012 integration services installed as a guest OS.
    You can find supported guest OS lists here
    http://social.technet.microsoft.com/wiki/contents/articles/2761.hyper-v-supported-guest-os-list.aspx
    http://OpsMgr.ru/

  • Windows 2012 R2 hyper-v integration services update - error code: 50

    Physical Host is a brand new Windows 2012 R2 with hyper-v role, VM is a Windows Server 2012
    I try to upgrade the integration services update, VM become unresponsive and I lost connection to it,  had to turn it off, afterwards it wouldn't boot.
    Tried F8 on the reboot and then switched to the command prompt to manually upgrade the integration services running the setup, but got an error (Error code: 50 )
    VM halts in the middle of booting up.
    saying: Please wait ...
    Anyone has any idea why it happened and how to fix this?

    Hi Seyed,
    Please try to follow the link below to install integration services manually :
    http://blogs.technet.com/b/virtualization/archive/2013/04/19/how-to-install-integration-services-when-the-virtual-machine-is-not-running.aspx
    Best Regards
    Elton Ji
    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.

  • Windows 2012 + hyper-v + mouse not captured in remote desktop session + integrated services installed

    windows 2012 + hyper-v + mouse not captured in remote desktop session + integrated services installed

    Hi,
    I am using Server 2012 R2 with Hyper-V and CentOS 6.5 that installed GNOME.
    Same no mouse on remote desktop session or on the host's Hyper management interface.
    From my knowledge, CentOS from 6.4 build in include the IS, how do I update the IS in CentOS 6.4-6.5 guest OS? Any detail docunment for reference?
    Thank you.

  • Hyper-V Integration Services - DriverPackage or Application

    Hello SCCM community,
    currently we are deploying the Driver for Hyper-V Integration Services (Windows6.x-HyperVIntegrationServices-x64.cab) as Driver Package. The deployment is OK. But if I look into Device Manager the drivers are not digitally signed. This is somehow
    strange.
    Deploying via DISM will result in same issue.
    I did then a research and found out that the package can be deployed via Application by using the MSI file. http://social.technet.microsoft.com/Forums/en-US/dd58b4cf-a954-4525-9a05-a84ebb073002/install-integration-components-hyperv-30-with-sccm-2012?forum=configmanagergeneral
    I tested the installation via MSI it works fine and the Device Manager is not complaining about not signed drivers.
    Do you face the same issue? Are you also deploying via Application?
    Many thanks in advance.
    Guitarman

    Ok, guys I did like described in the link. I used the setup.exe and deployed it as application.
    As detection method I used one of the sys-files which where installed.
    As uninstallation command I used: dism /online /Remove-Package /PackagePath:\\share\software$\Windows6.x-HyperVIntegrationServices-x64.cab
    /norestart

  • Virtual Machine Generation 2 Boot Issue!!! (Windows Repair Bootloop! ) Hyper-V 2012 R2

    Hello people, I'm having the following with the GEN 2 in Hyper-V 2012 R2.
    Issue: After bouncing my GEN2  Hyper-V VM I get this.
    Then I get the Windows Repair and nothing happens after this point!  
    Does someone have experience this issue ?
    The bad thing with it is as it's production there's no checkpoints and I cannot recover it!
    Note: this doesn't happens with GEN1 VM's.
    Any help will be really appreciated

    Hi, thanks for the quick response. Now the images are appearing... oh well...
    Quite familiar to me this one.  I have a couple of, or more, remedies;
    1: increase the available memory to at least 4096 - just whilst installing you can alter it later.
    2: make sure the enhanced session switches (both in Server and User) in the hyper-v manager are not enabled - you can re-enable them later
    3: Disable "Enable Secure Boot" in the VM settings - Firmware - you can enable it after the install
    4:  make sure Heartbeat is enabled in the VM's settings - Integration Services
    5: Last, but not least, make sure the Smart Paging File Location is the same as the VM's location. Eg: VM: <D:\VMS\Machines> Smart Paging Location: <D:\VMS\Machines>
    One or more of these has "always" worked for me in the past.  I don't offer any warranty with these "solutions", but by disabling or enabling the various options I have nearly always been able to get the VM started. 
    Is the ISO you are utilizing good?  One client of mine assured me he had never touched the ISO saved in that 'special place'.  A quick peer at the files inside the ISO revealed that he had been at the files and changed a minor file and then changed
    it back to what he thought it had said...
    Cheers
    Andrew

  • Updating Hyper-V host Integration Service

    It seems that I'd get rid of this error log if I uninstall and reinstall the Integration Services from the windows 8.1 that I am running on Hyper-V 2008 R2.
    I was wondering though, whether there is a procedure to do it other way around; I mean instead of removing the version 3.3 that came bundled with 8.1 image and downgrading to 3.0 ; upgrade the Hyper-V 2008 R2 to accept 3.3 integration service.
    ---------------BEGIN LOG ENTRY-----------------------------
    Log Name:      Microsoft-Windows-Hyper-V-Worker-Admin
    Source:        Microsoft-Windows-Hyper-V-Worker
    Date:          3/3/2014 10:48:53 AM
    Event ID:      23014
    Task Category: None
    Level:         Warning
    Keywords:     
    User:          NETWORK SERVICE
    Computer:      HypServer.QSCAudio.com
    Description:
    Device 'Microsoft Synthetic Display Controller' in 'Windows 8.1' is loaded but has a different version from the server.  Server version 3.0 Client version 3.3 (Virtual machine ID 105358BD-825A-40E6-ABC0-218517297DDC). The device will work, but this is
    an unsupported configuration. This means that technical support will not be provided until this problem is resolved. To fix this problem, upgrade the integration services. To upgrade, connect to the virtual machine and select Insert Integration Services Setup
    Disk from the Action menu.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-Worker" Guid="{51DDFA29-D5C8-4803-BE4B-2ECB715570FE}" />
        <EventID>23014</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-03-03T18:48:53.234733500Z" />
        <EventRecordID>6671</EventRecordID>
        <Correlation />
        <Execution ProcessID="3032" ThreadID="4304" />
        <Channel>Microsoft-Windows-Hyper-V-Worker-Admin</Channel>
        <Computer>HypServer.QSCAudio.com</Computer>
        <Security UserID="S-1-5-20" />
      </System>
      <UserData>
        <VmlEventLog xmlns:auto-ns2="http://schemas.microsoft.com/win/2004/08/events" xmlns="http://www.microsoft.com/Windows/Virtualization/Events">
          <VmName>Windows 8.1</VmName>
          <VmId>105358BD-825A-40E6-ABC0-218517297DDC</VmId>
          <Device>Microsoft Synthetic Display Controller</Device>
          <ServerVersion>3.0</ServerVersion>
          <ClientVersion>3.3</ClientVersion>
        </VmlEventLog>
      </UserData>
    </Event>
    ---------------END LOG ENTRY-----------------------------

    Hi Sasi2,
    "This is a known issue that occurs when a virtual machine that is running Windows 8 or Windows Server 2012 is hosted in Windows Server 2008 R2. You can safely ignore the warning message. "
    For details please refer to following link:
    http://support.microsoft.com/kb/2737297
    (My server lab has the same warnning too , but without issue)
    Best Regards
    Elton Ji
    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.

  • SSRS 2012 report integrated with SharePoint 2013 issue :Report refreshing after some idle time

    we have SSRS 2012 report integrated with SharePoint 2013  , when we click on any toggle item after some idle time of 60 secs and try again to expand
    another toggle item then  complete report is getting refreshed and  if we are in child report it is redirecting to parent report. . we didn’t set any refreshing property at report level. I hope there will be some idle time setting at sharepoint site
    level.
    what we observed.
    1. there is no problem when we expand toggle items without any idle time.
    2. when we open the report and expand few toggles and keep idle for 60 seconds and try
    again to expand another toggle item then  complete report is getting refreshed (all toggle items are collapsing).
    3. If you keep idle for 60 minutes and if you didn’t do any action like expanding toggle
    items it is not refreshing.
    why it is happening and how to stop that complete refresh.
    Surendra Thota

    Hi Surendra,
    I have tested on my local environment and the issue can be caused by the session time out ,the time out of the report precessing, database timeout,DataSet query execution timeout and so on.
    I would like to confirm that the refresh you have mentioned is the page refresh or the report reloading?
    Please reference to the setting below to don't limit the timeout values if you got the report reloading:
    Point to a report in the library.
    Click the down arrow, and select Manage processing options.
    In Processing Time-out, select Do not time out report processing or
    Limit report processing in seconds if you want to override that value with no time-out or different time-out values.
    If you got the session timeout that refresh the page, please reference to the setting in below article:
    http://msdn.microsoft.com/en-us/library/gg492284.aspx#bkmk_session_settings_section
    Details information in the article below about the timeout setting for your reference:
    Set Processing Options (Reporting Services in SharePoint Integrated Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • 2008 R2 Hyper-V Integrated services error 61658...

    Kind of got myself into a bad situation I think. I run a single Windows 2008 R2 Server w/SP1 that hosts 5 VM's that host two Windows Server 2003 SP2 machines and the rest are 2008 R2 Servers w/SP1. On one of the 2003 VM's I was having issues
    with the mouse not being captured. I decided to reinstall the integrated services. The reinstall seemed to complete normally, but when it was done the mouse capture still did not work. So I rebooted just to check and still no mouse capture. 
    So I went into add remove programs and uninstalled it. I rebooted and then noticed the problems that caused. The uninstall made the VM lose the SCSI adapter and the NIC. So after getting a legacy NIC added I was able to be past that issue, but no
    VHDs are accessible that were are connected to the SCSI Controller. When I try to install the Integrated Services, it gets part way through the "Updating Storport Driver" step and then throws this message: [ (X) An error
    occurred: One of the update processes returned error code 61658.] This machine is our Active Directory (Domain) Controller.  Again to mention, this is only machine out of the 5 that is having this problem. Any help would be greatly
    appreciated.
    PS: None of these are installed using Beta or RC's versions of the OS, the Hyper-V server and the VM's have all been in place for 2+ years working fine. 
    Thanks
    Update: A friend of mine looked things over and found a vmg...log file that shows the problem is when the Integrated Services install try's to run the a KB that fails to installed: (KB943295). So I will investigate.  But I did get the
    server up and running again by adding a legacy network adapter and moving the two VHD files that were attached to the problem VM's SCSI controller to the VM's IDE controller.  So a band-aid I know but at least I was able to get 41 users back working
    after 7 hours of pulling out my hair! I do need to know I have this VM functioning 100% as it should so I'll continue to work on it.

    Hi SScott2010,
    Please try the following setps :
    1. backup the problematic VM first
    2. If the VM was migrated from virtual pc , please run "msconfig " --> click the boot tab then click advanced options --> select the Detect HAL check box
    3. make sure the service " cryptographic service " is running  automatically.
    4. restart the VM
    5. Install  the hotfix of kb822798  in the problematic VM :
    http://support.microsoft.com/kb/822798/en-us
    6. try to install the Integrated Service again.
    Hope it helps
    Best Regards
    Elton Ji
    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.

Maybe you are looking for

  • After upgrade to 10.6 Apache is running but port 80 is not open

    Hello, I just upgraded from 10.5 to 10.6. The server is a simple set up that is only used for web hosting. Everything appears to work fine except the browser can't connect. Server Admin and Activity Monitor shows Apache running. Port scan from anothe

  • ORA-29534 error for Class can not be resolved

    HI, I am trying to load and resolve a third party jar file which has some JMS classes. But while using the loadjava utility, "loadjava -u scott/tiger@dbname -r -v -genmissing weblogic.jar" i get "ORA-29534: referenced object <Class Name> could not be

  • How to print html text created with HTML Editor Standard?

    I would like to print the text I added with the HTML Editor Standard, using advanced printing. I have made up a Word document with a Report Query and a Report Layout, but the text pops up as html text. Also when I use HTML as output the text shows as

  • Help me with exit

    Hi, When I go to SE18 and give ME_PROCESS_PO_CUST in the Definition Name Input Box and pressed Display I got the below msg. 'BADI Definition ME_PROCESS_PO_CUST doesn't exist' Iam using 4.6C. Is it my work to create the Definition. Pls provide me with

  • Element 3D is showing 2d in my composition

    Hi guys I have uploaded my video of element not working in after effects cs6 I have updated my CPU it got the lates, I have tryed numourus of ways to get element to show in 3D with the camera tool and I have also updated element to 6.1.... Can any on