0x80230729 (The extension could not be loaded.)

Hi,
I've been working on this most of the day without any luck. I'm wondering if anyone has seen something like this.
PCNS can successfully deliver the password change to an AD target, so PCNS should be OK.
The failure occurs when we add the Oracle EBS Web Service management agent to the password sync targets.
The error message indicates that the Microsoft.IdentityManagement.WebService.MA.dll cannot be loaded due to an incorrect .NET framework version.
An unexpected error has occurred during a password set operation.
 "BAIL: MMS(5080): d:\bt\9394412\private\source\miis\ma\core\passwordext.cpp(322): 0x80230729 (The extension could not be loaded.)
ERR_: MMS(5080): d:\bt\9394412\private\source\miis\ma\core\passwordext.cpp(804): Please verify that the password extension dll can be located in the Extensions directory.
If the extension is present, confirm that the version of the .NET framework that can run the extension is installed on the server and that a supportedRuntimes entry in the configuration files specifies that version. The synchronization engine will not be able
to load an extension that is built with a newer version  of the .NET framework than the version of the .NET runtime it is hosting.BAIL: MMS(5080): d:\bt\9394412\private\source\miis\ma\core\passwordext.cpp(806): 0x80230729 (The extension could not be loaded.)
BAIL: MMS(5080): d:\bt\9394412\private\source\miis\ma\extensible\export.cpp(2821): 0x80230729 (The extension could not be loaded.)
BAIL: MMS(5080): d:\bt\9394412\private\source\miis\ma\extensible\export.cpp(2866): 0x80230729 (The extension could not be loaded.)
BAIL: MMS(5080): d:\bt\9394412\private\source\miis\server\server\exportpassword.cpp(474): 0x80230729 (The extension could not be loaded.)
BAIL: MMS(5080): d:\bt\9394412\private\source\miis\server\server\ma.cpp(7961): 0x80230729 (The extension could not be loaded.)
BAIL: MMS(5080): d:\bt\9394412\private\source\miis\server\server\ma.cpp(8410): 0x80230729 (The extension could not be loaded.)
Forefront Identity Manager 4.1.2273.0"
I ran an Environment.Version command and it returns that we are using 4.0.30319.296.
In the dllhost.exe.config file, we have the settings:
<?xml version="1.0" encoding="UTF-16"?>
<configuration>
<configSections>
<section name="resourceManagementClient" type="Microsoft.ResourceManagement.WebServices.Client.ResourceManagementClientSection, Microsoft.ResourceManagement"/>
</configSections>
<!--
.NET Runtime startup configuration: If you use a .NET 4.0 runtime, the useLegacyV2RuntimeActivationPolicy attribute is required and must be set to "true".
 When multiple versions of the runtime are listed, the first supportedRuntime element should specify the most preferred version of the runtime,
and the last element should specify the least preferred version.
Currently, the Synchronization Service supports the following runtime choices: v2.0.50727 and v4.0.30319. If selected, the version must be found in the \Windows\Microsoft.NET\Framework or \Windows\Microsoft.NET\Framework64 directories.
-->
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0.30319"></supportedRuntime>
<supportedRuntime version="v2.0.50727"></supportedRuntime>
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.MetadirectoryServicesEx" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="3.3.0.0" newVersion="4.0.1.0" />
<bindingRedirect oldVersion="4.0.0.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
So, I think it looks like it should be trying to run the dll under the 4.0.30319 framework. The documentation says that framework is required and we are running it.
The dll is in the Extensions folder.
Has anyone seen this before or something like it? Any ideas on where else I could check?
Thanks,
Sami

