PowerCLI 6.0R2 bug with Import-Module-prefix?

Yesterday I installed a couple of nine Win2012R2 servers and of course installed PowerCLI 6.0R2.

In order to avoid multiple commands with the same name, we use the--Prefix setting for the modules. It worked great in R1 but I am facing problems with R2.

Load the modules with code below:

$VMwareModules = 'VMware.VimAutomation.Core', 'VMware.VimAutomation.Vds'

foreach ($Module in $VMwareModules) { }

if (! (Get-Module | ? {$_. (({Name -eq $Module})) {}

Try {

Import-Module -Nom $Module -Prefix "VMW"

}

Catch {

$ErrorMessage = $_ . Exception. Message

breaking

}

}

}


When running Get-Module now the modules but show the Basic module shows all ExportedCommands (which he did in R1).

Basic modules shows too, now that 'script' instead of 'manifesto', as in R1.

Not sure if this has anything to do with this.


If we compare the number of orders 'Raphael' in R1 and R2, missing 300 orders for the Basic module in R2.


Is this a bug? Is there a solution?


R2:

PS C:\ > get-module

Version of Moduleinfo name ExportedCommands

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

Script Initialize-VMware_VimAutomation_Vds 0.0

Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Computer, Add-Content, Checkpoint-Computer, Clear-Con...}

Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Add-Member, add-Type, Clear-Variable, Compare-Object...}

VMware.VimAutomation.Core script 6.0.0.0

Clear VMware.VimAutomation.Sdk 6.0.0.0

6.0.0.0 binary VMware.VimAutomation.Vds {add-VDSwitchPhysicalNetworkAdapter, add-VDSwitchVMHost, E...

PS C:\ > get-vitoolkitversion

PowerCLI Version

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

VMware vSphere PowerCLI 6.0 Release 2 build 3056836

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

Component versions

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

VMWare AutoDeploy PowerCLI component 6.0 build 2358282

VMWare ImageBuilder PowerCLI component 6.0 build 2358282

VMware vSphere PowerCLI component 6.0 build 3052101

VDS's VMware PowerCLI component 6.0 build 3052101


PS C:\ > (get-command * vmw *) .count

33


R1:

PS C:\ > get-module

Version of Moduleinfo name ExportedCommands

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

Script Initialize-VMware_VimAutomation_Vds 0.0

Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Computer, Add-Content, Checkpoint-Computer, Clear-Con...}

Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Add-Member, add-Type, Clear-Variable, Compare-Object...}

VMware.VimAutomation.Core manifesto 6.0.0.0 {Add-PassthroughDevice, add VirtualSwitchPhysicalNetworkAd... }

Clear VMware.VimAutomation.Sdk 6.0.0.0

