In Win 10 technical preview cannot determine the full device display area and aspect ratio; the dimensions are needed to create full-screen bitmap.

While Windows.Current.Bounds returns the application windows size, in order to create a full-screen bitmap my app would need to retrieve the full display area  of the device. I cannot even get the aspect ratio.
Pre-Win10, using Windows.Current.Bounds I can create a bitmap of whatever size application window the user is seeing. When the user is showing my app at full screen, I can therefore get the full display area and aspect ratio of the device and create
a full-screen bitmap.
With Win10, the user would need to know to hide the taskbar and also display at full-screen before an app can retrieve the display area and aspect ratio using Windows.Current.Bounds.
Is there any way to get the display area and aspect ratio of the device without asking the user to fully maximize the application window?
musical9

Rob, Is this forum best way to get my suggestion to the development team?
Before Win10 it's obvious to the user that full-screen is or is not being used. When I create the bitmap, I create it to fit the application window. When the app is displayed full screen, the bitmap will be full screen. Also, the app starts full-screen
so I can detect the display area at startup if I need to.
With Win10, to the user the app "looks like" it is full screen with the taskbar displayed even though it's not really full screen.
Yes, Windows.Current.Bounds does work the same, but I believe that in Win10 determining the full display area will be useful and not just the application window.
musical9