Thank you for your reply. I've tried running in and out of proc with the same error showing up.
I tried a few different modifications to the miiserver.exe.config (as well as Mmsscrpt.exe.config and the Dllhost.exe.config files). I tried changing 4.0.30319 to 4.0 as per this article:
http://msdn.microsoft.com/en-us/library/w4atty68.aspx
Even though we are only on FIM R2 (not on SP1), I tried a variation on the config file changes recommended here:
http://support.microsoft.com/kb/2772429 but I referenced the newVersion as 4.0.1.0.
Still no luck.
Here's the miiserver.exe.config file. Maybe you'll see something glaringly wrong? Thank you for your help!
<?xml version="1.0" encoding="UTF-16"?>
<configuration>
  <configSections>
    <section name="resourceManagementClient" type="Microsoft.ResourceManagement.WebServices.Client.ResourceManagementClientSection, Microsoft.ResourceManagement"/>
    <section name="resourceManagementService" type="Microsoft.ResourceManagement.WebServices.ResourceManagementServiceSection, Microsoft.ResourceManagement.Service"/>
    <section name="resourceSynchronizationClient" type="MIIS.ManagementAgent.ResourceSynchronizationClientSection, mmsmafim"/>   
  </configSections>
  <!--
    .NET Runtime startup configuration: If you use a .NET 4.0 runtime, the useLegacyV2RuntimeActivationPolicy attribute is required and must be set to "true".
    When multiple versions of the runtime are listed, the first supportedRuntime element should specify the most preferred version of the runtime,
    and the last element should specify the least preferred version.
    Currently, the Synchronization Service supports the following runtime choices: v2.0.50727 and v4.0.30319. If selected, the version must be found in the \Windows\Microsoft.NET\Framework or \Windows\Microsoft.NET\Framework64 directories.
   -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0.30319"></supportedRuntime>
    <supportedRuntime version="v2.0.50727"></supportedRuntime>
  </startup>
  <!--
  <resourceManagementService/>
        Additional properties that can be specified for the <resourceManagementService /> configuration section
        PropertyName                                   
DefaultValue                                Description
        dataReadTimeoutInSeconds                        58                                         
Database timeout for read operations
Range: 0-max(int16)
        dataWriteTimeoutInSeconds                       58                                         
Database timeout for write operations
Range: 0-max(int16)
        synchronizationDataReadTimeoutInSeconds         1200                                       
Synchronization operations (FIM MA import / export)
that read from the FIM Service are tied to this timeout
to allow these operations extra time to complete if there
are a large number of objects / values in a batch.                                                                                                   
Range: 0-max(int16)
        Note: The following registry key : ReadTimeOut , in the registry path : HKLM\SOFTWARE\Microsoft\Forefront Identity Manager\2010\Synchronization Service ,
        overrides the synchronizationDataReadTimeoutInSeconds property.
        synchronizationDataWriteTimeoutInSeconds        1200                                       
Synchronization operations (FIM MA import / export)
that write to the FIM Service are tied to this timeout
to allow these operations extra time to complete if there
are a large number of objects / values in a batch.                                                                                                   
Range: 0-max(int16)       
        externalHostName                                Defined by
Administrator during set-up      This value is used by FIM to define the external host name
that should be used by clients to connect to FIM when you deploy
a Load Balanced configuration.       
    -->
  <resourceSynchronizationClient/>
  <!--
        Additional properties that can be specified for the <resourceSynchronizationClient /> configuration section. This configuration is used to configure the FIM MA
        settings.
        PropertyName                                   
DefaultValue                                Description
        asynchronous                                   
true                                        This property controls
whether FIM MA uses the older synchronous channel
or the new asynchronous channel when communicating with FIM Service.
        aggregate                                      
true                                        This property controls
whether FIM MA can send data to FIM Service in batches.
        aggregationThreshold                            1000                                       
This property controls the number of attributes per aggregated batch.
        delayUpdateAcknowledgements                     false                                      
This property controls whether the FIM Management Agent sends acknowledgements to
FIM Synchronization Service immediately upon Request completion, or withholds them
until the end for Update operations. Setting this to true may reduce the overall time
to export data, but the FIM Synchronization Service UI statistics are not updated as frequently.
        exportRequestsInProcessMaximum                  50                                         
