Run Cleanup on failure programatically

Hi guys,
Under TestStand 2.0.1f1, go to Configure->Station Options, and look at the On Run-Time error menu ring. It contains 4 items as follows :
Show Dialog (0)
Run Cleanup (1)
Ignore (2)
Abort (3)
(I'll explain the numbers here in a minute)
If you then look at the Engine property RTEOption, you have the following
RTEOption_Abort - (Value: 3)
RTEOption_Continue - (Value: 1)
RTEOption_Ignore - (Value: 2)
RTEOption_Retry - (Value: 4)
RTEOption_ShowDialog - (Value: 0)
If I create an action step that uses the above RTEOption, run it, and then look at the Station Options again, I see the marked (the number next to the item done earlier) in the Menu Ring.
The problem is, the two don't match up, i.e. if I set a 1, whic
h is continue, I see Run Cleanup, and depending on the previous setting, I can get the dialog to show, or contiinue straight on.
So what are the additional things that need setting along with RTEOption that give you a true RunCleanup?
I know the best architecture is to use the callbacks for either SequenceFilePostStepRunTimeError or ProcessModelPostStepRunTimeError, but then you need a way of forcing the enxt step to enter the cleanup step group, and if the Station Option hasn't been set correctly, it'd be nice to force it.
Thanks
S.
(This came about whilst answering a question at http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000F35B0000&UCATEGORY_0=_8_&UCATEGORY_S=0
and I was trying to force the Run Cleanup option.)
// it takes almost no time to rate an answer

Thanks,
that sort of works, but it still doesn't explain the mis-type in the enum texts.
To get the cleanup run as I want it, I have to set the RTEOptionForThisExecution to RTEOption_Continue. There simply isn't a RTEOption_cleanup.
Also, shouldn't I be able to modify the station options on the fly - it's the next step that should pick up the changes, as they're to the engine itself - for example, set an execution going, and play around with the tracing speed.
Finally, I've verified your answer, by after the first run, useing the engine object to modify the RTEOption, on a subsequent runs , I see the behaviour I want. Strange then. So you couldn't modify the engine permanently unless it's outside a sequence execution, that's not going to rely on it.
OK, s
trange, but OK.
Can you clear up which enum's are supposed to do what then, as RTEOption_Continue, actually runs cleanup.
Thanks
S.
// it takes almost no time to rate an answer

Similar Messages

  • Run-Time Check Failure #2 - Stack around the variable was corrupted.

     I had checked on net as well as on social msdn site for this kind of error. Usually error is due to writing out of index. I tried to figure out same mistake in below mentioned code but I failed to do so. I am using Visual Studio 2010 for compilation
    on Windows 7 (64 bit) machine. I am getting following error "Run-Time Check Failure #2 - Stack around the variable 'lcPacketPrefix' was corrupted."
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #define TRUE 1
    #define FALSE 0
    #define BYTE unsigned char
    typedef struct {
    int i;
    double e;
    long t;
    char ar[45];
    }Sample;
    bool getMCXBuffPrefix(char * lpSource,char* Destination, int piSourceLen)
    char lcPacketLen[10];
    char lcPacketPrefix[5];
    try
    memset(lcPacketLen,'0',sizeof(lcPacketLen));
    memset(lcPacketPrefix,'0',sizeof(lcPacketPrefix));
    _itoa(piSourceLen,lcPacketLen,10);
    strcpy_s(lcPacketPrefix+(sizeof(lcPacketPrefix)-strlen(lcPacketLen)),sizeof(lcPacketPrefix),lcPacketLen);
    //To Prefix Length in send Packet
    memcpy(Destination,lcPacketPrefix,5);
    memcpy(Destination+5,(char*)lpSource,piSourceLen);
    catch(...)
    printf("In Catch: While Prefixing MCX Buffer.\n");
    return FALSE;
    return TRUE;
    int main(int argc, char *argv[])
    BYTE* lcCompData = (BYTE*) malloc (1024);
    BYTE* gpcSendSource = (BYTE*) malloc (1024);
    Sample sample_t;
    memset((BYTE*)gpcSendSource,'0',1024);
    memset(&sample_t, '\0', sizeof(Sample));
    memcpy(gpcSendSource, &sample_t, sizeof(Sample));
    bool lbPrefixed = getMCXBuffPrefix((char*)gpcSendSource,(char*)lcCompData,sizeof(Sample));
    return 0;
    Little guidance will be helpful.

     I had checked on net as well as on social msdn site for this kind of error. Usually error is due to writing out of index.
    As it is in your code.
           strcpy_s(lcPacketPrefix+(sizeof(lcPacketPrefix)-strlen(lcPacketLen)),sizeof(lcPacketPrefix),lcPacketLen);
    You're saying that the size of the buffer is greater than it is
    because you're offsetting the start pointer.
    If you'd more correctly written the code like this:
      size_t offset = (sizeof(lcPacketPrefix) - strlen(lcPacketLen));
    strcpy_s(lcPacketPrefix+offset,sizeof(lcPacketPrefix)-offset,lcPacketLen);
    You'd have got a run-time error in the debug version of your code.
    However that's not what you want. Try something like this instead:
      size_t offset = (sizeof(lcPacketPrefix) - strlen(lcPacketLen));
      strncpy(lcPacketPrefix + offset, lcPacketLen, strlen(lcPacketLen) );
    But most importantly, understand what you'd done wrong and learn from
    it.
    Dave

  • Debugging: Run-Time Check Failure #2 - Stack around the variable 'LoggerThread' was corrupted.

    I am getting:
    Run-Time Check Failure #2 - Stack around the variable 'LoggerThread' was corrupted.
    I have searched as much as I can for a description of how to diagnose, but I have not found anything. I don't know how to determine the specific address that is being corrupted. If I knew that, then I could of course set a breakpoint on the condition of that changing.
    I have found many answers about other instances of this error, but nothing that descibes how to diagnose this problem. All other problems were simple enough that the problem could be determined by looking at the code. I have looked at my code extensively and I don't see a problem. One of the previous answers I have found is Error: Stack corruption around the variable 'tm' but the current version of the program uses only default alignment.
    This particular problem is a symptom of a problem that has had various other symptoms, most of which would be more difficult to diagnose. Therefore the problem is probably more subtle than most. I initially encountered the problem in a DLL project, but I wrote a console program to use and test the relevant code. It is the console version that I am debugging.

     Sam Hobbs wrote:
     Holger Grund wrote:
    Hey, these data breakpoints are really not that hard to use ;-)
    Actually they are useless for me when I use my own system, which is only 350 MHz. On that system, even very simple programs run noticeably slow and any meaningful debugging is impossible. The problem I am encountering I am developing and debugging using a fast system, so the performance is not likely to be a probem, but that has been a problem for me in the past.
    You probably haven't set the breakpoints in the correct way (again you should calculate the address yourself and leave the context empty so that the hardware debug breakpoint registers can be used).
     Sam Hobbs wrote:
    One of us does not understand. First, I must correct what I said before; the stack is used in reverse of what I was thinking. I knew that but I forgot. In other words, for each item local appearing in a function, the addresses decrease. The processor's stack pointer register is decreased for each item put into it, which makes sense, because then the processor knows there is a problem when the register gets to zero or less.
    Yes, I certainly understand that the error message is referring to memory before and after LoggerThread.
    There is an important difference between stack memory before a function's allocations and after.
    So for example if we have:
    Code Snippet
    void Level3(int a) {
     char Local[4];
    std::cout << "In Level3 Local is at " << &Local << '\n';
    void Level2(int a) {
     char Local[4];
    std::cout << "In Level2 Local is at " << &Local << '\n';
    Level3(3);
    void Level1(int a) {
     char Local[4];
    std::cout << "In Level1 Local is at " << &Local << '\n';
    Level2(2);
    int main(int argc, char* argv[]) {
     (void)argc, argv;
     char Local[4]="321";
     unsigned *pStack;
    _asm {mov pStack, esp}
    std::cout << "The stack is at " << pStack << '\n';
    std::cout << "In main Local is at " << &Local << '\n';
    Level1(1);
    return 0;
    Then the ouput I get is:
    The stack is at 0012FF1C
    In main Local is at 0012FF6C
    In Level1 Local is at 0012FF0C
    In Level2 Local is at 0012FEB0
    In Level3 Local is at 0012FE54
    Note that the addresses decrease. If I create a breakpoint using "{main,,} *(Local-256)" for 256 elements, then that breakpoint breaks constantly due to normal use of the stack. That makes debugging more difficult; are you aware of that problem?
    Unsurprisingly the debugger will watch for modifications of 256 bytes if you tell it to do so. But I don't see why you would want to do it? It is obvious that this extends into callee stack space. There are only two bytes that you should be interested in: the one before the clobbered local and the one after. Of course, during its lifetime its allocated address will never change. And in debug stack frames its memory location is never shared with any other code. Any modification to it indicates a programming error.
    Also, do note that scoped data breakpoints have had some performance problems. Again, if you care about performance calculate the address manually and set a data breakpoint without a C++ scope and make sure you don't exceed the number of available hardware watchpoint registers (IIRC there are 4 HW breakpoint registers which can watch 1,2 or 4 bytes at a given (aligned?) address). With HW watchpoints you shouldn't see any performance degradation.
    -hg

  • BOMM XI 3.1 - Logs Cleanup Utility - failure

    BOMM XI 3.1 on Windows Server 2003
    BusinessObjects Enterprise XI 3.1 SP2
    I do not succeed in running the Logs Cleanup Uitility. This is the error log. I have not modified the MM.properties file.
    [C-3027231] 2010-01-06 13:32:15.723 Metadata Management build version 12.1.0.1.
    [I-3026012] 2010-01-06 13:32:15.739 Starting utility com.bobj.mm.utility.MMLogsCleanupUtility.
    [I-3027129] 2010-01-06 13:32:15.739 Process id = 7824 on machine VWAC106.post.bpgnet.net.
    [C-3027100] 2010-01-06 13:32:15.739 Extracting arguments from C:\Program Files\Business Objects\MetadataManagement\MM\bin\..\config\MM.properties.
    [E-3026103] 2010-01-06 13:32:15.754 java.lang.NullPointerException
    [C-0000000] 2010-01-06 13:32:15.754 java.lang.NullPointerException
         at com.bobj.mm.boe.plugin.desktop.configuration.internal.UtilityConfigurationImpl.getPropertiesInBag(UtilityConfigurationImpl.java:171)
         at com.bobj.mm.boe.plugin.desktop.configuration.internal.UtilityConfigurationImpl.getUtilityProperties(UtilityConfigurationImpl.java:151)
         at com.bobj.mm.core.ProgramConfiguration.parseConfigurationFromInfoStore(ProgramConfiguration.java:573)
         at com.bobj.mm.core.ProgramConfiguration.setArgs(ProgramConfiguration.java:366)
         at com.bobj.mm.core.Main.handleArgs(Main.java:1222)
         at com.bobj.mm.core.Main.run(Main.java:1145)
         at com.bobj.mm.core.Main.main(Main.java:229)
    [E-3026267] 2010-01-06 13:32:15.754 Error reading configuration with configuration_id = 84653.
    [E-3026022] 2010-01-06 13:32:15.770 Utility failed with code 1.
    [I-3026014] 2010-01-06 13:32:15.770 Completed execution on 2010-01-06 13:32:15.
    [I-3026105] 2010-01-06 13:32:15.770 Elapsed time is 0:00.063 [min:sec.millisec].

    did you upgrade from MM 12.0 to MM 12.1 or this is new installation of MM 3.1 ?
    if you have upgraded from 12.0 then this might be a bug, the MM Cleanup Utility obejct in CMS repository didn't get updated during upgrade, you can try the following workaround
    go to <BOE Installation>\BusinessObjects Enterprise 12.0\Packages folder
    open BusinessObjects_MM_Utility_Log_Cleanup_dfo.xml in text editor (notepad)
    change the following
    <propertybag name="SI_MM_UTILITY_PROPERTIES" type="Bag" flags="0">
    to
    <propertybag name="SI_MM_UTILITY_PROPERTIES" type="Bag" flags="0" version="3000100">
    restart the CMS Server

  • Run-in-test failure

    I was running run in test on my laptop but it failed giving me this massage:
    Failure ID: UBQ78X-0007N8-MFKT0J-C0A603
    Product ID: A6F43EA#BH5..
    What does this mean?

    Hi, The 24 character error code indicates that your notebooks main battery may need replacing. If your notebook is still under warranty, contact HP and arrange for a replacement to be sent - you can check your warranty status Here. If you live in the US, contact HP Here. If you are in another part of the world, start Here. Regards, DP-K

  • Run cleanup utility, then all ivi drivers in the measurement & automation explorer are deleted,

    Hello I have the following problem,
    I run the cleanup utility, then all ivi drivers in the measurement & automation explorer are deleted.
    when I want to add for example a new driver session then that is not possible to click on "create new".
     What is the problem?
    regards samuel

    Cedric,
    In this case its the usb-serial adapter that is likely the cause of the issue.  As mentioned in this KB it is likely that MAX doesn't know how to recognize the third-party adapter.  You may want to refer to this KB that talks about making VISA calls to third-party devices as it may be useful.
    John B.
    Applications Engineer
    National Instruments

  • Run External Script Failure

    How important is it to have the failure branch of a Run External Script node point to somewhere other than the success branch?
    We have quite a few scripts built by other people with the success and failure branch both pointed to the next node in the script regardless. Besides the call not recieving the prompts or announcements are there any other consequences to not fixing these?

    CVP here:
    Interesting technique. I would never do that. I connect the X node to an ICM script called something like SYS_F_RES (system failure run external script) and this sets a call type and returns END if the call comes from the PSTN and Release if the call comes from CUCM (this is CVP). Setting the call type allows a quick WebView/CUIC report check. Bringing all failures through a single script allows a quick check with Monitor.
    (PS: I also have similar little scripts/calltypes for Send 2 VRU failure, DN list failure, queue 2 skill group failure.  )
    Normally these things only fail in development, when you have the WAV file wrong/missing, the config params wrong. But in production there are the predictable failures (max no entry, max no match) you need to deal with correctly.
    I suggest you fix them.
    Regards,
    Geoff

  • VMM 2012 R2 - Create or Update Run As Account Failure: The specified directory service attribute or value does not exist

    VMM 2012R2 UR4 - Version 3.2.7768.0
    Not sure when this started happening since I haven't had to update or create a new RunAs account in VMM in some time, but every time I do, either through the console or through PowerShell it throws an error about The specified directory service attribute
    or value does not exist.  The VMM Service account is the same as it always has been, and other than this issue everything with VMM is working fine.  The full text of the error message is below.
    I am hoping someone has some ideas because I don't have any more at this point.
    ------------------- Error Report -------------------
    Error report created 12/22/2014 9:43:33 AM
    CLR is not terminating
    --------------- Bucketing Parameters ---------------
    EventType=VMM20
    P1(appName)=vmmservice.exe
    P2(appVersion)=3.2.7768.0
    P3(assemblyName)=Microsoft.Cryptography.DKM.dll
    P4(assemblyVer)=3.2.7510.0
    P5(methodName)=Microsoft.Incubation.Crypto.GroupKeys.ADRepository.EnumerateKeys
    P6(exceptionType)=System.Runtime.InteropServices.COMException
    P7(callstackHash)=d0d2
    SCVMM Version=3.2.7768.0
    SCVMM flavor=C-buddy-RTL-AMD64
    Default Assembly Version=3.2.7768.0
    Executable Name=vmmservice.exe
    Executable Version=3.2.7768.0
    Base Exception Target Site=140712994535888
    Base Exception Assembly name=System.DirectoryServices.dll
    Base Exception Method Name=System.DirectoryServices.DirectoryEntry.Bind
    Exception Message=The specified directory service attribute or value does not exist.
    EIP=0x00007ffa67d15bf8
    Build bit-size=64
    ------------ exceptionObject.ToString() ------------
    System.Runtime.InteropServices.COMException (0x8007200A): The specified directory service attribute or value does not exist.
       at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
       at System.DirectoryServices.DirectoryEntry.Bind()
       at System.DirectoryServices.DirectoryEntry.get_IsContainer()
       at System.DirectoryServices.DirectoryEntries.ChildEnumerator..ctor(DirectoryEntry container)
       at Microsoft.Incubation.Crypto.GroupKeys.ADRepository.EnumerateKeys()
       at Microsoft.Incubation.Crypto.GroupKeys.DKMBase.FindNewestKey()
       at Microsoft.Incubation.Crypto.GroupKeys.DKMBase.GetCurrentKeyAndUpdate(KeyPolicy& keyPolicy)
       at Microsoft.Incubation.Crypto.GroupKeys.DKMBase.Protect(MemoryStream plaintext)
       at Microsoft.VirtualManager.Engine.DKMUtil.Protect(Byte[] data)
       at Microsoft.VirtualManager.Engine.CryptoHelper.Protect(Char[] data)
       at Microsoft.VirtualManager.Engine.CryptoHelper.Protect(SecureString data)
       at Microsoft.VirtualManager.DB.RunAs.RunAsDBAccess.UpsertRunAsAccount(RunAsAccountData data, SqlContext context, Boolean isAdd, Boolean setCredential)
       at Microsoft.VirtualManager.Engine.RunAs.RunAsAccount.AddOrUpdateObjectInDB(SqlContext context, Boolean setCredential)
       at Microsoft.VirtualManager.Engine.RunAs.RunAsAccount.UpdateDB(SqlContext ctx, Boolean setCredential)
       at Microsoft.VirtualManager.Engine.RunAs.RunAsAccount.Update(SqlContext ctx, Boolean setCredential)
       at Microsoft.VirtualManager.Engine.AuthorizationManager.SetRunAsAccountTask.RunSubtask()
       at Microsoft.VirtualManager.Engine.TaskRepository.SubtaskBase.Run()
       at Microsoft.VirtualManager.Engine.TaskRepository.Task`1.SubtaskRun(Object state)
    --------------- exception.StackTrace ---------------
    at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
       at System.DirectoryServices.DirectoryEntry.Bind()
       at System.DirectoryServices.DirectoryEntry.get_IsContainer()
       at System.DirectoryServices.DirectoryEntries.ChildEnumerator..ctor(DirectoryEntry container)
       at Microsoft.Incubation.Crypto.GroupKeys.ADRepository.EnumerateKeys()
       at Microsoft.Incubation.Crypto.GroupKeys.DKMBase.FindNewestKey()
       at Microsoft.Incubation.Crypto.GroupKeys.DKMBase.GetCurrentKeyAndUpdate(KeyPolicy& keyPolicy)
       at Microsoft.Incubation.Crypto.GroupKeys.DKMBase.Protect(MemoryStream plaintext)
       at Microsoft.VirtualManager.Engine.DKMUtil.Protect(Byte[] data)
       at Microsoft.VirtualManager.Engine.CryptoHelper.Protect(Char[] data)
       at Microsoft.VirtualManager.Engine.CryptoHelper.Protect(SecureString data)
       at Microsoft.VirtualManager.DB.RunAs.RunAsDBAccess.UpsertRunAsAccount(RunAsAccountData data, SqlContext context, Boolean isAdd, Boolean setCredential)
       at Microsoft.VirtualManager.Engine.RunAs.RunAsAccount.AddOrUpdateObjectInDB(SqlContext context, Boolean setCredential)
       at Microsoft.VirtualManager.Engine.RunAs.RunAsAccount.UpdateDB(SqlContext ctx, Boolean setCredential)
       at Microsoft.VirtualManager.Engine.RunAs.RunAsAccount.Update(SqlContext ctx, Boolean setCredential)
       at Microsoft.VirtualManager.Engine.AuthorizationManager.SetRunAsAccountTask.RunSubtask()
       at Microsoft.VirtualManager.Engine.TaskRepository.SubtaskBase.Run()
       at Microsoft.VirtualManager.Engine.TaskRepository.Task`1.SubtaskRun(Object state)
    ------------- 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.Task`1.SubtaskRun(Object state)
       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.0.30319.34014
        BuildType=retail
        Product=Microsoft® .NET Framework
    VMMService, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\vmmservice.exe
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\vmmservice.exe
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    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.0.30319.33440
        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.0.30319.34003
        BuildType=retail
        Product=Microsoft® .NET Framework
    TraceWrapper, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\TraceWrapper.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\TraceWrapper.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Utils, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Utils.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Utils.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    NativeMethods, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NativeMethods.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NativeMethods.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Common, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Common.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Common.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.IndigoAccessLayer, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.IndigoAccessLayer.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.IndigoAccessLayer.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    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.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    Skuhelper, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Skuhelper.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Skuhelper.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Errors, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Errors.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Errors.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Remoting, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Remoting.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Remoting.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    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.0.30319.34230
        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.0.30319.33440
        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.0.30319.33440
        BuildType=retail
        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.0.30319.33440
        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.0.30319.34230
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.Adhc.Operations, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Adhc.Operations.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Adhc.Operations.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.TaskRepository, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.TaskRepository.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.TaskRepository.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    ImgLibEngine, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ImgLibEngine.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ImgLibEngine.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    VmmHelperHost, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmHelperHost.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmHelperHost.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    VirtualizationInterfaces, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VirtualizationInterfaces.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VirtualizationInterfaces.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    NetworkServiceInterfaces, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NetworkServiceInterfaces.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NetworkServiceInterfaces.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    ClusterUtil, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ClusterUtil.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ClusterUtil.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    VMWareImplementation, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VMWareImplementation.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VMWareImplementation.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.AuthorizationManager, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManager.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManager.dll
        Version=3.2.7672.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.AuthorizationManagerTasks, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManagerTasks.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManagerTasks.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Backup, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Backup.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Backup.dll
        Version=3.2.7672.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.BitBos, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.BitBos.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.BitBos.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    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=6.3.9600.17090
        BuildType=retail
        Product=Microsoft (R) Windows (R) Operating System
    WsManWrappers, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WsManWrappers.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WsManWrappers.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    SqmWrapper, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\SqmWrapper.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\SqmWrapper.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Deployment, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Deployment.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Deployment.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Placement.ResourceModel, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.ResourceModel.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.ResourceModel.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.ImgLibOperation, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ImgLibOperation.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ImgLibOperation.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    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.0.30319.34230
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.CustomProperties, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomProperties.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomProperties.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.VmOperations, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.VmOperations.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.VmOperations.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.MomDal, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.MomDal.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.MomDal.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    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.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.PxeServer, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.PxeServer.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.PxeServer.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Placement, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.P2VCommon, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.P2VCommon.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.P2VCommon.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    PatchExtractor, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\PatchExtractor.dll
        Module=D:\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=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ConfigurationProviders.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ConfigurationProviders.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    GatewayInterfaces, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GatewayInterfaces.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GatewayInterfaces.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    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=6.3.9600.16384
        BuildType=retail
        Product=Microsoft (R) Windows (R) Operating System
    Microsoft.CapacityManager.Modeling.Store.ModelLibrary, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Microsoft.CapacityManager.Modeling.Store.ModelLibrary.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Microsoft.CapacityManager.Modeling.Store.ModelLibrary.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.CustomPropertyTasks, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomPropertyTasks.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomPropertyTasks.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.UMOperation, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.UMOperation.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.UMOperation.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Scheduler, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Scheduler.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Scheduler.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Tasks, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Tasks.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Tasks.dll
        Version=3.2.7672.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.ServiceOperations, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ServiceOperations.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ServiceOperations.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    GoalState, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GoalState.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GoalState.dll
        Version=3.2.7768.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.CloudService, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CloudService.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CloudService.dll
        Version=3.2.7672.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    WSManAutomation, Version=3.2.7768.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WSManAutomation.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WSManAutomation.dll
    wmiWrappers, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WMIWrappers.dll
        Module=D:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WMIWrappers.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    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.0.30319.33440
        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.0.30319.33440
        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.0.30319.33440
        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.0.30319.33440
        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.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    --------- Extra Data for Watson Report -------------
    Error Reporting Enabled=True
    *** Extra Data ***
    Process ID = 4356 (0x1104)
    Managed Thread ID = 18
    Native Thread ID = 5520 (0x1590)
    MCITP | VCP4 | VCP5

    Hi,
    You want userPrincipalName, not userPrincipleName.
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms680857%28v=vs.85%29.aspx
    Don't retire TechNet! -
    (Don't give up yet - 12,575+ strong and growing)

  • Errors in DB13 when running cleanup logs or stat

    I am having the following error with ECC 6.0 kernel 700 oracle 10.1
    FOR CLEANUP LOG -
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000000, user ID SAP*)
    Execute logical command BRCONNECT On host TSTERP2005
    Parameters: -u / -jid CLNUP20060928123109 -c -f cleanup
    BR0801I BRCONNECT 7.00 (16)
    BR0805I Start of BRCONNECT processing: cdtpglcv.cln 2006-09-28 12.31.17
    BR0252E Function fopen() failed for 'E:\oracle\HDR\sapcheck\connHDR.log' at location main-11
    BR0253E errno 13: Permission denied
    BR0121E Processing of log file E:\oracle\HDR\sapcheck\connHDR.log failed
    BR0806I End of BRCONNECT processing: cdtpglcv.cln2006-09-28 12.31.43
    BR0280I BRCONNECT time stamp: 2006-09-28 12.31.44
    BR0804I BRCONNECT terminated with errors
    External program terminated with exit code 3
    BRCONNECT returned error status E
    Job finished
    For Stat -
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000001, user ID SAP*)
    Execute logical command BRCONNECT On host TSTERP2005
    Parameters: -u / -jid STATS20060928134037 -c -f stats -t ALL
    BR0801I BRCONNECT 7.00 (16)
    BR0805I Start of BRCONNECT processing: cdtpgrhm.sta 2006-09-28 13.40.54
    BR0252E Function fopen() failed for 'E:\oracle\HDR\sapcheck\connHDR.log' at location main-11
    BR0253E errno 13: Permission denied
    BR0121E Processing of log file E:\oracle\HDR\sapcheck\connHDR.log failed
    BR0806I End of BRCONNECT processing: cdtpgrhm.sta2006-09-28 13.41.09
    BR0280I BRCONNECT time stamp: 2006-09-28 13.41.09
    BR0804I BRCONNECT terminated with errors
    External program terminated with exit code 3
    BRCONNECT returned error status E
    Job finished
    Appreciate any help.

    OS is Windows server 2003,
    Still Looking for solution.

  • LabView Run-Time Installation Failure

    Hi
    I am trying to install the LabVIEW Run-Time Engine 20112 under a Windows XP Professional 32-bit SP3 Versin 2002, but every time I open the executable file, the comand prompt returns the message "Program too big to fit in memory". The machine has 2Gb of RAM memory, with only 670Mb in use. The Hard disk has 17Gb of free space. I have also installed on the computer the LabVIEW Run-Time Engine 8.6.
    Could you support me in the installation ?
    Tanks
    Download Link:
    http://joule.ni.com/nidu/cds/view/p/id/2534/lang/en
    Executable file name:
    LVRTE2011f3std.exe

    Recargable wrote:
    Hello!
    I tried installing the last version of the Windows Installer and the problem persisted.
    First I was installing from a mounted ISO image as if it was a DVD inserted for the virtual Windows XP, so I tried installing from a copy of the ISO image in the virtual hard disk, which failed too. Then I tried installing the Windows Installer. Copy the installation files out of the ISO image didn't go well either. Finally, I copied the installation files to a usb flash memory, I installed the Virtual Machine Additions in the virtual Windows XP (because is necessary for reading usb flash memories) and I could perform the installation from the flash memory.
    I can't yet understand why the OS recognises the executable files correctly in this last case and not in the others. They are the same files!!
    Thanks!!
    Totally strange.  I have no ideas on that one, but glad you got it to work. 
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • Run-Time Check Failure #2 - Stack around the variable 'NiPlots' was corrupted.

    Why do I get this message box pop up in Visual C++.net with the following code when exiting the function:
    void CESCView::InitGraphPower(void)
    CNiPlots NiPlots;
    if (m_NiGraphPower.m_hWnd)
    m_NiGraphPower.PlotAreaColor = COLOR_LIGHT_YELLOW;
    NiPlots = m_NiGraphPower.GetPlots();
    NiPlots.RemoveAll();
    NiPlots.Add();
    NiPlots.Add();
    NiPlots.Add();
    NiPlots.Item(VIEW_PLOT_POWER_ACTUAL).SetLineColor(COLOR_BLUE);
    NiPlots.Item(VIEW_PLOT_POWER_DCH).SetLineColor(COLOR_RED);
    NiPlots.Item(VIEW_PLOT_POWER_REG).SetLineColor(COLOR_RED);
    else
    ASSERT(FALSE);
    The code below runs without any problem
    void CESCView::InitGraphPower(void)
    //C
    NiPlots NiPlots;
    if (m_NiGraphPower.m_hWnd)
    m_NiGraphPower.PlotAreaColor = COLOR_LIGHT_YELLOW;
    //NiPlots = m_NiGraphPower.GetPlots();
    m_NiGraphPower.GetPlots().RemoveAll();
    m_NiGraphPower.GetPlots().Add();
    m_NiGraphPower.GetPlots().Add();
    m_NiGraphPower.GetPlots().Add();
    m_NiGraphPower.GetPlots().Item(VIEW_PLOT_POWER_ACTUAL).SetLineColor(COLOR_BLUE);
    m_NiGraphPower.GetPlots().Item(VIEW_PLOT_POWER_DCH).SetLineColor(COLOR_RED);
    m_NiGraphPower.GetPlots().Item(VIEW_PLOT_POWER_REG).SetLineColor(COLOR_RED);
    else
    ASSERT(FALSE);

    Hello,
    Please make sure you have the Visual C++.NET update. If you do not, you can request the update from:
    http://digital.ni.com/softlib.nsf/websearch/54D7F0484F7AE7D786256B900073DB48?opendocument
    Mika Fukuchi
    Application Engineer
    National Instruments

  • Run time servlet failure

    Dear all,
    I have been experiencing a very different problem these days.
    a servlet runs successfully on window 98 while using javawebserver2.0 [on window 2000 plateform] . while the same servlet displays some html coding rather that its actual output when i run this on Windows XP.
    as we all know that java is plateform independent language.
    is it not the OS dependecy?
    please ,if any one of you could help me.

    It is not about being platform independent. Different OS use different encodings in the file.property. It is hard to believe that your application is not running at all. Everyone writing applications in any other language but English comes across of this problem. Try different encoding it might help.

  • MSI cleanup utility failure when trying fix for Error 1714

    I am trying to run the suggested fix for:
    Error 1714
    Error "The installation source for this product is not available..." when you install or update (Acrobat 7.0, Acrobat 3D, Adobe Reader 7.0 on Windows)
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=332773
    However MSIcuu2 fails and says:
    Error: ActiveX component cant create object: WScript.Shell
    Code: 800A01AD
    Source: Microsoft VBSccript runtime error

    From the menu bar, select
     ▹ System Preferences ▹ Energy Saver ▹ Power Adapter
    and uncheck the box labeled Put the hard disk(s) to sleep when possible, if it's checked.
    If the drive has more than one interface (USB, FireWire, Thunderbolt, eSATA), try one of the other interfaces.
    Check that the data cable is securely inserted at both ends.
    Try a different cable.
    If you're connecting the drive through a hub, connect it directly to a built-in port on the Mac.
    If you're connecting it directly, try a different port.
    Disconnect all other devices on the bus, or as many as possible.
    Test the drive with another Mac. Test another drive with this Mac.
    If the drive is bus-powered, but has an AC adapter, connect the adapter.
    Start up in Safe Mode and test.
    If the drive doesn't work under any of the above conditions, and if another drive does work with the same Mac, then the drive has failed. You may be able to salvage the mechanism by removing it from the enclosure and installing it in another one, or in a drive dock.

  • How can i fix my microsoft word starter? im getting a click to run configurat​ion failure.

    I have an HP Notebook 2000 with Windows 7 operating system.

    Thank you for the link. The problem is solved now. Word cancelling shut down was caused by EndNote's "cite while you write" function. I've disabled it now and Word works fine.
    The thread is at the following link:
    http://www.officeformac.com/ms/ProductForums/Word/10737/1

  • How to have a runtime error or failure cause all executions to stop and cleanup

    I am using batch parallel mode.  It's easy enough to terminate or abort all executions from SequenceFilePostStepRuntimeError using IEngine.TerminateAll() and .AbortAll(), but I would like to be able to set an error on all my running executions and cause them to run cleanup when I encounter an error on ANY of the test socket executions.
    Anyone have an example of how I might do this?
    Thanks,
    Jake

    I did something like this for a failure handler once... and looking through my code I think the biggest headache is to realize that one execution socket has no easy way of seeing the execution references for other sockets.  These things are kept by the process model's top level execution... which you also don't have a super easy time accessing without tweaking some logic in your Model file.
    (1)Somehow or another you want to get access to the "TestUUTs"/"SinglePass"  Fileglobals.TestSocketExecutions[] array and make use of it in your classic RuntimeError callback.  The easiest solution (but not the most elegant) would be to edit your model to copy/clone the file global into someplace more convenient... ie "TestUUTs - TestSocketEntrypoint".
    (2) in your error callback, handle your error as usual i.e. tell top level sequence to go to cleanup etc. but also loop through the other execution references and do some variation on GetSequenceContext() and setting Runstate.sequenceErrorCode and the rest.  The example api calls below are probably overkill...
    Locals.currentExeContext=Locals.currentexecution.AsExecution.GetThread(0).GetSequenceContext(0, Nothing) 
    Locals.currentExeContext.AsSequenceContext.SequenceErrorCode=Locals.RecievedError.Code,
    Locals.currentExeContext.AsSequenceContext.SequenceErroroccurred=Locals.RecievedError.Occurred,
    Locals.currentExeContext.AsSequenceContext.SequenceErrorMessage=Locals.RecievedError.Msg,
    Locals.currentExeContext.AsSequenceContext.ErrorReported =True, Locals.currentExeContext.AsSequenceContext.GotoCleanup =True
    I'm using "Locals.RecievedError" as my error buffer in this case because it made sense to me to modifiy the error text to include which socket actually had the error (since now it's propigated to all sockets).
    Locals.RecievedError.Msg=Parameters.Step.Result.error.msg+" Occurred on Socket#"+Str(RunState.TestSockets.MyIndex)
    or something like that...
    Was this what you were looking for?  If you're really stumped and can tell me what version of TS you're using, I'll try and extract an example from my old code that you can use, but hopefully this helps.
    Cheers,
    Elaine R.
    www.bloomy.com

Maybe you are looking for

  • How do I get spouses and children on to printed labels and envelops?

    I store spouses and children in the fields provided for these names. When I go to print labels, Address Book puts the primary name and one randomly selected child name on the first line. So if the person is Jane Smith, I have her spouse listed as Joh

  • Transferring e-mail from 10.4.11 to 10.5.8

    How do I transfer e-mail files from my iMac G3 using 10.4.11 to an iMac G5 using system 10.5.8? E.g., is there a way to transfer by ethernet connecting the two computers? I tried before but the newer OS won't accept the Mail application from the 10.4

  • New user coloumn with user variable input

    Hi, I want a user defined coloumn in a new Query for Report and also it should prompt for user defined values. Case scenario. In a report for stock status ( Qty, rate , Total etc.) i need a new column " Forex Rate"  which should prompt user to put ex

  • How can I publish an iBook for a client?

    I'm a designer and I have a friend that would like to publish his book for the iPad. What is the best way to go about this?

  • Trigger in SQL Server

    hi, Scenario : Insert into a table triggers a stored procedure on my DB (SQL 2000). Question: Will the calling thread which initiated the insert wait for the stored procedure to end or will it make this as a back end process and return doing the inse