Similar Messages

  • 2013 Exchange, Can't connect to Exchange Management Shell. It cannot determine the content type of the HTTP response from the destination computer.

    The following error occurs.
             Welcome to the Exchange Management Shell!
    Full list of cmdlets: Get-Command
    Only Exchange cmdlets: Get-ExCommand
    Cmdlets that match a specific string: Help *<string>*
    Get general help: Help
    Get help for a cmdlet: Help <cmdlet name> or <cmdlet name> -?
    Show quick reference guide: QuickRef
    Exchange team blog: Get-ExBlog
    Show full output for a command: <command> | Format-List
    Tip of the day #0:
    Did you know that the Identity parameter is a "positional parameter"? That means you can use:
     Get-Mailbox "user" instead of: Get-Mailbox -Identity "user"
    It's a neat usability shortcut!
    VERBOSE: Connecting to mail1.dorothy.local.
    New-PSSession : [mail1.dorothy.local] Connecting to remote server mail1.dorothy.local failed with the following error
    message : The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from
    the destination computer. The content type is absent or invalid. For more information, see the
    about_Remote_Troubleshooting Help topic.
    At line:1 char:1
    + New-PSSession -ConnectionURI "$connectionUri" -ConfigurationName Microsoft.Excha ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [New-PSSession], PSRemotin
       gTransportException
        + FullyQualifiedErrorId : -2144108297,PSSessionOpenFailed
    Exception calling "GetComputerSite" with "0" argument(s): "The Specified directory object cannot be found."
    At C:\Program Files\Microsoft\Exchange Server\V15\bin\ConnectFunctions.ps1:164 char:2
    +     $localSite=[System.DirectoryServices.ActiveDirectory.ActiveDirectorySite]::GetC ...
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : ActiveDirectoryObjectNotFoundException
    Failed to connect to an Exchange server in the current site.
    Enter the server FQDN where you want to connect.: mail1.dorothy.local
    VERBOSE: Connecting to mail1.dorothy.local.
    New-PSSession : [mail1.dorothy.local] Connecting to remote server mail1.dorothy.local failed with the following error
    message : The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from
    the destination computer. The content type is absent or invalid. For more information, see the
    about_Remote_Troubleshooting Help topic.
    At line:1 char:1
    + New-PSSession -ConnectionURI "$connectionUri" -ConfigurationName Microsoft.Excha ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [New-PSSession], PSRemotin
       gTransportException
        + FullyQualifiedErrorId : -2144108297,PSSessionOpenFailed
    Randy Cheek

    Good Morning,
    Log into the server with an account that has appropriate Exchange rights, not a local account.  
    Note: By default - Domain Admins don't have Exchange rights.
    Dame Luthas, ITILv3, MCSE Messaging 2013, MCSA, MCITP
    My Technical Blog: http://thelifestrategist.wordpress.com
    Discipline is the Difference between Goals and Accomplishments
    If this post is useful, please hit the green arrow on the left & if this is the answer hit "mark as answer"

  • E613 SYST: You cannot determine the period for rule 03

    Dear All,
    We are configuring asset module and using MSTL dep key for Tax books. When we tried to create an asset with MSTL dep key, we encountered error - 'E613 SYST: You cannot determine the period for rule 03'. when verified config OAVH Define Calender Assignments transaction,  Period control '03' is missing for fiscal year variant K4. Period control is exisiting  in Maintain Period Control and but not in Define Calender Assignment. What I understand these period controls are being delivered by SAP. Not sure why period control '03' is missing.  all other period control keys are available.
    question is how to add period control 03 so that we can use MSTL dep key. we are currently using 4.7c. Any suggestions would be appreciated.
    thanks
    Sunil

    message went abruptly before I finish.
    +++++++++
    continuing from previous email
    Period control 01 has following entry in the transaction
    Fiscal Year Variant        Per control          Name of the period control             Year      Month      Day      Period        Mid Month
    K4                                      01                        Pro rata at period start date        blank       0            0             blank        not selected
    If I follow SAP help to define period control '03', then I just need to copy period control '01' which is listed above and select 'Mid Month' check box.
    Wondering anyone did this in the past. MSTL depreciation key is being used in MACRS tax for US. I am sure people who  have implemented assets module for US with tax dep, they might have encountered this issue.
    thanks
    Sunil

  • Using Win 10 there is a need for an app to determine the full device display area and aspect ratio programitically; the dimensions are needed to create full-screen bitmap.

    While Windows.Current.Bounds returns the application windows size, in order to create a full-screen bitmap my app would need to retrieve the full display area  of the device. I cannot even get the aspect ratio.
    Pre-Win10, using Windows.Current.Bounds I can create a bitmap of whatever size application window the user is seeing. When the user is showing my app at full screen, I can therefore get the full display area and aspect ratio of the device and create a full-screen
    bitmap.
    With Win10, the user would need to know to hide the taskbar and also display at full-screen before an app can retrieve the display area and aspect ratio using Windows.Current.Bounds.
    Before Win10 it's obvious to the user that full-screen is or is not being used. When I create the bitmap, I create it to fit the application window. When the app is displayed full screen, the bitmap will be full screen. Also, the app starts full-screen so
    I can detect the display area at startup if I need to.
    With Win10, to the user the app "looks like" it is full screen with the taskbar displayed even though it's not really full screen.
    I believe that in Win10 determining the full display area will be useful and not just retrieving the application window size.
    musical9

    Rob, Is this forum best way to get my suggestion to the development team?
    Before Win10 it's obvious to the user that full-screen is or is not being used. When I create the bitmap, I create it to fit the application window. When the app is displayed full screen, the bitmap will be full screen. Also, the app starts full-screen
    so I can detect the display area at startup if I need to.
    With Win10, to the user the app "looks like" it is full screen with the taskbar displayed even though it's not really full screen.
    Yes, Windows.Current.Bounds does work the same, but I believe that in Win10 determining the full display area will be useful and not just the application window.
    musical9

  • Cannot determine the ipaddress using the ifconfig command

    cannot determine the ipaddres of solaris OS. I have my oracle db installed on Solaris OS using vmware.
    But I cannot determine the ipaddress using the ifconfig command.
    My native OS is windows vista enterprise. I want to connect my database installed on solaris OS on a vmware machine through TOAD
    Native OS:windows vista enterprise
    Toad :10.5
    OS:solaris 10
    vmware version:6.0.4
    Database:10.2.0
    Pasting the details below.
    # ifconfig
    usage: ifconfig <interface> | -a[ 4 | 6 | D ][ u | d ][ Z ]
    [ <addr_family> ]
    [ <address>[/<prefix_length>] [ <dest_address> ] ]
    [ set [ <address>][<prefix_length>] ] [ <address>/<prefix_length>] ]
    [ destination <dest_address> ]
    [ addif <address>[/<prefix_length>] [ <dest_address> ] ]
    [ removeif <address>[/<prefix_length>] ]
    [ arp | -arp ]
    [ auto-revarp ]
    [ broadcast <broad_addr> ]
    [ index <if_index> ]
    [ metric <n> ] [ mtu <n> ]
    [ netmask <mask> ]
    [ plumb ] [ unplumb ]
    [ preferred | -preferred ]
    [ private | -private ]
    [ local | -local ]
    [ router | -router ]
    [ subnet <subnet_address>]
    [ trailers | -trailers ]
    [ token <address>/<prefix_length> ]
    [ tsrc <tunnel_src_address> ]
    [ tdst <tunnel_dest_address> ]
    [ auth_algs <tunnel_AH_authentication_algorithm> ]
    [ encr_algs <tunnel_ESP_encryption_algorithm> ]
    [ encr_auth_algs <tunnel_ESP_authentication_algorithm> ]
    [ up ] [ down ]
    [ xmit | -xmit ]
    [ modlist ]
    [ modinsert <module_name@position> ]
    [ modremove <module_name@position> ]
    [ group <groupname>] | [ group ""]
    [ deprecated | -deprecated ]
    [ standby | -standby ]
    [ failover | -failover ]
    [ zone <zonename> | -zone ]
    [ usesrc <interface> ]
    [ all-zones ]
    or
    ifconfig <interface> | -a[ 4 | 6 | D ] [ u | d ]
    auto-dhcp | dhcp
    [ wait <time> | forever ]
    [ primary ]
    start | drop | ping | release | status | inform
    when i give the command ifconfig -a, it is only showing the inet address
    # ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    Thanks in advance
    Edited by: user13364377 on Aug 21, 2010 12:13 PM

    user13364377 wrote:
    cannot determine the ipaddres of solaris OS. I have my oracle db installed on Solaris OS using vmware.Then it is not configured... I mean, if the ifconfig command does not return an interface and IP address, then surely the initial reaction should be "+oops, I made a config error+" and not "+bug/error!! wtf is going on!?+".

  • Verify EJB after Cannot determine the Java EE module type for

    Hi All,
    I start verify EJB it's throw an exception
    Which cases occurring this exception, how can I resolve this?
    Could not verify successfully.
    java.io.IOException: Cannot determine the Java EE module type for C:\Mystuff\projects\Naki\Naki-ejb\dist\Naki-ejb.jar
         at com.sun.enterprise.deployment.archivist.PluggableArchivistsHelper.getArchivistForArchive(PluggableArchivistsHelper.java:137)
         at com.sun.enterprise.deployment.archivist.PluggableArchivistsHelper.getArchivistForArchive(PluggableArchivistsHelper.java:98)
         at com.sun.enterprise.deployment.archivist.PluggableArchivistsHelper.getArchivistForArchive(PluggableArchivistsHelper.java:110)
         at com.sun.enterprise.deployment.archivist.ArchivistFactory.getArchivistForArchive(ArchivistFactory.java:93)
         at com.sun.enterprise.tools.verifier.VerificationHandler.initStandalone(VerificationHandler.java:204)
         at com.sun.enterprise.tools.verifier.VerificationHandler.<init>(VerificationHandler.java:109)
         at com.sun.enterprise.tools.verifier.Verifier.verify(Verifier.java:140)
         at com.sun.enterprise.tools.verifier.Verifier.main(Verifier.java:114)
    Thanks,

    I'm getting the same error although i'm not receiving those entries in the log. Can someone please respond to this post. I've tried a lot of things but can't seem to figure it out. Please email me at [email protected] if you can help.
    Thanks

  • I have multiple devices with the same cerificate, once I have a an exception for one, FF denys access to the others. I cannot change the certificates, I need to stop FF blocking them.

    I have multiple devices with the same cerificate, once I have an exception for one, FF denys access to the others. I cannot change the certificates, I need to stop FF blocking them.
    == This happened ==
    Every time Firefox opened
    == I attempt to access a web front end on an IBM SVC device

    You can't use the same certificate more than once.
    See also [[Certificate contains the same serial number as another certificate]]

  • Adobe Reader 11.0.6 for Maverick cannot open the pdfs it has just created.

    Why will Adobe Reader 11.0.6 for Maverick cannot open the pdfs it has just created.

    Mac HD/Library/Internet Plug-ins
    Trash the AdobePDFViewer.plugin and AdobePDFViewerNPAPI.plugin files
    Mac HD/Applications
    Trash the Adobe Reader app
    [user]/Library/Preferences
    Trash the com.adobe.Reader.plist file
    To access the [user]/Library, hold the "Option" key and click "Go" from the FInder menu.
    Mac HD/Library/Application Support/Adobe
    Trash the Reader folder (the whole folder)
    Empty the Trash.
    Download the FULL installer here: http://get.adobe.com/reader/enterprise/
    Quit your browser and reinstall Reader.
    Launch it from the Applications folder and accept the license agreement.
    You should have no problems downloading PDFs with Safari.
    Unfortunately, ANY PDF that says it's damaged.... is. You'll have to trash them.

  • ORA-20000: cannot find the dimension

    Hi,
    While trying to install Oracle 11g R2 Single Instance Database on Solaris 10 (sparc) got following error:
    [Thread-10] [ 2012-07-14 20:57:33.395 EEST ] [CloneDBCreationStep.executeImpl:650] ** INSTALL SAMPLE SCHEMA'S **
    [Thread-10] [ 2012-07-14 20:57:33.397 EEST ] [CloneDBCreationStep.executeImpl:691] Transportable datafile:=/opt/oracle/oradata/egldb/example01.dbf
    [Thread-10] [ 2012-07-14 20:57:33.398 EEST ] [CloneDBCreationStep.executeImpl:698] Script to be Excecuted ::::=/opt/oracle/product/11.2.0/db_1/demo/schema/mkplug.sql
    [Thread-14] [ 2012-07-14 20:59:40.903 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 20:59:40.905 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-20000: cannot find the dimension
    ORA-06512: at "SYS.DBMS_DIMENSION", line 404
    ORA-06512: at "SYS.DBMS_DIMENSION", line 426
    ORA-06512: at "SYS.DBMS_SUMMARY", line 54
    ORA-06512: at line 1
    :msg
    Do you have any ideas about how to fix it?
    Thanks, Andriy.
    Edited by: 946442 on 14/7/2012 11:08

    Hi,
    More errors appeared after i ignored previous errors.
    Are they because of previous "ORA-20000: cannot find the dimension" error?
    [Thread-14] [ 2012-07-14 21:26:11.986 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 21:26:11.988 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-24010: QUEUE IX.AQ$_ORDERS_QUEUETABLE_E does not exist
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 309
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 11237
    ORA-06512: at line 1
    :msg
    [Thread-14] [ 2012-07-14 21:26:17.602 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 21:26:17.604 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-24010: QUEUE IX.AQ$_STREAMS_QUEUE_TABLE_E does not exist
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 309
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 11237
    ORA-06512: at line 1
    :msg
    [Thread-14] [ 2012-07-14 21:26:18.442 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 21:26:18.443 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-24010: QUEUE IX.ORDERS_QUEUE does not exist
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 309
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 11237
    ORA-06512: at line 1
    :msg
    [Thread-14] [ 2012-07-14 21:26:20.673 EEST ] [BasicStep.handleNonIgnorableError:430] oracle.sysman.assistants.util.UIMessageHandler@9c4ff2c:messageHandler
    [Thread-14] [ 2012-07-14 21:26:20.675 EEST ] [BasicStep.handleNonIgnorableError:431] ORA-24010: QUEUE IX.STREAMS_QUEUE does not exist
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 309
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 11237
    ORA-06512: at line 1
    :msg
    Thanks, Andriy.

  • When I get a new email or iMessage, a preview appears in the top right hand corner of my screen. How do I turn this off? Thanks.

    When I get a new email or iMessage, a preview appears in the top right hand corner of my screen. How do I turn this off? Thanks.

    Glad

  • I have an ExportPDF subscription under an old account for which the email does not exist anymore and I have forgotten the password.  Therefore I cannot reset the password.  I hav created a new Adobe account so how do I get the subscription for ExportPDF m

    I have an ExportPDF subscription under an old account for which the email does not exist anymore and I have forgotten the password.  Therefore I cannot reset the password.  I have created a new Adobe account so how do I get the subscription for ExportPDF moved to the new account?

    Hi lgmmo,
    I think your best best to get this resolved is to contact Adobe Customer Care. Here's the contact info: Contact Customer Care.
    A quick Chat session should get you fixed up.
    Please let us know if you have additional questions.
    Best,
    Sara

  • Preview always opens in full screen.

    Preview always opens in full screen. I change it to non full screen. Then I close the app. When reopening, its back to full screen again.... annoying. Any suggestions??

    iMac Model?
    Mac OS X version?
    Both can be viewed by doing "About this Mac" from your Apple menu. THe model can be roughly determined from the information about your processor:

  • Preview Aperture Book in Full Screen

    Hi,
    I'm working on a Macbook Pro 13" and would like to view my photo book in full screen so that I can get a better look at it before I send it off for printing (the inspector takes up 1/3 of the screen which limits the size of my book pages). I recently moved from iPhoto to Aperture, and I'm sure I remember previewing my books in full screen in iPhoto. I'm sure there is a way to view the book pages in full screen in Aperture, but I can't figure it out. Can anyone point me in the right direction?

    iMac Model?
    Mac OS X version?
    Both can be viewed by doing "About this Mac" from your Apple menu. THe model can be roughly determined from the information about your processor:

  • What are you doing to fix the printing problem in Win 10 Technical Preview?

    I am beta testing the new Microsoft Windows 10 Technical Preview. I and many others are experiencing a problem with Firefox in this operating system. Web pages will not print from Firefox. When you send a page to the printer, it comes out blank, even though it displays properly in the the preview window. This problem exists on both 32 and 64 bit systems and only with Windows 10.
    Some information related to this can be seen at: http://answers.microsoft.com/en-us/windows/forum/windows_tp-performance/anyone-having-a-problem-printing-from-firefox-in/b05be085-d36f-426f-9224-fe36f8f55af0
    I hope you can help with this problem.

    There is a bug on file for this but it's still in the early stages of investigation, as you can see:
    [https://bugzilla.mozilla.org/show_bug.cgi?id=1089188 1089188 – Printing blank pages on Windows 10]
    I think someone with knowledge of Windows printing will need to step up and examine what has changed on the Windows print API side, or it could be a while before this gets addressed.
    As long as you are experimenting, do you want to try:
    (1) The Print pages to PDF extension: https://addons.mozilla.org/firefox/addon/print-pages-to-pdf/ - this does not use Firefox's print code, but extracts the page to an embedded Webkit-based renderer.
    (2) Waterfox: https://www.waterfoxproject.org/ - this unofficial third party build of the Firefox code is recompiled for 64-bit Windows. If this works correctly with your printers, it might be a useful data point.

  • Error adding Win Server Technical Preview host to Virtual Machine Manager Technical Preview

    I've built Win Server Preview (latest build 9888).Also build System Center Technical Preview, on another server (VM), and now trying to add Server Tech Preview hosts to VMM.
    However VMMService is crashing, with error below.
    Note I have tried multiple scenarios, including upgrade hosts from 2012 R2, install fresh as server Core, install fresh full-GUI hosts, enable Hyper-V before adding to VMM, allow VMM to enable Hyper-V...
    also RunAs user is administrator of hosts and VMM, computer accounts have been added to all administrator groups, WinRM quickconfig has been run, firewall is off..
    ..however VMM vNext refuses to add Server vNext hosts. (however - I can add Server 2012 R2 hosts to VMM vNext with no problem)
    NOTE - also, when Server Manager starts, I get "Error occurred while loading the plug-in for 481. Exception has been thrown by the target of an invocation". After this the File and Storage Services node in Server Manager is missing. Not sure if
    this is related to the error below; but I get this issue in all servers built with latest .9888 build.
    Error from VMM server when trying to add Tech Preview host is as follows -
    VMM encountered a critical exception and created an exception report at c:\programdata\VMMLogs\abcdefg...etc.
    ------------------- Error Report -------------------
    Error report created 07/12/2014 21:04:59
    CLR is not terminating
    --------------- Bucketing Parameters ---------------
    EventType=VMM20
    P1(appName)=vmmservice.exe
    P2(appVersion)=3.2.9013.0
    P3(assemblyName)=Engine.Common.dll
    P4(assemblyVer)=3.2.9013.0
    P5(methodName)=Microsoft.VirtualManager.Engine.EngineFSUtils.GetVolumeIDFromVolumeName
    P6(exceptionType)=System.FormatException
    P7(callstackHash)=c5b5
    SCVMM Version=3.2.9013.0
    SCVMM flavor=C-buddy-RTL-AMD64
    Default Assembly Version=3.2.9013.0
    Executable Name=vmmservice.exe
    Executable Version=3.2.9013.0
    Base Exception Target Site=140719489075608
    Base Exception Assembly name=mscorlib.dll
    Base Exception Method Name=System.Guid+GuidResult.SetFailure
    Exception Message=Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
    EIP=0x00007ffbe1396468
    Build bit-size=64
    ------------ exceptionObject.ToString() ------------
    System.FormatException: Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
       at System.Guid.GuidResult.SetFailure(ParseFailureKind failure, String failureMessageID, Object failureMessageFormatArgument, String failureArgumentName, Exception innerException)
       at System.Guid.TryParseGuidWithDashes(String guidString, GuidResult& result)
       at System.Guid.TryParseGuid(String g, GuidStyles flags, GuidResult& result)
       at System.Guid..ctor(String g)
       at Microsoft.VirtualManager.Engine.EngineFSUtils.GetVolumeIDFromVolumeName(String volumeName)
       at Microsoft.VirtualManager.Engine.ImageLibrary.StorageDataHelper.CreateVolume(MSFT_Volume volume, MSFT_Partition partition, WsmanAPIWrapper wrapper)
       at Microsoft.VirtualManager.Engine.Adhc.SMStorageRefresher.GetVolumes(IVmmDbContext ctx)
       at Microsoft.VirtualManager.Engine.Adhc.WindowsHostDataProperties.PopulateProperties(IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.Adhc.WindowsHostAbstractionLayer.GetHostProperties(HostData oldHostData, Version agentVersion, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.GatherAllInformation(Host host, Object agentRefreshSyncObj, Boolean checkIfClustered, Boolean refreshEventCapabilities, String& clusterName, Guid taskID, ITaskContext taskContext, IVmmDbConnection
    dbConnection)
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.RefreshLockedHost(Host host, Guid taskID, ITaskContext taskContext, Boolean checkClusterStatus, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.UpdateHostToResponding(Nullable`1& prevState, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.UpdateHostState(IVMComputerSystemSummary[]& vmComputers, Nullable`1& prevState, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.RunLightRefresher(IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.UpdateHostAndVMs(VMRefresherType refresherType, Guid vmObjectId, VM tempVm, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.UpdateHostAndVMs(VMRefresherType refresherType, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VmLightRefresher.RefreshData(HostReference hostRef, Nullable`1& auditTaskId, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.RefreshDriver`1.<>c__DisplayClassa.<RefreshThreadFunction>b__7(IVmmDbConnection _dbConnection)
    ------------------- Scope Trace --------------------
    [s#35e2a] HostRefresher.GatherAllInformation(host: (Host#[17c4]) { objLock = (CarmineObjectLock#[a41]) { lockType = Write, objectID = 4b67d6df-647f-4da3-a00f-12e52bdff947, objectType = VMHost, taskID = 1ee6c6db-a399-4033-ad4b-519c0d130f52, doNotRetryLock =
    (bool) True }, data = (HostData#[bcbb]) { id = 4b67d6df-647f-4da3-a00f-12e52bdff947, LastUpdatedTimestamp = 07/12/2014 18:04:04, Flags = AvailableForPlacement, HostGroupID = 0e3ba228-a059-46be-aa41-2f5cf0f4b96e, AgentServerID = 57f60b84-2997-4a25-b38e-56dc8dae19e4,
    OverrideHostGroupReserves = False, CPUPercentageReserve = 10, NetworkPercentageReserve = 0, DiskSpaceReserveMB = 10240, MaxDiskIOReservation = 10000, MemoryReserveMB = 2048, VhdPaths = (String[][-1]#1a4d96a) { }, VMRCEnabled = True, VMRCPort = 2179, SecureVMRCEnabled
    = False, VMRCCertificateAvailable = False, VirtualizationPlatformScheme = "viridian://hvnext2-ak.dev.amust.local", SupportsLiveMigration = False, EnableLiveMigration = False, LiveMigrationMaximum = 0, LiveStorageMigrationMaximum = 0, UseAnyMigrationSubnet
    = False, MigrationSubnet = (String[][-1]#2d3a296) { }, MigrationSubnetUserManaged = (Boolean[][-1]#2d62b0c) { }, MigrationAuthProtocol = CredSSP, VirtualServerState = Unknown, VirtualServerVersion = (Version#fffff) 0.0, VirtualServerVersionState = UpToDate,
    IsDMZHost = False, UseCACert = False, IsNonTrustedDomainHost = False, UserName = "", Password = "<password omitted>", LogicalProcessorCount = 0, PhysicalProcessorCount = 0, CoresPerProcessor = 0, L2CacheSize = 0, L3CacheSize = 0,
    BusSpeed = 0, ProcessorSpeed = 0, ProcessorModel = "", ProcessorManufacturer = "", ProcessorArchitecture = 0, ProcessorStepping = "", TotalMemory = 0, OperatingSystemName = "", OperatingSystemVersion = (Version#a00a0fff)
    10.0.9888, IsoRWRepositoryAvailableBytes = 0, CpuUtilization = 0, AvailableMemory = 0, Custom = (String[][9]#1d09d25) { (null), (null), (null), (null), (null), (null), (null), (null), (null) }, MaximumMemoryPerVM = 0, MinimumMemoryPerVM = 0, SuggestedMaximumMemoryPerVM
    = 0, IMAPIInstalled = False, AvailableMemoryTierredPerfCounterID = 869a7213-d9dc-41a2-a5d1-d28099894ff6, CpuTieredPerfCounterID = 68e21dec-4b18-4626-9ab3-0c136c654c79, ClusterNodeStatus = ClusterNodeStateUnknown, SecureMode = True, SslTcpPort = 5985, SslCertificateImportedByVMM
    = False, SshTcpPort = 0, IsRemoteFXRoleInstalled = False, IsCPUSLAT = False, HostVolumeIDs = Ø, HostDiskIDs = Ø, StorageFileShareIDs = Ø, HostGPUIDs = Ø, InstalledVirtualSwitchExtensionIDs = Ø, HostFibreChannelHbaIDs = Ø, HostSASHbaIDs = Ø, HostInternetSCSIHbaIDs
    = Ø, PhysicalMachineID = 655a0cbb-5fa8-4379-9a0a-dc645baae95c, OobType = None, IsPowerOptimizationControlled = False, RunAsAccountID = 93e5e250-394a-4917-9e06-88c7fb7edd98, CustomPropertyIDs = Ø, HealthMonitorIDs = Ø }, server = (RemoteServer#21feea7) Microsoft.VirtualManager.DB.Adhc.RemoteServer,
    agentVersionState = (VersionState) { UpToDate } }, agentRefreshSyncObj: (Object) null, checkIfClustered: (Boolean#0) False, refreshEventCapabilities: (Boolean#0) False, taskID: (guid) 1ee6c6db-a399-4033-ad4b-519c0d130f52, taskContext: (TaskContext#38b9a77)
    Microsoft.VirtualManager.Engine.TaskRepository.TaskContext, dbConnection: (TransactableDbContext#[1b46]) { constructionCallSite = (CallSite) { SqlContext.Connect }, sqlContext = (SqlContext#[2bd2]) { [rw] SqlContext.ConnectconstructionIdentity = (WindowsIdentity#27652b0)
    System.Security.Principal.WindowsIdentity commandList: { n=46 { Q:"dbo.prc_ADHC_Host_Get(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 [+00:00:00.0019993] }, { Q:"dbo.prc_ADHC_HealthMonitor_GetAllIDsByAgent(@AgentServerID=57f60b84-2997-4a25-b38e-56dc8dae19e4)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_HostVolume_GetIDsByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 [+00:00:00.0010014] }, { Q:"dbo.prc_BTBS_CustomPropertyValue_GetCPValIDByObjID(ObjectID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_HostDisk_GetIDsByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_ST_StorageFileShareAssociation_GetShareIDsByServerIDAndType(@ServerID=4b67d6df-647f-4da3-a00f-12e52bdff947,
    @ServerType=VMHost)", @07/12/2014 21:04:57 [+00:00:00.0009995] }, { Q:"dbo.prc_ADHC_GetHostFibreChannelHbaByHostID(HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_GetHostSASHbaByHostID(HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 [+00:00:00.0010007] }, { Q:"dbo.prc_ADHC_GetHostInternetSCSIHbaByHostID(HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_HostGPU_GetByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 [+00:00:00.0009991] }, { Q:"dbo.prc_NetMan_InstalledVirtualSwitchExtension_GetByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_GetHostFibreChannelVirtualSANByHostId(HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_AgentServer_Get(@AgentServerID=57f60b84-2997-4a25-b38e-56dc8dae19e4)", @07/12/2014 21:04:57 [+00:00:00.0010041] }, { Q:"dbo.prc_ADHC_AgentServerRelation_GetByAgent(@AgentServerID=57f60b84-2997-4a25-b38e-56dc8dae19e4)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_BTBS_HostGroup_GetByID(@ID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)", @07/12/2014 21:04:57 [+00:00:00.0009967] }, { Q:"dbo.prc_BTBS_HostGroup_GetChildGroupIDs(@ID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_BTBS_CustomPropertyValue_GetCPValIDByObjID(ObjectID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)", @07/12/2014 21:04:57 [+00:00:00.0009990] }, { Q:"dbo.prc_ADHC_Host_GetByGroupID(@HostGroupID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)",
    @07/12/2014 21:04:57 }, { NQ:"dbo.prc_VMM_AcquireLock(@ObjectID=4b67d6df-647f-4da3-a00f-12e52bdff947, @ObjectType=VMHost, @TaskID=1ee6c6db-a399-4033-ad4b-519c0d130f52, @ReqLockType=Write)", @07/12/2014 21:04:57 [+00:00:00.0019787] }, { Q:"dbo.prc_ADHC_Host_Get(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 [+00:00:00.0010032] }, { Q:"dbo.prc_ADHC_HealthMonitor_GetAllIDsByAgent(@AgentServerID=57f60b84-2997-4a25-b38e-56dc8dae19e4)", @07/12/2014 21:04:57 [+00:00:00.0010090] }, { Q:"dbo.prc_ADHC_HostVolume_GetIDsByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_BTBS_CustomPropertyValue_GetCPValIDByObjID(ObjectID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 [+00:00:00.0009875] }, { Q:"dbo.prc_ADHC_HostDisk_GetIDsByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_ST_StorageFileShareAssociation_GetShareIDsByServerIDAndType(@ServerID=4b67d6df-647f-4da3-a00f-12e52bdff947, @ServerType=VMHost)", @07/12/2014 21:04:57 [+00:00:00.0010157] }, { Q:"dbo.prc_ADHC_GetHostFibreChannelHbaByHostID(HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_GetHostSASHbaByHostID(HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 [+00:00:00.0009850] }, { Q:"dbo.prc_ADHC_GetHostInternetSCSIHbaByHostID(HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_HostGPU_GetByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_NetMan_InstalledVirtualSwitchExtension_GetByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 [+00:00:00.0010008] }, { Q:"dbo.prc_ADHC_GetHostFibreChannelVirtualSANByHostId(HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_HostVolume_GetByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 [+00:00:00.0009996] }, { Q:"dbo.prc_ADHC_HostDisk_GetByHost(@HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_GetHostFibreChannelHbaByHostID(HostID=4b67d6df-647f-4da3-a00f-12e52bdff947)",
    @07/12/2014 21:04:57 [+00:00:00.0009977] }, { Q:"dbo.prc_ADHC_AgentServer_Get(@AgentServerID=57f60b84-2997-4a25-b38e-56dc8dae19e4)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_AgentServerRelation_GetByAgent(@AgentServerID=57f60b84-2997-4a25-b38e-56dc8dae19e4)",
    @07/12/2014 21:04:57 [+00:00:00.0010001] }, { Q:"dbo.prc_BTBS_HostGroup_GetByID(@ID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_BTBS_HostGroup_GetChildGroupIDs(@ID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_BTBS_CustomPropertyValue_GetCPValIDByObjID(ObjectID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)", @07/12/2014 21:04:57 [+00:00:00.0010000] }, { Q:"dbo.prc_ADHC_Host_GetByGroupID(@HostGroupID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_BTBS_HostGroup_GetByID(@ID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)", @07/12/2014 21:04:57 [+00:00:00.0010018] }, { Q:"dbo.prc_BTBS_HostGroup_GetChildGroupIDs(@ID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)",
    @07/12/2014 21:04:57 }, { Q:"dbo.prc_BTBS_CustomPropertyValue_GetCPValIDByObjID(ObjectID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_Host_GetByGroupID(@HostGroupID=0e3ba228-a059-46be-aa41-2f5cf0f4b96e)",
    @07/12/2014 21:04:57 [+00:00:00.0009978] }, { Q:"dbo.prc_ADHC_AgentServer_Get(@AgentServerID=57f60b84-2997-4a25-b38e-56dc8dae19e4)", @07/12/2014 21:04:57 }, { Q:"dbo.prc_ADHC_AgentServerRelation_GetByAgent(@AgentServerID=57f60b84-2997-4a25-b38e-56dc8dae19e4)",
    @07/12/2014 21:04:57 [+00:00:00.0010001] } } , conn = (SqlConnection#11f39db) { State: Open Database: VirtualManagerDB DataSource: SCVNEXT1-AK PacketSize: 8000 ServerVersion: 12.00.2000 StatisticsEnabled: False WorkstationId: SCVNEXT1-AK } }, constructionIdentity
    = (WindowsIdentity#1b706b2) System.Security.Principal.WindowsIdentity }) in t:\btvsts\38525\private\product\engine\ADHC\Operations\HostRefresher\HostRefresher.cs:line 861
    [s#35e07] VMRefresherBase.RunLightRefresher(this: (VMRefresherBase#[3b8]){ TBD }, dbConnection: (TransactableDbContext#[1b46])) in t:\btvsts\38525\private\product\engine\BitBoS\VmRefresher.cs:line 1178
    [s#35e06] VMRefresherBase.UpdateHostAndVMs(this: (VMRefresherBase#[3b8]), refresherType: VMRefresherType.LightVMRefresher, vmObjectId: (guid) 00000000-0000-0000-0000-000000000000, tempVm: (VM) null, dbConnection: (TransactableDbContext#[1b46])) in t:\btvsts\38525\private\product\engine\BitBoS\VmRefresher.cs:line
    693
    [s#35ddc] VmLightRefresher.RefreshData(this: (VmLightRefresher#[1]) { tbd }, hostRef: (HostReference#[b]) { hostID = 4b67d6df-647f-4da3-a00f-12e52bdff947, hostConnectionParams = (WSManConnectionParameters#16a611e) hvnext2-ak.dev.amust.local, isClustered = False
    }, dbConnection: (TransactableDbContext#[1b46])) in t:\btvsts\38525\private\product\engine\BitBoS\VmRefresher.cs:line 208
    [s#35ddb] RefreshDriver`1.RefreshThreadFunction(this: (RefreshDriver`1<HostReference>#[4]) { tbd }, obj: (WaitCallbackState<HostReference>#2143066) Microsoft.VirtualManager.Engine.RefreshDriver`1+WaitCallbackState[Microsoft.VirtualManager.DB.Adhc.HostReference])
    in t:\btvsts\38525\private\product\engine\Common\RefreshDriver.cs:line 568
    --------------- exception.StackTrace ---------------
    at System.Guid.GuidResult.SetFailure(ParseFailureKind failure, String failureMessageID, Object failureMessageFormatArgument, String failureArgumentName, Exception innerException)
       at System.Guid.TryParseGuidWithDashes(String guidString, GuidResult& result)
       at System.Guid.TryParseGuid(String g, GuidStyles flags, GuidResult& result)
       at System.Guid..ctor(String g)
       at Microsoft.VirtualManager.Engine.EngineFSUtils.GetVolumeIDFromVolumeName(String volumeName)
       at Microsoft.VirtualManager.Engine.ImageLibrary.StorageDataHelper.CreateVolume(MSFT_Volume volume, MSFT_Partition partition, WsmanAPIWrapper wrapper)
       at Microsoft.VirtualManager.Engine.Adhc.SMStorageRefresher.GetVolumes(IVmmDbContext ctx)
       at Microsoft.VirtualManager.Engine.Adhc.WindowsHostDataProperties.PopulateProperties(IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.Adhc.WindowsHostAbstractionLayer.GetHostProperties(HostData oldHostData, Version agentVersion, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.GatherAllInformation(Host host, Object agentRefreshSyncObj, Boolean checkIfClustered, Boolean refreshEventCapabilities, String& clusterName, Guid taskID, ITaskContext taskContext, IVmmDbConnection
    dbConnection)
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.RefreshLockedHost(Host host, Guid taskID, ITaskContext taskContext, Boolean checkClusterStatus, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.UpdateHostToResponding(Nullable`1& prevState, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.UpdateHostState(IVMComputerSystemSummary[]& vmComputers, Nullable`1& prevState, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.RunLightRefresher(IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.UpdateHostAndVMs(VMRefresherType refresherType, Guid vmObjectId, VM tempVm, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VMRefresherBase.UpdateHostAndVMs(VMRefresherType refresherType, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.BitBos.VmLightRefresher.RefreshData(HostReference hostRef, Nullable`1& auditTaskId, IVmmDbConnection dbConnection)
       at Microsoft.VirtualManager.Engine.RefreshDriver`1.<>c__DisplayClassa.<RefreshThreadFunction>b__7(IVmmDbConnection _dbConnection)
    ------------- StackTrace from handler --------------
    This is the call stack from where the exception was caught, not where it was thrown.
    at Microsoft.VirtualManager.Utils.Diagnostics.WatsonReport.WriteReportTextFile(TextWriter reportFile)
       at Microsoft.VirtualManager.Utils.Diagnostics.WatsonReport.Send()
       at Microsoft.VirtualManager.Utils.Diagnostics.WatsonExceptionReport.Send()
       at Microsoft.VirtualManager.Utils.Diagnostics.WatsonCenter.ReportException(Exception e, WERReportOptions options, String& localReportPath)
       at Microsoft.VirtualManager.Engine.TaskRepository.TaskRepository.HandleCriticalRefresherFailure(Object sender, CriticalRefreshFailureEventArgs eventData)
       at Microsoft.VirtualManager.Engine.RefreshDriver`1.<>c__DisplayClassa.<RefreshThreadFunction>b__7(IVmmDbConnection _dbConnection)
       at Microsoft.VirtualManager.DB.SqlContext.Connect(Action`1 action)
       at Microsoft.VirtualManager.Engine.RefreshDriver`1.RefreshThreadFunction(Object obj)
       at Microsoft.VirtualManager.Utils.Multithreading.ThrottledThreadPool.<>c__DisplayClass3.<ScheduleNextThread>b__2(Object dummy)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
       at System.Threading.ThreadPoolWorkQueue.Dispatch()
    -------------------- Assemblies --------------------
    mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
        Module=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    VMMService, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\vmmservice.exe
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\vmmservice.exe
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    TraceWrapper, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\TraceWrapper.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\TraceWrapper.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Utils, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Utils.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Utils.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    NativeMethods, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NativeMethods.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NativeMethods.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.IndigoAccessLayer, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.IndigoAccessLayer.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.IndigoAccessLayer.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.Common, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Common.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Common.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    Errors, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Errors.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Errors.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Remoting, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Remoting.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Remoting.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
        Version=4.5.27.0
        Product=Microsoft® .NET Framework
    System.DirectoryServices.AccountManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.AccountManagement\v4.0_4.0.0.0__b77a5c561934e089\System.DirectoryServices.AccountManagement.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.AccountManagement\v4.0_4.0.0.0__b77a5c561934e089\System.DirectoryServices.AccountManagement.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.Adhc.Operations, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Adhc.Operations.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Adhc.Operations.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.TaskRepository, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.TaskRepository.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.TaskRepository.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    ImgLibEngine, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ImgLibEngine.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ImgLibEngine.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    VmmHelperHost, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmHelperHost.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmHelperHost.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    VirtualizationInterfaces, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VirtualizationInterfaces.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VirtualizationInterfaces.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    NetworkServiceInterfaces, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NetworkServiceInterfaces.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NetworkServiceInterfaces.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    ClusterUtil, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ClusterUtil.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ClusterUtil.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    VMWareImplementation, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VMWareImplementation.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VMWareImplementation.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.AuthorizationManager, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManager.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManager.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.AuthorizationManagerTasks, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManagerTasks.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManagerTasks.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.Backup, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Backup.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Backup.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.BitBos, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.BitBos.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.BitBos.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll
        Version=10.0.9888.0
        BuildType=retail
        Product=Microsoft (R) Windows (R) Operating System
    WsManWrappers, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WsManWrappers.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WsManWrappers.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    SqmWrapper, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\SqmWrapper.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\SqmWrapper.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.Deployment, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Deployment.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Deployment.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.Placement.ResourceModel, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.ResourceModel.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.ResourceModel.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.ImgLibOperation, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ImgLibOperation.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ImgLibOperation.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.CustomProperties, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomProperties.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomProperties.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.VmOperations, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.VmOperations.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.VmOperations.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.MomDal, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.MomDal.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.MomDal.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.PxeServer, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.PxeServer.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.PxeServer.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.Placement, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.P2VCommon, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.P2VCommon.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.P2VCommon.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    PatchExtractor, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\PatchExtractor.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\PatchExtractor.dll
    Engine.ConfigurationProviders, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ConfigurationProviders.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ConfigurationProviders.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    GatewayInterfaces, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GatewayInterfaces.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GatewayInterfaces.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Microsoft.Management.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Management.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Management.Infrastructure.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Management.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Management.Infrastructure.dll
        Version=10.0.9888.0
        BuildType=retail
        Product=Microsoft (R) Windows (R) Operating System
    Microsoft.CapacityManager.Modeling.Store.ModelLibrary, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Microsoft.CapacityManager.Modeling.Store.ModelLibrary.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Microsoft.CapacityManager.Modeling.Store.ModelLibrary.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.CustomPropertyTasks, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomPropertyTasks.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomPropertyTasks.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.UMOperation, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.UMOperation.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.UMOperation.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.Scheduler, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Scheduler.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Scheduler.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.Tasks, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Tasks.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Tasks.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.ServiceOperations, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ServiceOperations.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ServiceOperations.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    GoalState, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GoalState.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GoalState.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Engine.CloudService, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CloudService.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CloudService.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    WSManAutomation, Version=3.2.9013.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WSManAutomation.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WSManAutomation.dll
    wmiWrappers, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WMIWrappers.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WMIWrappers.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Skuhelper, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Skuhelper.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Skuhelper.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll
        Version=4.5.27.0
        Product=Microsoft® .NET Framework
    System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    DB.DelegatedAdmin, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\DB.DelegatedAdmin.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\DB.DelegatedAdmin.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    DB.TieredPerfCounters, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\DB.TieredPerfCounters.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\DB.TieredPerfCounters.dll
        Version=3.2.9013.0
        BuildType=retail
        Product=System Center Virtual Machine Manager Technical Preview
    System.Dynamic, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Dynamic\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Dynamic.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Dynamic\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Dynamic.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll
        Version=4.5.27.0
        BuildType=retail
        Product=Microsoft® .NET Framework
    --------- Extra Data for Watson Report -------------
    Error Reporting Enabled=True
    *** Extra Data ***
    Process ID = 7204 (0x1c24)
    Managed Thread ID = 74
    Native Thread ID = 14652 (0x393c)
    Alec King Director, Product Management @ Veeam Software

    On Sun, 7 Dec 2014 21:24:57 +0000, Alec 'The' King wrote:
    @Paul Adare, Your replies have zero value. An apology or retraction for your accusation of piracy would have been more appropriate.
    If you don't have any insight to add on the topic of this post, please stop spamming it.
    I did not accuse you of anything. The build in question has been pirated
    and is floating around the Internet and Microsoft has not, in fact released
    the build to the general pubic. Those are facts. I have also been involved
    in various TAP programs over the years and I know that there are dedicated
    support channels for those programs and that you are to use those dedicated
    support channels, not the support channels made available to the public
    releases. Also a fact.
    If you want support for your issues, the only way you're going to get
    that support is what I told you. Whether you choose to avail yourself of
    that support is up to you.
    Paul Adare - FIM CM MVP
    I've seen Sun monitors on fire off the side of the multimedia lab. I've
    seen
    NTU lights glitter in the dark near the Mail Gate. All these things will be
    lost in time, like the root partition last week. Time to die... -- P.
    Gutmann

Maybe you are looking for

  • GIF pictures in iphoto

    Today i downloaded some GIF pictures and i dragged them into iphoto and GIF pictures are supposed play like movies but pictures. On the website they played but not iphoto and also played in preview. any ideas what is happening?

  • Can you use the trade in service if my phone has been opened by 3rd party ?

    hi , basically my phone has been water damaged , charges only on a docking station, apple allowed me to trade in this phone , but i left to think about it, basically a local shop offered to try and fix my phone which was unsuccessful, will apple stil

  • Ipod nano 2nd gen and dock/alarm clock

    i have read through alot of the posts and have not seen anything similar to my question. i got my daughter an ipod nano for xmas. we really dont leave the computer on alot and she was wanting a docking station/speaker setup. i found one that charges

  • Acrobat Pro 8, 9 and X installed. Can I uninstall 8 and 9?

    I migrated my old MacBook Pro to my new MacBook Pro in January (OS X 10.7.4).  I now have 3 versions of Acrobat Pro on my Mac, Pro 8, Pro 9 and Pro X.  Can I uninstall 8 and 9 without having to re-install X?

  • Mac10.x client can't connect to File Server on Windows2008 Failover Cluster

    Installation of a cluster was made according to the document "Failover Cluster Step-by-Step Guide: Configuring a Two-Node File Server Failover Cluster " http://technet.microsoft.com/en-us/library/cc731844.aspx. My Mac OS X 10.5.2 and Mac OS X 10.4.11