This property controls the maximum number of export requests that
can be in process.              
    -->
    <system.diagnostics>     
        <sources>
            <source name="ForefrontIdentityManager.ManagementAgent" switchValue="Warning">
                <listeners>
                    <add initializeData="ForefrontIdentityManager.ManagementAgent" type="System.Diagnostics.EventLogTraceListener, System, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089"
                         name="MAExceptionEventLogListener" traceOutputOptions="LogicalOperationStack, DateTime, Timestamp, Callstack">
                    <filter type="" />
                    </add>
                </listeners>
            </source>
            <source name="ForefrontIdentityManager.ManagementAgent.EventTracingForWindowsTraceSource" switchValue="Verbose">
                <listeners>
                    <add name="MAEventTracingForWindowsListener"
                         type="System.Diagnostics.Eventing.EventProviderTraceListener, System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                         initializeData="{C4D0C1D4-909D-481b-B011-10E682A6009C}" />
                </listeners>
            </source>
        </sources>
    </system.diagnostics>
    <!-- Instructions for collecting ETW Traces
         To collect ETW traces for Microsoft.ResourceManagement.Service. Run the following commands in the specified order from
         an elevated command prompt.
            1. To start a new etw trace session    : logman start mysession -p {C4D0C1D4-909D-481b-B011-10E682A6009C} -o FIMMAETWtrace.etl -ets
            2. To stop a running etw trace session : logman stop mysession -ets
            To format the collected traces run any of the following commands (from an elevated command prompt) depending
            on the required output format.
            1. tracerpt FIMMAETWtrace.etl -o FIMMAEventTrace.xml -of XML -lr -summary FIMMAEventTraceSum.txt -report FIMMAEventTraceRpt.xml
            2. tracerpt FIMMAETWtrace.etl -o FIMMAEventTrace.evtx -of EVTX -lr -summary FIMMAEventTraceSum.txt -report FIMMAEventTraceRpt.xml
            3. tracerpt FIMMAETWtrace.etl -o FIMMAEventTrace.csv -of CSV -summary FIMMAEventTraceSum.txt -report FIMMAEventTraceRpt.xml  
  -->
    <!--
       Full Diagnostics configuration.
       Uncomment the following section and replace the default <system.diagnostics> configuration to
       enable all trace sources and obtain all available traces for Microsoft.ResourceManagement.Service
  -->
    <!--
    <system.diagnostics>     
        <sources>      
            <source name="System.ServiceModel" switchValue="Verbose"
              propagateActivity="true">
                <listeners>                  
                    <add name="ServiceModelTraceListener">
                        <filter type="" />
                    </add>
                </listeners>
            </source>
            <source name="ForefrontIdentityManager.ManagementAgent" switchValue="Verbose">
                <listeners>
                    <add initializeData="ForefrontIdentityManager.ManagementAgent" type="System.Diagnostics.EventLogTraceListener, System, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089"
                         name="ExceptionEventLogListener" traceOutputOptions="LogicalOperationStack, DateTime, Timestamp, Callstack">
                    <filter type="" />
                    </add>
                    <add name="ServiceModelTraceListener">
                        <filter type="" />
                    </add>
                </listeners>
            </source>
            <source name="ForefrontIdentityManager.ManagementAgent.EventTracingForWindowsTraceSource" switchValue="Verbose">
                <listeners>
                    <add name="EventTracingForWindowsListener"
                         type="System.Diagnostics.Eventing.EventProviderTraceListener, System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                         initializeData="{C4D0C1D4-909D-481b-B011-10E682A6009C}" />
                </listeners>
            </source>
        </sources>      
        <sharedListeners>
            <add initializeData="ForefrontIdentityManager.ManagementAgent_tracelog.svclog"
              type="System.Diagnostics.XmlWriterTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
              name="ServiceModelTraceListener" traceOutputOptions="LogicalOperationStack, DateTime, Timestamp, ProcessId, ThreadId, Callstack">
                <filter type="" />
            </add>
        </sharedListeners>
        <trace autoflush="true" />
    </system.diagnostics>
    -->
  <!--
    .NET Runtime startup configuration: If you use a .NET 4.0 runtime, the useLegacyV2RuntimeActivationPolicy attribute is required and must be set to "true".
    When multiple versions of the runtime are listed, the first supportedRuntime element should specify the most preferred version of the runtime,
    and the last element should specify the least preferred version.
    Currently, the Synchronization Service supports the following runtime choices: v2.0.50727 and v4.0.30319. If selected, the version must be found in the \Windows\Microsoft.NET\Framework or \Windows\Microsoft.NET\Framework64 directories.
   -->
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0.30319"></supportedRuntime>
    <supportedRuntime version="v2.0.50727"></supportedRuntime>
  </startup>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.MetadirectoryServicesEx" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="3.3.0.0" newVersion="4.0.1.0" />
        <bindingRedirect oldVersion="4.0.0.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

