Event 129 Source "storahci" in Win8RTM

I'm having log entries for event id 129 from source "storahci" ("Reset to device, \Device\RaidPort0, was issued.") in Win 8 RTM Enterprise (MSDN) on a Dell Precision M4500 with SSD OCZ-AGILITY3.
These entries are in correlation with event id 153 from source "disk" ("The IO operation at logical block address ... for Disk 0 was retried.").
I already saw a thread reporting this issue at "http://answers.microsoft.com/en-us/windows/forum/windows_cp-performance/windows-8-unresponsive-with-disk-reported-at-100/d4cf6b80-635e-4359-99ec-b9d453e731ee?page=2", but that thread is marked as "closed" with
the remark "This thread applies to Windows 8 Consumer Preview. The thread is locked because the information in it might not be relevant or accurate as new versions of Windows 8 become available."
Was anybody already able to fix that issue?
Since this is the second SSD with that issue (the previous was one from Corsair), I cannot recommend running Windows 8 RTM on a laptop with an SSD installed, what makes me really sad.

The BIOS is most likely set to RAID for sata operation. That would require that the Intel RApid Storage drivers from Dell
here for the M4500 be added during a clean installation at the select a partition stage, ADD Drivers and point to the files on external storage media. Win 7 only available at this time from Intel or Dell.
The RTM may not have those in-the-box yet. Intel will provide those to MS later. Win 7 has those.
So, I would say that you could try an F8 repair mode to add drivers or you may have to reinstall again to add the drivers.
Any joy?