6.0.0.0 binary VMware.VimAutomation.Vds {add-VDSwitchPhysicalNetworkAdapter, add-VDSwitchVMHost, E...

PS C:\ > get-vitoolkitversion

PowerCLI Version

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

VMware vSphere PowerCLI 6.0 Release 1 build 2548067

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

Component versions

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

VMWare AutoDeploy PowerCLI component 6.0 build 2358282

VMWare ImageBuilder PowerCLI component 6.0 build 2358282

License of VMware PowerCLI component 6.0 build 2315846

VMware vSphere PowerCLI component 6.0 build 2548068

VDS's VMware PowerCLI component 6.0 build 2548068

PS C:\ > (get-command * vmw *) .count

12 p

Hello

First of all, I must say that you are right. This is a regression introduced in 6.0 R2 caused by updates in the manifesto of the module which target to attack another bug. Let me give you more explanation in detail on the specifics of the module VMware.VimAutomation.Core.

Binary VMware.VimAutomation.Core is always snap-in in 6.0 R1, 6.0R2 and 6.0 R3. Which is related to internal constraints that will be overcome in the next version and the binary file is converted to module as it should.

As binary VMware.VimAutomation.Core is pluggable PowerCLI makes it look like a module declaring a manifest module which load the snap and load so its commands to load this module 'false '. The VMWare.VimAutomation.Core module so manifest module powershell that refer to a script that loads the binary VMWare.VimAutomation.Core snap. Script files, the manifesto and that loads the snap are in the module folder: '\Modules\VMware.VimAutomation.Core '.

Now the problem you face is that, in 6.0R1, the script that loads the snap was referenced in NestedModules module manifest, which means that all orders imported as nested module are imported into the scope of the module session. This makes the component controls snap to consider as a command module and that's why your use case has worked with 6.0R1. The problem with this is that if someone calling Remove-Module command for this module it deletes the orders of the current session, and if Import-Module is called again in the same session, that it will fail with an error "The VMware.VimAutomation.Core is already added," so no commands are loaded once the module is removed from the current session. Because of this bug, we decided not to reference the script component snap load in NestedModules but in ModulesToProcess of the module manifest. When it is referenced in the ModulesToProcess that makes the script commands to be loaded in the scope of global session which means that these commands are removed from the session when Remove-Module is called and if Import-Module is called once again he will not fail because the module manifest try again to load the sanp-in. When the controls are respectively in the context that they are not affected by the specification of modules and that is why they cannot be imported with the desired prefix you want.

To be honest we didn't know this side effect when we discussed the initial bug with Remove-Module. All these problems will be solved in the next PowerCLI release when binary VMware.VimAutomation.Core will become the module. Until then, I suggest you workaround with fixation of the VMWare.VimAutomation.Core manifest file. To do this you have need open and change of \Modules\VMware.VimAutomation.Core\VMware.VimAutomation.Core.psd1

the following way:

1. set ModuleToProcess on a string is empty

2. put NestedModules to @('VMware.VimAutomation.Core.ps1')

This will make the module to behave in the same way as 6.0R1

Kind regards

Dimitar Milov

Tags: VMware

Similar Questions

  • Import-Module via a scheduled task results in different $env: modulepath

    Just upgraded to PowerCLI 6.0 R3

    Anyone encountered this?  I was updating my scripts of scheduled to begin importing the module rather that to add the snap-ins, but for some reason when Task Scheduler is running scripts, it basically-error w / unable to find valid module.

    When the position of Scheduler task as service account runs it, $env: modulepath looks like this:

    C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;D:\Program files (x 86) \Microsoft SQL Server\110\Tools\PowerShell\Modules\; C:\Dell_PSCmdlets; C:\Program Files (x 86) \AWS Tools\PowerShell\; C:\Program Files (x 86) \Microsoft SDKs\Azure\PowerShell\ServiceManagement


    When I run interactively as service account, I noticed that the module is properly in the modulepath environment variable.

    C:\Users\svcLDAPVMware\Documents\WindowsPowerShell\Modules; C:\Program Files\WindowsPowerShell\Modules; C:\Windows\System32\WindowsPowerShell\v1.0\Modules\;D:\Program files (x 86) \Microsoft SQL Server\110\Tools\PowerShell\Modules\; C:\Dell_PScmdlets. C:\Program Files (x 86) \AWS Tools\PowerShell\; C:\Program Files (x 86) \Microsoft SDKs\Azure\PowerShell\ServiceManamanagement; D:\Program Files (x 86) \VMware\Infrastructure\vSphere PowerCLI\Modules

    I thought about it.  The Task Scheduler service is not actually update the path of the module variable until it is restarted.  If anything like that launched by there only everything that is entered in the modulepath @ start time system.  Installation PowerCLI 6.0R2 aftermath, fills all new sessions, just not all that has been actively running in time.

    I had to reboot the virtual machine to the Task Scheduler picking up the new addition to the modulepath of the system.

    It was specifically related to Windows 2008 R2, do not know if the versions are affected.  In any case, hope this is helpful to anyone who may run into the same situation.

  • With the help of 31.3.0. Crashes in safe mode - sending, man of add-on, using help/restart with deleted modules, or in 3 minutes, regardless of the first opening. Reinstalled 2 x.

    Hello. I use 31.3.0. and it hangs in safe mode or in normal mode under one of these conditions: - in 4 minutes - after sending, - add-ons - to help restart/help with opening modules removed Manager. I have reinstalled twice. Yosemite in a day. So I can't install viewabout and am unable to disable the Add-ons before crashing. I don't remember installing add-ons, but they seem to be a common source of accidents, so maybe I did. But... can't watch. Can I worry please someone for a suggestion? Thanks for any help!

    Hi rbfreemontana, I'm not very familiar with Thunderbird crashes, or the Mac platform, but I noticed that, just before the crash that Thunderbird tried to run this called 'fbplugin' and there is a corresponding bug report referring to the "Facebook Photo Uploader' of problems on Yosemite. You will find this add-on and either disable or delete it?

  • Problem with the module "Automation" in WindowsAzure

    Top: Problems with the module used "Automation" service "WindowsAzure.

    Hello!

    I really need your help to decide my problem of "Azure Automation". My boss has set a task for the 'Automation' module allows you to make a backup of Virtual Machines.

    To understand my problem, I do the next:

    1. describe the situation of all;

    2. describe the problems that appear in this situation;

    3. my conclusions.

    In addition, I am attaching the necessary information: my PS-scripts (from Windows and the automation of azure), log (with my notes) and screenshots (images with my notes) see file .rar Add_info (annex).

    1 description any situation

    For our development projects, we have several Virtual Machines on service cloud "WindowsAzure. We need to make backups of discs with Virtual Machines each week. Earlier, for this task, I used Windows PowerShell on my computer and my PS-script (see Ann 0 - VM (backup) of the WPS_snapshot). I created a new storage 'backupstor' and containing 'snaps-drive '. When I run PS-script with my computer, I have backup of disks virtual Machin in the container "snaps-disk", without problem.

    Now I have a new task "automatically make the process of creating backup of Virtual Machines (VM snapshots). I tried to use automation module (overview). Can I change my PS script for the 'Automation' module and create folders (see Ann 1 - records (make backups of virtual machines) _Azure_Automation).

    I need to make a backup of Virtual Machine 'bosard' in the cloud 'cloudnet. "Bosard" on the disc size ~ approximately 90 000 000 000 bytes (total size of the default drive size 127 GB/136 367 309 312 bytes)

    2. description of the problems that appear in this situation

    My steps:

    1. I start files to make a backup of Virtual Machine disk (see annex 1 - files (make backups of virtual machines) _Azure_Automation))

    2. it starts successfully and generate the name of backup 1 (blob) - snapshot-bosard - osdisk_07.10.2014_07h00m39s.vhd (see image 1 - start copy backup 1 and annex 2 - log file copy process)

    3. the process of backup copy 1 (blob) will...

    Problem 1:

    4. the process of backup copy 1 (see Appendix 2 - process log file copy) automatically stops and complete to copy the part 1/3 bytes copied 28311552000only. Important: The size of my virtual machine disk ~ on 90 000 000 000 bytes.  (Maximum possible) of total capacity of the disk where the Virtual Machine is used - 136 367 309 312 (127 GB). (See picture 2 - stop backup copy 1)

    5. I have Virtual size 1 backup - 28311552000bytes, when the size of my VM - 90 000 000 000 / 136 367 309 312 bytes.

    Problem 2:

    6. after the termination of the process automatically makes copy backup 1, records (see annex 1 - files (make backups of virtual machines) _Azure_Automation) automatically start (see picture 2 - stop backup copy 1) and folders automatically create new snapshot Backup 2 - name - bosard - osdisk_07.10.2014_07h31m33s.vhd (see annex 2 - process log file copy, image 3 - stop the copy backup 1 & Begin copy backup 2 and 5 - backupStore_Azure (process)of image)

    7. I pressed "stop" and stopped the process of copy and folders (picture 4 - I stopped the process of creating backup 2 & records). And how result I had size Backup 1 and 2 = 0 bytes (see image 6 - backupStore_Azure (I order records))

    Note:

    1 problem 1: the process of backup of virtual machine does not complete and stops automatically.

    2 problem 2: the process of creating new second backup starts automatically. And as a result, we do not have the backup of virtual machine, when I use the 'Automation '.

    3. my conclusions

    I think that:

    1. my PS script for Automation (files) is not correctly. Then I need your help, how to fix this.

    2 may be the module "Automation" is not working correctly. And the module 'Automation' needs repairs and settings.

    In addition, I am attaching the necessary information (see the Add_info (annex) .rar file):

    Ann WPS_snapshot 0 - VM (backup)

    Ann 1 - records (make backups of virtual machines) _Azure_Automation

    Ann 2 - log file copy process

    image 1 - start the copy backup 1

    image 2 - stop copy backup 1

    image 3 - stop copy backup 1 & Begin copy backup 2

    4. I stopped the image create backup processes 2 & records

    image 5 - backupStore_Azure (process)

    image 6 - backupStore_Azure (I order records)

    Thank you

    Kind regards

    Mikhail

    Hello

    You can get the assisted support from the following link on this point:.

    http://azure.Microsoft.com/en-us/support/options/

  • Cube Essbase de-disposition with import/export utility

    I am trying to set up a strategy of short downtime with Essbase cubes in 9.3.1.4 (using Shared Services) in which I do the following:

    1. build the DemoX cube while the demo is accessed by the user database
    2. once DemoX is built, and rename the demo Deroy
    3 Rename DemoX in demo
    4 rename amel DemoX

    The issue is that cube demo must have supply group at the base of users, while the DemoX should not be visible.
    Security during the steps to rename page layout looks like this:

    1 demo: user Prov.
    DemoX: develop Prov.

    2 Deroy: user Prov. (rename demo)
    DemoX: develop Prov.

    3 DemoX: user Prov. (rename of amel)
    Demo: develop Prov. (rename of amel)

    Using the CSSExport.bat utility, I created an xml with the commissioning document correct demo and DemoX BEFORE I went through the name change process.
    The demo shows the provisioning of user base group and DemoX has only development supply group. I analyzed only the sections of the XML provisioning group and created new documents to xml for import.

    Once the name change is done, I was able to use the utility CSSImport to grant groups of user base for the 'new' cube demo - it works very well.
    However, I need to remove the core group of users commissioning of the 'new' DemoX cube.

    When I use the CSSImport.bat and the property of 'delete' in the file importexport.properties, it does not remove the user base groups in the DemoX cube. Not only that, but it makes the security of the cube in a State where it won't refresh more security of shared services (if I have the provision of Shared Services after CSSImport/delete, the SS will show as out put in service, but Essbase won't remove groups - even after a refresh of the SS). I am forced to delete the cube DemoX and re-create it so that safety will work correctly between SS and Essbase.

    Anyone know if you can supply out of a cube by using the CSSImport.bat statement in conjunction with the statement "delete" in the importexport.properties file? I don't know if I'm running into a bug with the software, or try to use the import/export utility incorrectly. The utility manual seems to indicate that you should be able to available.

    Thank you!

    Yes, I have installed Shared Services and Essbase is recorded in the SS. You can change the security always with MAXL, the only thing you need to do in Shared Services is available to access Essbase server to the user or group (we only use external LDAP groups). I usually configure the Essbase server access and a read access to groups, then use scripts to change.

    I run 2 scripts, one to prepare the database for loading, the second which renames the reporting and renames it the newly loaded data.

    It is a sample of the second script.

    change demo application disable connects;
    modify the application of the system of unloading demo;
    change demo application and rename Deroy;
    modify application Deroy enable links;

    grant no_access on request Deroy to 'Group_Read ';
    grant read on the database DemoZ.DemoZ to 'Group_Review ';

    modify application DemoX disable links;
    modify the application of the DemoX unloading system;
    modify the DemoX application and rename the demo;
    change enable demo application links;

    grant read on the database Demo.Demo to 'Group_Read ';
    grant read on the database Demo.Demo to 'Group_Review ';

    I have 2 groups, the review group can see both. Read can see a. I use 3 names as you do, but only 2 exist at the same time.

    Script1
    Deroy rename DemoX

    Script2
    Demo rename Deroy
    Rename DemoX demo

  • Bug with the donation page today

    You have a bug with your fundraising page. I have selected $10 and transferred to Paypal to $3. I tried again and made sure to click twice on a $10. I got the same results. I thought you should know.

    Hi el_nik,
    I filed a bug to prosecute for the page to donate. However can you please confirm that this always happens after that you remove the cookies from the page?

  • How can I restart you with active modules (Normal mode)?

    I clicked on restart with disabled modules. Success.

    Then I tried to restart with the active modules - but it is not an option for that. I expected "Restart with disabled modules" have changed to 'Restart with active modules', but it didn't.

    It is not possible to activate them manually.

    Grateful for any help, urgent if possible! Thank you.

    If you went to help-> restart with Add-ons disabled, that puts you in Mode without failure of Firefox used for troubleshooting. All you have to do is to close Firefox then open a new instance of it.

  • Where is the help on the topic: "restart with disabled modules.

    In aid of the menu choice "restart with disabled modules" is trying to find out what would be the consequences of this command, but I can't get any result on this SPECIFIC command. If I try, I definitely will disable my Add - ons?

    I have to ask this question because I've had nothing but problems with Mozilla Addons lately, especially the themes.

    I'm tired of Firefox

    Basically what the restart with disabled modules is it closes your Firefox and them it opens in safe mode, which is a temporary mode where all add-ons are disabled, and the settings are set to their default values. It helps you to be able to test and see if your question is without third-party variable. Then, when you close and restart firefox, it starts as before without Add-ons.

    Questions to troubleshoot Firefox in Safe Mode is an article that explains a bit more.

    What problems with modules you meet specifically?

  • Bug with high speaker on the Satellite C650-144 with Window 7

    I have a bug with my high speaker, so I download driver leatest and nothing has changed.
    But when I use the jack slot it works and when I put it and when I go to the speaker icon in the windows taskbar there is 'activity' because the level moves, but there is no probe on my high speakers.

    For windows everythings works fine, so I don't know what I have to do...
    I went on the Internet on the forum, but there is no solution for my problem!

    Please help me!

    My computer references are: Satellite C650-144 and PSC08E-01100DFR
    Please excuse me for my English...

    Thank you very much!
    Friendly
    aldebordeaux

    Hello

    Simply said; You can listen to the sound using headphones, but can not hear the sound on the speakers. Right?

    Have you noticed this early? Have you installed a few 3rd party applications may affect the functionality of speaker? Maybe some Windows updates can affect this?

    Please check the settings in the control panel-> sound-> the Read tab

    As a last resort, I recommend for recovering the device I want to say, it looks a bit because of speaker, but I strongly recommend to test the laptop with the factory settings.

  • I have a problem with importing photos from iphone to photo

    I have a problem with importing the photos from the iphone to the photos. I have the OS X El Capitan 10.11.1

    It seemed to me that I can't push the button import. It is grayed out.

    Your picture-click the camera icon to add a picture

    How the phone is connected?

    LN

  • Bug with mechanical locking Action?

    I think that there is a bug with the Action of mechanical latch Boolean: lock releasing in LabVIEW 2010 when the Boolean value is in a cluster with a cluster as one of the things in the cluster.

    For example if a cluster contains the following Boolean not begin properly when the cluster is read.

    1 cluster with a digital command.

    2 boolean with the mechanical Action on the latch.

    I have attached a vi that shows this.

    Instructions

    Press the ok button in the vi.

    Then, run the vi.

    Notice how the light comes on, but the ok button remains pressed.

    This only seems to happen in LabVIEW 2009, that's why I think it's a bug. Also if you rearrange them controls for the Boolean control is before the cluster, it will work as expected.

    Anyone confirm what is happening?


  • County of the edges of the AI of signals with the module 9221

    Hello

    I'm counting the edges of a signal to HAVE acquired with a module 9221 on a cDAQ. The average rate is about 1 kHz.

    I'm with 10 kHz signal acquisition, but do not get the right amount of edges.

    Is there a solution for this problem. I know, of course, it would be easier to use a CTR-modul but my signals does not match the plug.

    Thanks for any help

    Yves

    Hi Yves,

    There is a method to count planking of an analog input. See the link

    http://digital.NI.com/public.nsf/allkb/B472ABA1362F44328625729C0041A8B1?OpenDocument

    I hope this will help you.

    Best regards

    Sascha Egger

    Technical sales engineer

  • Problems with importing video camera mini dv JVC

    I turn on my camera and put it on the playback mode. I have IE 1394 plug in my port on the camera and the pc. I open windows dev and click Import from digital video camera. A noise of error made. A message appears "import video is already launched and running on this computer. You cannot start another instance of import video until the first instance has stopped. To correct this issure, wait for the video to be import, close import video, wait a second w fe then start import video. »
    I'm doing this, but I know that I do not have started to import anything. I can sit there all day and wait and try again and again and the same message appears. I also tried to restart the pc and start the process again. Same thing is happening. I tried on my friends laptop same thing occurs. I recorded it before on a destop with another type of fire wire but my laptop cannot use the 1394 cable.

    I turn on my camera and put it on the playback mode. I have IE 1394 plug in my port on the camera and the pc. I open windows dev and click Import from digital video camera. A noise of error made. A message appears "import video is already launched and running on this computer. You cannot start another instance of import video until the first instance has stopped. To correct this issure, wait for the video to be import, close import video, wait a second w fe then start import video. »
    I'm doing this, but I know that I do not have started to import anything. I can sit there all day and wait and try again and again and the same message appears. I also tried to restart the pc and start the process again. Same thing is happening. I tried on my friends laptop same thing occurs. I recorded it before on a destop with another type of fire wire but my laptop cannot use the 1394 cable.

    ==========================================
    Maybe the following will help:

    Windows Vista-
    Import video from a videotape
    http://Windows.Microsoft.com/en-us/Windows-Vista/import-video-from-a-videotape

    Import video in Windows Vista
    http://maximumpcguides.com/Windows-Vista/import-video-in-Windows-Vista/

    Download video from your camera to your computer
    http://www.Microsoft.com/windowsxp/using/MovieMaker/getstarted/DLmovies.mspx

     
    Windows Vista-
    Importing files into Windows Movie
    Manufacturer: Frequently asked questions

    John Inzer - MS - MVP - Digital Media Experience - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • MMC.exe crashes with the module failed Ntdll.dll.

    Original title: certmgr falls down to the personal certificate

    Hello

    a machine that has problems of management certificate gives me a time difficult.

    If I go to the personal certificate store and try to reregister a certificate the mmc.exe hangs with the module failed Ntdll.dll.

    The dll in System32 and Syswow64 are all two ok (digital signed)

    This problem happens in my profile and created a new.

    I have the Code 0 x 0000005

    The windows error report looks like this

    ==================================================
    File: mmc.exe
    Event name: has stopped working
    Time of the event: 29.07.2014 08:39:31
    Username: all users
    Exception code: 0xc0000005
    Exception offset: 0x000ccf63
    Fault Module name: ntdll.dll
    Fault Module Version: 6.1.7601.22436
    Path of the process: C:\WINDOWS\system32\mmc.exe
    Size of the report file: 20.428
    Report file path: C:\Users\All Users\Microsoft\Windows\WER\ReportArchive\AppCrash_mmc.exe_e8911f92836e49f026e82e5d30397fcc5e52eb60_cab_1db860b6\Report.wer
    ==================================================

    ==================================================
    File: sbus.exe
    Event name: has stopped working
    Time of the event: 28.07.2014 16:32:37
    Username: C5160554
    Exception code: 0xc0000005
    Exception offset: 0xdbdbdbdb
    Fault Module name: StackHash_0a9e
    Fault Module Version: 0.0.0.0
    The process path: C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\bin\sbus.exe
    Size of the report file: 6.004
    The report file path: C:\Users\C5160554\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_sbus.exe_446dd3b92ed2638c6f931bd393315bd4d6278_1ec49be1\Report.wer
    ==================================================

    Hello

    I discovered that there was another DLL loaded by filtering with ProcMon - this DLL is part of the SSO framework already uninstalled. After cleaning the residue, it did not crash more.

    Best regards

    Mr. Snipes

  • Windows service crashes with failing module NTDLL. DLL

    I have a Windows service (Controller.exe) written in .NET 3.5 SP1, which runs on 2008 R2. The service blocks with the following entry in the event log:

    Name of the failing application: Controller.exe, version: 0.7.0.1424, time stamp: 0x50d232dc

    The failed module name: ntdll.dll, version: 6.1.7601.17514, time stamp: 0x4ce7c8f9

    Exception code: 0xc0000374

    Offset: 0x00000000000c40f2

    ID of the process failed: 0 x 2048

    Start time of application vulnerabilities: 0x01cde94e239bd028

    The failing application path: K:\Weeden\Worms\Weeden.Worms.Controller.exe

    The failed module path: C:\Windows\SYSTEM32\ntdll.dll

    Report ID: 06f96576-55a2-11e2-8097-d8d385bcce80

    There is nothing in the app logs to indicate that the application has been done nothing at the time wherever it crashed. He has done a few times before (but seldom - once every two weeks or more).

    The only entrance at the time of the error is the one where it says The Windows Error Reporting Service service entered the running state. But I suspect that it is just to log the crash.

    Can someone please advise on the issue?

    Thank you!

    Hello

    Thanks for posting your question in the Microsoft Community Forum.

    According to the information, you're faing questions about Windows Server 2008 R2, Windows Service hangs with NTDLL module failed. DLL.
    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums for further assistance. . You can follow the link to your question:

    Technet Windows Server general forums

    Using the windows-related issues feel free to post on the Microsoft Community Forum.

Maybe you are looking for