Similar Messages

  • Could not complete the command because the extension could not be loaded

    I was working in 3D with PS CS5 Extended. I went to the Window drop down menu and selected Color. I got the message "Could not complete the command because the extension could not be loaded" and the color pallet and swatches would not appear. I had to click on OK the error message three times to get rid of it as it kept reappearing. The the mini bridge and Brush pallets opened, including Brush Presets tab and Clone Source tab instead of the color pallets. How can I get my color pallets back?
    I am on an iMac Intel core i3 running OS X Lion 10.7.2
    Thanks for any help.
    Thanks,
    Don

    I unstalled Photoshop.  Then I installed on another drive.  External.  It did the same thing!!!!  No mini-bridge, or any extentions loading.  I don't know what is wrong.
    I read something somewhere about a Panels file in photoshop.  So I'm looking there.

  • "Cannot complete command because the extension could not be loaded." with CEP5 Sample

    Hi,
    I have trouble with porting my extension to CEP5. I am getting error "Cannot complete command because the extension could not be loaded." when I open the panel.
    Is there any way to get more info about what happened and why? My extension was properly signed zxp and Extension Managed installed it without trouble.
    Also, to debug the problem, I tried to open the CEP HTML Test Extension - https://github.com/Adobe-CEP/Samples/tree/master/CEP_HTML_Test_Extension_5.0
    I have copied it to "~/Library/Application Support/Adobe/CEP/extensions/com.adobe.CEPHTMLTEST", created .debug file in it (https://gist.github.com/m6k/39a49786b7a85a9e312b), created empty .debug file inside Photoshop CC 2014.app (to suppress signature checking). When I open Photoshop CC 2014, I see test panels listed in extension menu, but when I try to open them, I also get the "Cannot complete command because the extension could not be loaded." error.
    Any hints what i am doing wrong and what can I do to debug this problem?
    Jan

    Hallgrimur, thanks, that is exactly the article I needed!
    My problem was that I forgot about the pref file  "~/Library/Preferences/com.adobe.CSXS.5.plist".

  • "Cannot complete command because the extension could not be loaded" ?

    I have installed a photoshop plugin into photoshop cc. However when I go to windows => extension => photoshop plugin, it shows me "Cannot complete command because the extension could not be loaded". What should I do ?
    Thanks.

    I think you posted on the »wrong« Forum. (edited)
    http://forums.adobe.com/community/labs/extensionbuilder3?view=discussions

  • Get message Cannot complete command because the extension could not be loaded.

    When clicking in CS5 Photoshop menu - "Essentials", "New is CS5 "or "CS LIve", I get a message "Cannot complete command because the extension could not be loaded". I get the same message when attempting to acces frm Window>Extensions> then clicking on one of the listed exteneions.  This is been going on for some time for no apparent reason.  Using version 12.0.4 (x32) iMac OS 10.6.8 - Intel Quad Core.

    I unstalled Photoshop.  Then I installed on another drive.  External.  It did the same thing!!!!  No mini-bridge, or any extentions loading.  I don't know what is wrong.
    I read something somewhere about a Panels file in photoshop.  So I'm looking there.

  • I receive the message: "The extension could not be loaded because it was not properly signed."

    When I try to open the Library in Photoshop, I receive the message: "The extension could not be loaded because it was not properly signed." It worked last week, but now I get this message and the Library is completely empty in Illustrator. My Library has stuff in it and I can see it on my iPad Apps.

    I am working on a PC, using Photoshop CC 2014
    Operating System:
    Error Message:
    Settings in Photoshop > Preference > Performance:
    Type of file you were working on: No file; just opened up Photoshop to begin working
    This is the first time this has happened - I have not doe any other troubleshooting.
    Camera Raw does not apply here.
    Thanks.

  • PS show The extension could not be loaded because it was not properly signed

    When I'm open Libraries in photoshop cs2014 it's show
    The extension could not be loaded because it was not properly signed
    I'm try to reinstalled but it still error.
    How can i'm fixed this

    This is an open forum, not Adobe support... you need Adobe staff support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • Extension is not loaded. Cannot complete command because the extension could not be loaded.

    Despite display and hook into the extension manager CC Erweireung in PS is displayed to, but is not loaded.
    Advance: Even reboot didn't help.

    I unstalled Photoshop.  Then I installed on another drive.  External.  It did the same thing!!!!  No mini-bridge, or any extentions loading.  I don't know what is wrong.
    I read something somewhere about a Panels file in photoshop.  So I'm looking there.

  • The extension could not be loaded  because it was not properly signed

    when I start PS cc 2014 I meet this problem.
    what should i do to resolve this problem?

    What's the extension name? Please remove and reinstall it as it has likely been updated.

  • In Photoshop CS 6 (64 & 32), I get the error "cannot complete command because the extension could not be loaded".  I can click to pass this, but none of my extensions will run.  If I click on "browse in Bridge" I get "Could not complete the command Browse

    Further info is that I have a current update of the JavaScript as of now, my Adobe software is all updated, as is my Windows 7 software.  Everything was running fine until yesterday, and the only changes to my system were the Tuesday Windows updates. Can anyone help me resolve this problem?

    I unstalled Photoshop.  Then I installed on another drive.  External.  It did the same thing!!!!  No mini-bridge, or any extentions loading.  I don't know what is wrong.
    I read something somewhere about a Panels file in photoshop.  So I'm looking there.

  • After Loading Lion I now get 5 windows w/ a graphic of a Red Stop sign with an ! mark and the following text message: "DAVE Networking  Dave kernel extensions could not be loaded! Error 71 - Too many levels of remote in path."

    After Loading Lion I now get 5 windows w/ a graphic of a Red Stop sign with an ! mark and the following text message:
    "DAVE Networking 
    Dave kernel extensions could not be loaded! Error
    71 - Too many levels of remote in path."
    I have uninstalled DAVE and used Clean App to remove trace elements of program, however I still get the message and am unable to eliminate the error messages.  When I click OK the message goes away briefly and then comes back up.
    Any solutions would be great.

    Dave,
    Thanks....What I did was load the free eval version of Dave 9.0 and then used the uninstaller which must have deleted the kernel giving me the problem. 
    Thanks for the response.
    Razor

  • Extension could not be loaded because it was not properly signed

    Followed the steps on the tutorial to get an extension created in eclipse. I can export it and run it just fine, but it won't load when running from eclipse. I get the error: "extension could not be loaded because it was not properly signed." I can't seem to find where to configure this. Any help is appreciated.

    Thanks for the help. Yes that addressed the issue.
    On a side note, the tutorial I followed was the one that came with the plugin. Specifically I'm referring to the following file:
    //<eclipse_path>/plugins/com.adobe.cside.html.docs_1.0.0.201307260955/doc/getting_started/ Create_Your_Own_HTML5_Extension_In_5_Minutes.htm
    This is the HTML page for the "Create Your Own HTML5 Extension In 5 Minutes" walkthrough. It makes no mention of changing "PlayerDebugMode". I downloaded the eclipse plugin from the following link:
    http://labs.adobe.com/downloads/extensionbuilder3.html
    Is there a more up to date plugin? Where is the documentation that references changing the settings you mentionned?

  • Transfer to new PC: The project could not be loaded, it may be damaged or contain outdated elements

    The Problem
    I have transferred a large and functioning Premiere Pro project to a more powerful PC but am unable to run it, stopped by the error message "The project could not be loaded, it may be damaged or contain outdated elements".
    Facts
    The new PC has a 6-core processor and a different hard drive configuration but the operating system on both is Windows 7 and both PCs host up-to-date Premiere Pro CS6 (as part of Adobe Production Premium). The PCs are networked and Premiere Pro on the old PC can successfully load and run the project file located on the new PC, proving that the transferred file is not damaged. Also, preceding versions of the same project generate the same error message when run on the new PC except, very oddly, for earlier versions saved on or before 28 June 2011, when the project was only a fifth of its current size; those versions load correctly. Contemporary notes show that the editing carried out that day was simple timeline editing, ie no After Effects etc (that came later), and the project has worked fine then and since.
    So I don't have a damaged project file and don't know what "outdated elements" means.
    Help
    Any help solving this problem would be much appreciated.

    Hi Vinay
    As suggested I renamed the additional folder, created a new project, set 'Custom' editing mode, 'Microsoft AVI' as the preview format with 'Uncompressed' codec.
    Unfortunately the results were similar to before: On importing the original project into the new project I was sequentially asked for the locations of various files, including After Effects .aep files. The final file location request, for an mp3 audio file, was followed by lots of conforming and indexing. During this process the 'Where is the file XXX.mp3? window stayed locked open. Eventually, with all conforming etc finished, this window was still open and locked. Clicking anywhere on the screen caused a 'ding' and another, smaller, box opened, listing three .aep files. This box asked no questions and gave no options for selecting a file location so, with the topmost file highlighted, I just clicked 'ok' and the box disappeared, leaving the 'Where is the file XXX.mp3?' box still open.
    The importing process took about 30 minutes. I waited another 10 minutes, in case something was happening in the background, but with the Task Manager CPU usage value sitting on 0 or 1%, I used it to shut down the project.
    For what it is worth, I created a simple new project on the old PC – just a few video clips and transitions in a single sequence (no After Effects etc). This project was then transferred to the new PC and it opened successfully.
    Again I remain grateful to you for this and any more advice.
    Best regards
    Dave

  • THE PROJECT COULD NOT BE LOADED, IT MAY BE DAMAGE OR CONTAIN OUTDATED ELEMENTS

    I am trying to open a .prprj worked yesterday but I get this msg: THE PROJECT COULD NOT BE LOADED, IT MAY BE DAMAGE OR CONTAIN OUTDATED ELEMENTS
    I tried to import it in a new project, import it in AE, open an aotosaved project (there are so old, not usefull)
    I know that it can be edited in XML, but I don't understand anythig of that...
    HOW DO I REPAR IT???
    Any help???

    Hi,
    thanks for for the comment! In fact I did try this and I also tried to import a sequence only. I haven´t changed anything but I guess the automatic update of windows 8.1. has.
    And then I noticed that I´m not at all alone with my problem...
    Debug event f:\mightysilt_win64\shared\adobe\mediacore\mediafoundation\api\inc\keyframe
    So the final solution seems not to be in my hands ;~)
    Cheers,
    Petri

  • [SOLVED]GNOME-SYSTEM-TOOLS: The configuration could not be loaded

    Hello there!
    I'm a ubuntu user completely new to arch. I got my desktop up and running but there seems to be a problem setting up the gnome-system-tools program. Whenever I try to laaunch any application in this package I get this error message:
    The configuration could not be loaded
    You are not allowed to access the system configuration.
    I tried the solution on this forum thread (http://bbs.archlinux.org/viewtopic.php?id=45854 ), but to no avail. I am still getting the same error message. This is my DAEMONS line in rc.conf:
    DAEMONS=(syslog-ng hal stbd !network !dhcdbd !networkmanager wicd netfs crond alsa fam gdm)
    I have added both my user and root to the stb-admin group, this is the part of my groups file that shows this:
    stb-admin:x:103:root,abhishek
    Can anyone please help me figure out where I'm going wrong.
    Many thanks in advance.
    Last edited by bhadotia (2012-02-16 00:50:03)

    I was reading post installation wiki and found the following command to reinstall the whole system:
    pacman -S $(comm -3 <(pacman -Qq) <(pacman -Qqm))
    As a few things were not going right and I was unable to solve the problems using the ordinary methods, I decided to run the above command and now everything seems to be working fine .Though I'm not sure that this will remain like that, as the process was inturrpted a couple of times such that I had to hard reset the laptop.
    But everything seems to be going fine now - the system tools have started to work normally and another gnome-related problem has been solved.:D

Maybe you are looking for

  • HT1386 I have a new PC and want to sync my iphone so all my tunes, contacts , calender and notes can this be done?

    I have a new PC and want to sync all my tunes, contacts, calender and notes from my iphone into the new PC. Ideally I want to synce the notes and calender with outlook and the contact with windows contacts.  Do a need some software to do this? Thanks

  • Unable to find out error

    hi all need help to solve this problem In a file called AllBalancedOfSize.java write a method with the signature: public void printBalanced(int len) that uses recursion (either directly or indirectly) and prints all balanced strings, composed solely

  • Crashing when creating tagged pdf book

    I am trying to save a book to pdf using the tagged pdf option on the Tags tab of the PDF setup dialog.  It works fine except when there is a foldout graphic (36.5 x 11).  I get the following error: Internal Error: 10014, 7686376, 7686666, 10069197  a

  • Changing Cal Constants does not effect Thermocoup​le readings

    I change the calibration constants using Cal Constant .vi by inputting cal constant 1&2, and write the values to the NI-DAQ memory. And then I sample the corrected channel with a virtual channel, but the values do not change. I verify that the values

  • Script to disable SNMP for all mapped printers

    I'm looking for a script to disable SNMP on all printers mapped to a single computer. I'm fairly new to scripting and I'm having troubles finding if this is even possible.  We've been going through and disabling SNMP on a few hundred printers, essent