Similar Messages

  • System Event ID 129 source vhdmp

    Hi All, i have a DC running Windows 2008 R2 and lately i have noticed the errors listed below which are being logged in the system log every 30 seconds! I have Windows Backup scheduled to backup the system state every night at 8pm. Please see below log and
    help if you can. This questioned was posted previously but the answer given was to do with Filters in the registry and nothing to do with this particular error. Thank you all in advance.
    Log Name:      System
    Source:        vhdmp
    Date:          25/02/2012 02:30:43
    Event ID:      129
    Task Category: None
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:      MYSEDC.company.com
    Description:
    The description for Event ID 129 from source vhdmp cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    \Device\RaidPort2
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="vhdmp" />
        <EventID Qualifiers="32772">129</EventID>
        <Level>3</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2012-02-25T02:30:43.559509300Z" />
        <EventRecordID>38439</EventRecordID>
        <Channel>System</Channel>
        <Computer> MYSEDC.company.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>\Device\RaidPort2</Data>
        <Binary>0F001800010000000000000081000480040000000000000000000000000000000000000000000000000000000000000000000200810004800000000000000000</Binary>
      </EventData>
    </Event>
    mcsa

    Hi Mohammed, thanks for replying.
    I have looked at both those posts the 1st one from "APLCMUL" only responds to the second potion of the original post which deals with filtering and forgets about the original 129 id.
    The second suggestion from "Prem.Kr" has no solution mentioned, Prem.Kr only says he has resolved the issue but does not care to share the solution. if you look at the post right at the bottom from Mark Reynolds touches on Nics of which mine are all up to
    date and since its a DC all replication etc is working perfectly well.
    Thanks a lot for suggesting the above but for now they have not reslved my issue.
    Welligton Vambe MCITP

  • Double click event to source code

    hi all
    What im trying to do is when someone clicks one of the keywords in the tree browser file that it takes them to the source code window and to that method or variable the clicked. For exaple lets say have 2 windows, on the left side is just a list of methods and variables and ont he right hand is the window which u can see the source code. What i need is that when someone click on a method name on the left window, it will take them directly to that method name in the source file window (right window).
    public void mouseClicked(MouseEvent e)
    Any ideas what i need to do??
    Maybe it will help if i copy and paste the code of the [b]left window.
    import java.util.Observable;
    import antlr.collections.AST;
    import java.awt.Font;
    import java.awt.event.*;
    import java.awt.event.MouseEvent;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    import javax.swing.border.TitledBorder;
    public class FileContentPanel extends ModulePanel {
        private ProgramModel model;
        private JTree contentTree;
        private APIViewer api;
        private SourceViewWindow view;
        private Formatter format;
        private FileTree tree;
        private JPopupMenu menu = new JPopupMenu();
        private JMenuItem viewmenu;
        /** Creates a new instance of FileContentWindow */
        public FileContentPanel(ProgramModel model, APIViewer a) {
            super(model, "File Contents");
            this.api = a;
            createPopupMenu();
            contentTree = new JTree() {
                public String getToolTipText(MouseEvent evt, ActionListener l) {
                    if (getRowForLocation(evt.getX(), evt.getY()) == -1)
                        return null;
                    TreePath curPath = getPathForLocation(evt.getX(), evt.getY());
                    DefaultMutableTreeNode highlighted = (DefaultMutableTreeNode)curPath.getLastPathComponent();
                    Object userOb = highlighted.getUserObject();
                    String ret=highlighted.getUserObject().toString();
                    if (userOb.getClass()==JavaMember.class)
                        ret=((JavaMember)userOb).getSignature();
                    else if (userOb.getClass()==JavaClass.class)
                        ret=((JavaClass)userOb).getSignature();
                    return ret;
            DefaultTreeCellRenderer renderer = new DefaultTreeCellRenderer();
            ImageIcon file = new ImageIcon(Prototype.class.getResource("images/source.gif"));
            renderer.setLeafIcon(file);
            contentTree.addMouseListener(new PopupTrigger());
            contentTree.setCellRenderer(renderer);
            contentTree.setToolTipText("");
            contentTree.setFont(new Font("Arial", Font.PLAIN, 11));
        private void setTree(JavaFile f) {
            ((DefaultTreeModel)contentTree.getModel()).setRoot(f.buildTree());
            getScroller().getViewport().add(contentTree);
        public void update(Observable o, Object arg) {
            setTree((JavaFile)arg);
        public boolean canViewAPI(DefaultMutableTreeNode node) {
            return (!node.isRoot() && node.getParent().toString().equals("imports"));
        private void createPopupMenu() {
            Action viewAPI = new AbstractAction("View API") {
                public void actionPerformed(ActionEvent e) {
                    DefaultMutableTreeNode node = (DefaultMutableTreeNode)contentTree.getSelectionPath().getLastPathComponent();
                    if (node != null)
                        api.viewAPI(node.toString());
            viewmenu = menu.add(viewAPI);
        class PopupTrigger extends MouseAdapter {
            public void mouseReleased(MouseEvent e) {
                maybeShowPopup(e);
            public void mousePressed(MouseEvent e) {
                maybeShowPopup(e);
                //tree.getTree();
               // System.out.println("U are nearly there");
             public void mouseClicked(MouseEvent e)
               System.out.println("jknxncnnxzv");
            private void maybeShowPopup(MouseEvent e) {
                if (e.isPopupTrigger() ) {
                    int x = e.getX();
                    int y = e.getY();
                    TreePath path = contentTree.getPathForLocation(x, y);
                    if (path == null)
                        return;
                    contentTree.setSelectionPath(path);
                    contentTree.scrollPathToVisible(path);
                    DefaultMutableTreeNode node = (DefaultMutableTreeNode)path.getLastPathComponent();
                    if (node != null) {
                        viewmenu.setEnabled(canViewAPI(node));
                    menu.show(contentTree, x, y);
    Cheers

    Does JavaClass contain the list of JavaMembers? If so, and if it is supposed to reflect the current state of the file that is open on the right hand side, then it should probably have methods to get the line and column number for the start of the contained JavaMembers. If you can figure out how to keep that in sync, you should be able to query it directly and set the cursor position.

  • Accidentally split 2 events, now "source clip missing" in my project, HELP!

    Ok, so I've been working for weeks on a project, and I accidentally split an event into 2 events. Dumb I know, but I was trying to split a single clip. Anyway, it split the event and made 2 new events. I tried to "undo" but for some reason it didn't work. Now alot of the clips say "source clip missing". I looked in the trash and found my missing original event folder, but it's empty cos all the videos are still in the event, but under the 2 new events. I tried to put the folder back into imovie, I re-merged the 2 split events and renamed it the original name (after someone on a forum suggested this) and nothing works. I am freaking out! It is crazy cos all the video is still there (at least I think it is). Does anyone have any suggestions? Thanks!!!

    Thank You Sameer. It worked. Now I can close this issue.
    Regards,

  • Event Viewer source name mistake

    I recently had a Master Browser error. The source says bowser not browser - Windows Operating System; Version: 6.1.7600.16385; Event ID: 8003; Event Source: bowser

    I'm curious as to whether or not you have any language packs installed? The only thing (well not the ONLY thing) I could find relates to really old servers/OS's like this KB article http://support.microsoft.com/default.aspx/kb/188001  but I haven't seen those types events in years. Here's some other comments that may shed some light on your situation since you didn't exactly tell us your network setup.
    This problem occurs when network logon validation is prevented over a network switch. The network switch prevents the server from authenticating the client. The two-way communication session necessary for logon validation is prevented. The Windows NT client computer that cannot successfully communicate with the Windows NT server acting as the subnet master browser may cause a browser election, which causes this error to be registered on the PDC.
    As per Microsoft: "The subnet mask of the Windows 2000 client computer is incorrect or is different from the primary domain controller. The client computer has attempted to promote itself to the master browser of the subnet and has failed because only one computer in a domain can be running as the master browser".
    The subnet mask of the Windows 2000 client computer is incorrect or is different from the primary domain controller. The client computer has attempted to promote itself to the master browser of the subnet and has failed.
    To Fix: Change the TCP/IP protocol configuration to the correct subnet mask
    This can also be caused when routers or switches are misconfigured and propagate UDP port 137 and 138 broadcasts. In this case large numbers of event 8003 appear in the event log.
    So if you can tell us more about your network settings, and nothing above works, then by having your settings we can probably come up with a solution for you.
    MCSE, MCSA, MCDST [If this post helps to resolve your issue, please click the "Mark as Answer" or "Helpful" button at the top of this message. By marking a post as Answered, or Helpful you help others find the answer faster.]

  • Fire A Portal Event With Source Id

    Hi All,
    I have this requirement where I need to fire an event from a Web Dynpro iView and a delivered iView (MSS Team Viewer) will receive it.  The problem is the receiving iView (Team Viewer) need the source id parameter which is available in EPCF raiseEvent as an optional fourth parameter but the method WDPortalEventing.fire() method does not have it.  Is there a workaround for populating this parameter?  I wonder why it is omitted in the Portal Eventing API.
    Thanks in advance.
    Erwin

    Hi Julia,
    Yes, you can have 2 users with same uid in 2 different org but then, you must use 2 different authentication module and then your login url must be something like : .../UI/Login?org=yourOrgName
    And then, this organization must have a Auth module.
    Now, for the users, it's better to propose only the good login url.
    ie, we have 5 differents login url based on 5 differents org. I'd change the login provider to alow the user to change its own organisation (with a list box). I've change the file under LoginProvider directory... (JES 2005Q4, Portal 6 : /etc/opt/SUNWps/desktop/default/LoginProvider/display.template
    I think, in Portal 7, you have a jsp provider. Easier ;-)
    a+
    Philippe

  • Event 9217 source MSEXchange Tansport

     I have exchange 2010 and I got error with event number 9217 source MS Exchange Transport 
    More than one Active Directory object is configured with the recipient address
    IMCEAEX-ADCDisabledMail@mydomain. Messages to this recipient will be deferred until the configuration is corrected in Active Directory
    how can fix the problem ?

    Hi,
    From your description, the issue is related to the legacyExchangeDN, I recommend you use the following cmdlet in Windows PowerShell to clear it and check the result.
    Get-ADObject -LDAPFilter "(&(objectClass=user)(objectCategory=person)(legacyExchangeDN=ADCDisabledMail))" -Properties LegacyExchangeDN | Set-ADObject -Clear LegacyExchangeDN
    Hope this can be helpful to you.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Amy Wang
    TechNet Community Support

  • Event logging sources

    Morning,
    In the "Hardening and Security for LC ES Update 1 (Oct 2008) documentation, page 23 "Logging Events".
    How is this performed? How do I setup LC to send events to a OS event source?
    Does anyone have an example of this?
    Thank you,
    Carmen

    hi,
    From your post what i understood is, you don't have a event being triggered or captured even though you ran the event trace during your transaction.
    If you are trying to initiate a work flow with respect to triggering of events and if you don't have any events you need to either of two ways.
    1) Message control--> whenever your transaction you can assign the work flow for every success or failure message
    2) Change pointers or change document objects:
    trigger the work flow whenever there's a update in the tables CDHDR and CDPOS.
    Regards
    Sharath

  • Event triggering sources

    Hi Friends,
    Is there any way to check the sources of event triggering? event trace is not thr..
    Regards
    Dev

    hi,
    From your post what i understood is, you don't have a event being triggered or captured even though you ran the event trace during your transaction.
    If you are trying to initiate a work flow with respect to triggering of events and if you don't have any events you need to either of two ways.
    1) Message control--> whenever your transaction you can assign the work flow for every success or failure message
    2) Change pointers or change document objects:
    trigger the work flow whenever there's a update in the tables CDHDR and CDPOS.
    Regards
    Sharath

  • How to trace the EVENT's source which triggers the process chain

    hello Friends,
    I am currently involved in a new project, which does'nt have any documentation of the system. There is a process chain which is triggered by the event ( say..... "BI_START") and it gets triggered every day night,.......
    But the problem I have is, I could'nt trace where this EVENT gets triggered....
    Can you please advice me  how to trace plz...... Thanks very much for your time.....
    Thanks,

    Check in SM37 or in the tables TBTCO or TBTCP with below selected fields.
    JOBNAME = Background job name
    SDLSTRTDT = Planned Start Date for Background Job
    SDLSTRTTM = Planned start time for background Job
    SDLUNAME = Initiator of job/step scheduling
    PRDMINS = Duration period (in minutes) for a batch job
    PRDHOURS = Duration period (in hours) for a batch job
    PRDDAYS = Duration (in days) of DBA action
    PRDWEEKS = Duration period (in weeks) for a batch job
    PRDMONTHS = Duration period (in months) for a batch job
    PERIODIC = Periodic jobs indicator ('X')
    STATUS = State of Background Job, S = Released, F = Finished
    AUTHCKMAN = Background client for authorization check
    EVENTID = Background Processing Event
    EVENTPARM = Background Event Parameters (Such as, Jobname/Jobcount)

  • Error when trying to format my 22GB SSD

    The SSD originally came partitioned into two volumes. One of them was about 8GB and I have no idea what it was originally used for. The other partition was about 14GB and was used by ExpressCache.
    After formatting the primary partition on the other drive and reinstalling Windows 8.1, I decided to delete the two partitions on the SSD and to instead create a single 22GB partition to be used by ExpressCache.
    ExpressCache was working perfectly until I enabled bitlocker.
    Then the machine started playing up and I later learned that bitlocker was incompatible with ExpressCache. So rolled back the encryption on the main drive and uninstalled ExpressCache. Since I am not going to be able to use ExpressCache with bitlocker, I would now like to format the 22GB SSD with NTFS and assign it a drive letter.
    This is where I have started running into problems.
    Even though I do not have ExpressCache installed or running and I do not yet have bitlocker enabled, windows keeps failing when I try to format the drive.
    I have tried to use a variety of tools to format the drive. All of them get stuck at 0%.
    Tools I have tried include: diskpart, windows format, EaseUS partition manager and MiniTool Partition Wizard
    Various tools I have tried report that the disk is healthy.
    I have used diskpart to remove the partition and create a new primary one.
    When I try to format the partition using diskpart, I get the message:
    "DiskPart has encountered an error: The parameter is incorrect. See the System Event Log for more information."
    The event log reports the following warning as a result of attempting to format the drive:
    Event ID: 129
    Source: storahci
    Message: Reset to device, \Device\RaidPort0, was issued.
    Event ID: 153
    Source: disk
    Message: The IO operation at logical block address d8 for Disk 1 (PDO name: \Device\00000036) was retried.
    Event ID: 129
    Source: storahci
    Message: Reset to device, \Device\RaidPort0, was issued.
    (This last warning will appear four times - roughly 30 seconds apart)
    Is this a driver issue?
    I have tried installing the "Intel Rapid Storage Technology Driver" and then formatting the drive, but it still gets stuck at 0% (this time however it doesn't report any warning in the event log) so I have resorted back to the Standard SATA AHCI Controller
    Does anybody have any suggestions for how I can get some use out of my 22GB SSD?
    It is a Toshiba THNSNX024GMNT
    Much appreciated!
    Solved!
    Go to Solution.

    Check this forum out:  http://forums.lenovo.com/t5/X-Series-ThinkPad-Lapt​ops/X240-SSD-Cache-M-2/td-p/1361827/page/2
    I had a co-worker subscribed to the feed and had someone actually locate the SSD drive...We took it off and we are starting to image as normal now....HAPPINESS once again!

  • No Source List, No Events List - no way to view stored photos

    Hi, When I open iphoto, I see a gray screen and the only photos visible are the ones I downloaded in the last session. There is no tab for "events," no source list, no libraries tab, no way to access any previous events and photos. They are in there somewhere, because when I download again, photos that were stored on the cameras after they were previously download are listed as "duplicates."
    First, why is this happening, and second, if anyone knows how I can gain access to my thousands of previous photos, how can I ensure that the "Events" tabs and Source lists are always visible? Help!
    Thank you for your assistance, Mac geniuses!

    I have just spent the last 4 days trying to figure out where the menu went. I have rebuilt my libraries several times. Gone back in the time machine, etc.. I was blaming my new installation of Snow Leopard and iPhoto 09. Boy do I feel dumb ... and thankful that I finally found your post.
    = Bud Jones =

  • Event id: 12 source IIS-configuration

    Hello
    We have event 12 source iis-configuration entering the Microsoft-IIS-Configuration/Administrative channel.
    Server is 2008r2.
    Unable to find schema for config section system.serviceModel/(then many differing entries).  This section will be ignored.
    Physical path c:\windows\microsoft.net\frameworks64\v2.0.50727\config\web.config
    I have read to ignore
    this warning but would rather stop it.
    Ideas?
    Any ideas

    Hello,
    This should be asked in Microsoft's IIS forums:
    http://forums.iis.net/
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?&lt;=\G.{2})'|%{if($_){[char][int]&quot;0x$_&quot;}})

  • How to return a specific date/time range and last event details, when checking the event log via command prompt

    I am new to scripting (literally started reading/learning scripting a few hours ago), and I am stuck in trying to get my current script/command to filter a specific date range.
    * Note: I am working with Server 2003 and 2008; because of the environment I am in, a lot of scripts (such as Powershell and VBScript) don't work; trying to stick with command line, as it appears to be the only thing that functions correctly in my environment
    I am trying to search the System log in event viewer, for the most recent server reboot. Here is the command that I am currently running:
    ===========================================================
    C:\Windows\System32\cscript C:\Windows\System32\eventquery.vbs /L System /FI "id eq 1074"
    ===========================================================
    When run, the output looks like this:
    ===========================================================
    Microsoft (R) Windows Script Host Version 5.6
    Copyright (C) Microsoft Corporation 1996-2001. All rights reserved
    Listing the events in 'system' log of host 'xxxxxxxxxxxxxxx'
    Type Event
    Date Time    Source
    Information 1074
    12/18/2013 2:48:06 AM    USER32
    Information 1074
    11/20/2013 3:25:04 AM    USER32
    Information 1074
    10/23/2013 2:06:09 AM    USER32
    ===========================================================
    What I would like it to do is only show events that have happened in the last seven days, as well as show the event details if it does find an event that matches the criteria.
    Any help would be greatly appreciated. Thanks!
    Nick

    I would prefer using Powershell , you can use below code 
    function Get-EventViewer
    param(
    [string[]]$ComputerName = $ENV:COMPUTERNAME,[string]$LogName,[int]$eventid
    $Object =@()
    foreach ($Computer in $ComputerName)
    $ApplicationEvents = get-eventlog -logname $LogName -cn $computer -after (Get-Date).AddDays(-7) | ?{$_.eventid -eq "$eventid" }
    foreach ($event in $ApplicationEvents) {
    $Object += New-Object -Type PSObject -Property @{
    ComputerName = $Computer.ToUpper();
    TimeGenerated = $event.TimeGenerated;
    EntryType = $event.EntryType;
    Source = $event.Source;
    Message = $event.Message;
    $column1 = @{expression="ComputerName"; width=12; label="ComputerName"; alignment="left"}
    $column2 = @{expression="TimeGenerated"; width=22; label="TimeGenerated"; alignment="left"}
    $column3 = @{expression="EntryType"; width=10; label="EntryType"; alignment="left"}
    $column4 = @{expression="Source"; width=15; label="Source"; alignment="left"}
    $column5 = @{expression="Message"; width=100; label="Message"; alignment="left"}
    $Object|format-table $column1, $column2, $column3 ,$column4 ,$column5
    $Object.GetEnumerator() | Out-GridView -Title "Event Viewer"
    You can do a function call like
    Get-EventViewer -LogName system -ComputerName "computername" -eventid "2017"

  • Active Directory Web Services Event 1202

    Hi all,
    I am stuck with the event 1202 (source ADWS) error on my ADLDS server hosting sharepoint extranet user repository. My sharepoint server is a domain member but
    NOT a domain controller. I do not replicate this ADLDS instance with any other server. This ADLDS instance is not synched with AD's at all.
    I already read posts existing on the subject and no one solved my problem as they're all related to ADLDS instances hosted on domain controllers
    As a reminder the event 1202 (raised minutely) description is:
    This computer is now hosting the specified directory instance, but Active Directory Web Services could not service it. Active Directory Web Services will retry this operation periodically.
    Directory instance: NTDS
    Directory instance LDAP port: 389
    Directory instance SSL port: 636
    My ADLDS instance is not named NTDS (and cannot as NTDS is the instance name of an ADDS domain) and ADWS correctly service it as the following 1200 event proove it:
    Active Directory Web Services is now servicing the specified directory instance.
    Directory instance: ADAM_ExtranetUsers
    Directory instance LDAP port: 18589
    Directory instance SSL port: 18836
    So... my investigations result after enabling ADWS diagnostics are:
    Following is the trace corresponding to the 1202 event generation
    InstanceMap: [14.11.2012 08:57:19] [4] OnTimedEvent: got an event
    InstanceMap: [14.11.2012 08:57:19] [4] CheckAndLoadAll: beginning
    InstanceMap: [14.11.2012 08:57:19] [4] CheckAndLoadNTDSInstance: entered
    InstanceMap: [14.11.2012 08:57:19] [4] CheckAndLoadNTDSInstance: found NTDS Parameters key
    InstanceMap: [14.11.2012 08:57:19] [4] CheckAndLoadNTDSInstance: trying to change state to DC
    InstanceMap: [14.11.2012 08:57:19] [4] AddRemoveSessionPoolAndDictionaryEntry: trying to change state for identifier ldap:389
    InstanceMap: [14.11.2012 08:57:19] [4] AddSessionPool: adding a session pool for NTDS
    DirectoryDataAccessImplementation: [14.11.2012 08:57:19] [4] InitializeInstance: entering, instance=NTDS, init=5, max=20
    LdapSessionPoolImplementation: [14.11.2012 08:57:19] [4] InitializeInstance: entering, instance=NTDS, init=5, max=20
    InstanceMap: [14.11.2012 08:57:20] [4] AddSessionPool: DirectoryException trying to create pool: System.DirectoryServices.Protocols.LdapException: The LDAP server is unavailable.
    For me the BUGGY part of this ADWS error state within the CheckAndLoadNTDSInstance process. It effectively try to service NTDS instance because it found the NTDS registry key supposed to contain the AD DS instance configuration parameters. The content
    of the key is the following on my system (and any system I think):
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\NTDS]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\NTDS\parameters]
    "ldapserverintegrity"=dword:00000002
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\NTDS\RID Values]
    This is the normal content on any domain members. But this cause the ADWS service to think there is an NTDS domain service instance to serve which is not the case !!!!!
    I resolved the error for a temporary period by removing the registry key above. Because I also think this key has nothing to do on client systems (as stated on technet). I also verified after removing the key that my ADLDS instance is still forcing SSL connections
    for simple bind (which is what the ldapserverintegrity registry value is supposed to do. Note this registry settings is also present is the ldap and my ADAM_ExtranetUsers service registry.) Everything worked like a charm for a day and my event log stopped
    reporting the 1202 event.
    But during the first night, a process recreated the NTDS service registry key I deleted. So the event 1202 start reappearing every minute. Excepting filling my event log for nothing this error has no effect on the working ADLDS instance. So I can live with
    but it's rather annoying!
    So finally my question is: Is it really a bug or did i make a mistake? If this is by design how can I prevent ADWS to try to serve an instance that does not exists on the system?
    Can I set the undocumented ADWS configuration value "InstanceRediscoveryInterval" defaulted to "00:01:00" to something that say "NEVER".
    At least to lower events count I will set it to something next to 1 hour or 1 day!
    Does someone have a better solution?
    Many thanks to any of you taking time to read my poor english ;-)

    Hi Brian,
    Thanks to take time trying to resolve my issue.
    - IPv6 is not enabled on my servers (this is one of the first thing I disable on my servers)
    - If you read my post carefully you will see that removing the NTDS registry key resolve the problem for about 1 day. This because a process recreate the key automatically during the night (I think it is the KCC process that recreate the key but I'm not
    sure)
    And if I think it is a bug this is because you can see this wonderful sequence within the traces:
    InstanceMap: [20.11.2012 05:57:13] [4] CheckAndLoadNTDSInstance: entered
    InstanceMap: [20.11.2012 05:57:13] [4] CheckAndLoadNTDSInstance: found NTDS Parameters key
    InstanceMap: [20.11.2012 05:57:13] [4] CheckAndLoadNTDSInstance: trying to change state to DC
    .... here traces that shows the exception when the system try to connect (bind) to the NTDS ldap instance generating the event 1202 error ....
    InstanceMap: [20.11.2012 05:57:14] [4] CheckAndLoadGCInstance: entered
    InstanceMap: [20.11.2012 05:57:14] [4] CheckAndLoadGCInstance: machine isn't a DC, so it isn't a GC
    Well ironically the system first think this is a DC just because it found NTDS registry key (this key exists but is empty and does not contain NTDS AD instance parameters excepting ldapserverintegrity). And the next step in the process
    (just after CheckAndLoadNTDSInstance step there is the CheckAndLoadGCInstance step) it realizes it is not a DC so it cannot be a GC (global catalog). So can you tell me why the system is trying to service the NTDS instance that does not exist !!!!! And
    it knows that... one step later....
    Well I think everything is clear and I am suprised that with a such bug I am the only one complaining about that... at least with such level of accuracy (even if I saw posts without clear responses or people complaining that the problem is not
    solved)
    So for me there is no workaround or solution to resolve this. I repeat disabling the feature is not an option as we are using ADWS to administer our users through AD module for powershell. And I'm always laughing to see poeple proposing to disable a feature
    to resolve a bug within it. It remind me the old days where Microsoft enclosed parts of code with try catch blocs to resolve bugs (in fact they just used exception swallowing to make us believe they resolved the bug.....).
    So I'm waiting a fix from Microsoft for this unbelievable mistake and a real lack of testing because I can't believe nobody realizes that !!!
    Thank you again for your help

Maybe you are looking for

  • Remote App still not working correctly!

    Well since theres been numerous updates for ATV3 and the Remote App since my last post in November https://discussions.apple.com/thread/4357665?start=0&tstart=0 I decided to try the newsest updates and see if the issue is fixed...Of course its not! S

  • How can i prevent modifing the  itemes in Adobe PDF Printer Setting?

    Hi, I have installed an Adobe Acrobat X Pro 10.1.0 in windows xp.In print dialog,push the Property button,it will appear a dialog of Adobe PDF Setting,one of the setting itemes is "View the Adobe PDF Results",it can be set to view or not view the new

  • How to connect Lumia 520 to Zune

    i've recently bought a new nokia lumia 520. the phone is amazing! On my pc i have windows xp service pack 3 i installed zune and connected the mobile to pc but zune is not detecting it. how do i connect the 520 to zune? Solved! Go to Solution.

  • Logging.StepResult.TS.StepType for NUmericLimitTest is NULL

    I'm using TestStand's build in logging feature to write results to a database.  My problem is that the "name" field of the MEAS_NUMERICLIMIT table is empty for test steps that are of the type "NumericLimitTest".  I want this set to the name of the te

  • Album view default

    iTunes 11 defaults to album view which I NEVER USE. THIS IS SO STUPID. How can it be changed to default to song view?