Importing PowerShell module in C#

I'm trying to write some C# code to interact with Lync using PowerShell, and I need to import the Lync module before executing the
Lync cmdlets. However, my code doesn't seem to import the module and I keep getting a "get-csuser command not found" exception. Here is my code:
PowerShell ps = PowerShell.Create();
ps.AddScript(@"import-module Lync");
ps.Invoke();
ps.Commands.AddCommand("Get-csuser");
foreach (PSObject result in ps.Invoke())
Console.WriteLine(result.Members["Name"].Value);
Any idea how can I import the Lync module?

Got it, the module needs to be imported by its full path, and also the execution policy for both 64-bit powershell and 32-bit powershell
need to be set to Unrestricted (or anything other than restricted depending on your case). Here's the code:
static void Main(string[] args)
InitialSessionState initial = InitialSessionState.CreateDefault();
initial.ImportPSModule(new string[] {"C:\\Program Files\\Common Files\\Microsoft Lync Server 2010\\Modules\\Lync\\Lync.psd1"} );
Runspace runspace = RunspaceFactory.CreateRunspace(initial);
runspace.Open();
PowerShell ps = PowerShell.Create();
ps.Runspace = runspace;
ps.Commands.AddCommand("Get-csuser");
foreach (PSObject result in ps.Invoke())
Console.WriteLine(result.Members["Identity"].Value);

Similar Messages

  • How to import sharepoint modules in powershell ISE?

    Hi All, could anybody tell mw how to import sharepoint modules in powershell ISE? just let the powershell ISE work as 'SharePoint 2010 Management Shell'. i don't want to download SPoshMod.
    thanks, eric

    Hi Joel ,
    When I execute it I am getting the below error. Could you please share your thoughts on this.
    Add-PSSnapin : The Windows PowerShell snap-in 'microsoft.sharepoint.powershell' is not installed on this machine.
    At line:1 char:13
    + add-pssnapin <<<<  microsoft.sharepoint.powershell
        + CategoryInfo          : InvalidArgument: (microsoft.sharepoint.powershell:String) [Add-PSSnapin], PSArgumentException
        + FullyQualifiedErrorId : AddPSSnapInRead,Microsoft.PowerShell.Commands.AddPSSnapinCommand
    -Vishnu

  • Error message after opening Microsoft Ecosystem Metadata Exchange Powershell Module

    Hi,
    I am running into issue who I launch the Microsoft Ecosystem Metadata Exchange Powershell Module
    Here is the error message:
    Import-Module : Could not load file or assembly 'file:///C:\Program Files (x86)
    \Microsoft Ecosystem Metadata Exchange\MetadataExchange\Microsoft.Telemetry.Met
    adataExchange.Cmdlets.dll' or one of its dependencies. This assembly is built b
    y a runtime newer than the currently loaded runtime and cannot be loaded.
    At line:1 char:14
    + Import-Module <<<<  MetadataExchange
        + CategoryInfo          : NotSpecified: (:) [Import-Module], BadImageForma
       tException
        + FullyQualifiedErrorId : System.BadImageFormatException,Microsoft.PowerSh
       ell.Commands.ImportModuleCommand
    ========================================
    I am wondering what I should do to fix it...
    My OS is win7 x64 sp1
    Thanks,
    Jason

    May have to contact them here.
    http://blogs.msdn.com/b/wer/archive/2012/03/28/windows-hardware-dashboard-reports-faq.aspx#Support
    http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?category=windowsdesktopdev
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Invoking Powershell modules on remote clients via package/command line

    Hello Everyone -
    I have two modules(functions) that i've written and tested successfully locally in my environment that give me Uninstall and Repair functionality on whatever the string contains. Both .psm1's are delivered via a SCCM pkg that lands both into folders
    in the Modules directory. My issue is I can't seem to invoke this in a deployment scenario...as i'd like to deliver the "Invoke-command" using SCCM's command line to simply say...
    Invoke-Command -scriptblock { Do-This "<string>" }
    The above command works fine locally when...(exePol is set to Bypass).
    1.)Modules have respective folders living in WindowsPowershell\Modules directory named xxxx.psm1
    2.)Import-Module -name <path\name of module>
    3.)Verify Modules are loaded(moduleType is script)
    But when fabricating the folders\files above with SCCM, and running the Invoke-Command(in many different ways remotely), i recieve the cmdlet, program doesn't exist and has no idea what i'm talking about. Folders\Files for .psm1's are present and do
    show when running Get-Module -Listavailable locally on targeted clients.
    Maybe this is related to the Import-Module command and the context i'm trying to delivery it in?
    I've tried multiple scenario's of...
    A.) Psexec that launches powershell, followed by the Import-Module -name <path\name of module>
    B.) .Bat file that launches powershell with the same Import-Module syntax
    C.) PS1 that includes the same Import-Module line.
    D.) Just straight from the command line of the Pkg/Program.
    Has anyone tried this? Is there a better method when trying to deliver invoke-command on a module/function to a client via SCCM? 
    TIA 

    [I see that the you are running the powershell.exe and then importing the module in the command line for the Program you created in SCCM, so just importing the module will do the repair action for you ??]
    Not sure how else i would run a Import-Module without calling upon powershell.exe. The reason for using Import-Module first is it only creates the abilty of whatever the module(function in this case) on the client. So if i can get the remote
    Import-Module to work, which would then allow me in the future to use an Invoke-Command -scriptblock { Do-This "string" } on the clients. In this case its both an Uninstall and Repair function with an assortment of switches and arguements that will aide me
    in the future in managing our apps. For me to use the Modules, i would need to Invoke-Command as that is how the functions are built.
    Okey so the module does get dumped to the end machine.
    Suppose you have a test machine TEST01 where the Test.psm1 file  (having Test-Function)is delivered through SCCM.
    Then try this and tell if it works:
    PS C:\> $session = New-PSSession -ComputerName TEST01
    PS C:\> Invoke-Command -Session $session -ScriptBlock {Import-Module Test.psm1 }
    PS C:\> Invoke-Command -Session $session -ScriptBlock {Test-Function #inside your Module}#Or Simply try below:
    PS C:\> Invoke-Command -ComputerName TEST01 -ScriptBlock {Import-Modules Test.psm1;Test-Function #inside your Module}
    I think what you are doing is below.....for the example am taking "webadministration" module:
    PS C:\> Invoke-Command -ComputerName Server01 -ScriptBlock {Import-Module web*}
    PS C:\> Invoke-Command -ComputerName Server01 -ScriptBlock {get-website}
    The term 'get-website' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
    the spelling of the name, or if a path was included, verify that the path is correct and try again.
    + CategoryInfo : ObjectNotFound: (get-website:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
    + PSComputerName : sdwuweb017
    Point here is you need to import the module and work with it in an already opened session....If you specify a computername every time then PowerShell opens the Session does what you want it to do and tears down the session. To persist the importing of the
    module it must be done in a session which we make using New-PSSession and then run the commands against that session.
    I might have misunderstood the problem but this is what I have got so far.
    Hope this helps
    Knowledge is Power{Shell}.

  • Connection error with AAD PowerShell module 8362.1 from 2015-01-19

    After installing the Azure AD Module for PowerShell version 8362.1 released January 19, 2015, I get the following two errors when connecting to the service:
    connect-msolservice : The server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature session shutdown or an internal server error.
    At line:1 char:1
    + connect-msolservice -credential $msolcred
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OperationStopped: (:) [Connect-MsolService], CommunicationException
        + FullyQualifiedErrorId : System.ServiceModel.CommunicationException,Microsoft.Online.Administration.Automation.ConnectMsolService
    connect-msolservice : Exception of type 'Microsoft.Online.Administration.Automation.MicrosoftOnlineException' was thrown.
    At line:1 char:1
    + connect-msolservice -credential $msolcred
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OperationStopped: (:) [Connect-MsolService], MicrosoftOnlineException
        + FullyQualifiedErrorId : Microsoft.Online.Administration.Automation.MicrosoftOnlineException,Microsoft.Online.Administration. Automation.ConnectMsolService
    I tried this with with an Office 365 Education tenant and an Office 365 Small Business tenant with the same result. From the release notes it appears some MFA-related changes were made. The Education tenant uses federated authentication, but MFA is not enabled
    in either tenant I tested with.
    Uninstalling the new version and installing the previous version (8262.2 released 2014-12-11) works fine.
    Dave Beauvais

    I fixed this issue by installing the previous Azure AD PowerShell Module version to 8262.2. Follow this thread:
    http://social.technet.microsoft.com/wiki/contents/articles/28552.microsoft-azure-active-directory-powershell-module-version-release-history.aspx
    Use the (get-item [...]) command to see your version. I was at 8362.1, went to uninstall it from Add/Remove Programs (the PowerShell Azure Module), then installed the 64bit version from the link above. Afterwards, the connect-msolservice worked with my Global
    AAD O365 account.
    I used the latest Azure AD Connect preview/beta version described here:
    http://blogs.technet.com/b/ad/archive/2014/08/04/connecting-ad-and-azure-ad-only-4-clicks-with-azure-ad-connect.aspx. This version installed the latest, incompatible it seems, Azure AD PowerShell module while it installed all other dependencies on a Windows
    Server 2012 R2. The PowerShell version on this machine is 4.0, which came with the Server 2012 R2 OS version.
    But, on another machine running Windows Server 2012 and running PowerShell version 3.0, the same tool installed the previous, 8262.2 Azure AD PowerShell Module, which worked. I got lucky with this difference to notice the different versions. Strange.
    Also, the original link from where I downloaded the Azure AD Connect beta tool here
    https://connect.microsoft.com/site1164/program8612 doesn't seem to work right now - I get a strange web server standard type error page not formatted properly that says "The system has
    encountered an unexpected error [...] etc."
    Hope this helps.
    Radu
    Radu P.

  • Problem importing a module and finding it's commands?

    Hi,
    I have a problem. I'm trying to import the DFSR module and use it's commands in my PS session.
    But, I can't get the commands to show.
    I've looked in my system32 directory and I can see the DFSR module folder.
    But when I run the command to import the module nothing happens, and it's not showing in my Module window in the ISE.
    What could be going wrong?
    Thanks

    Get-Module -List DFSR
    Where did you save the module to?
    Modules should be saved to the Modules folder of the profiles folder.
    dir "$(Split-Path $profile.CurrentUserCurrentHost)\Modules"
    dir "$(Split-Path $profile.AllUsersCurrentHost)\Modules"
    ¯\_(ツ)_/¯

  • Python 2 is trying to import pyhon3 modules, gnome-tweak-tool broken

    I can't start gnome-tweak-tool it complains
    Traceback (most recent call last):
    File "/usr/bin/gnome-tweak-tool", line 22, in <module>
    import gi
    File "/usr/lib/python3.3/site-packages/gi/__init__.py", line 27, in <module>
    from ._gi import _API, Repository
    ImportError: /usr/lib/libpyglib-gi-2.0-python3.so.0: undefined symbol: _Py_FalseStruct
    It would appear that python2 is trying to import python3 modules. I also get this error with
    >python2
    >import gi
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    File "/usr/lib/python3.3/site-packages/gi/__init__.py", line 27, in <module>
    from ._gi import _API, Repository
    ImportError: /usr/lib/libpyglib-gi-2.0-python3.so.0: undefined symbol: _Py_FalseStruct
    Why is this happening!? I had a similar issue a while back with python2 trying to import a (different) python3 module when trying to install something from the AUR but that was
    fixed by doing
    export $PYTHONPATH=/usr/lib/python2.7/site-packages
    as on login my PYTHONPATH is set as /usr/lib/python3.3/site-packages, however this did not fix the gnome-tweak-tool issue.
    my python3 sys.path is
    ['', '/usr/lib/python3.3/site-packages', '/usr/lib/python33.zip', '/usr/lib/python3.3', '/usr/lib/python3.3/plat-linux', '/usr/lib/python3.3/lib-dynload', '/usr/lib/python3.3/site-packages/setuptools-0.6c11.egg-info', '/usr/lib/python3.3/site-packages/setuptools-0.6c11.egg-info']
    and my python2 sys.path is
    ['', '/usr/lib/python3.3/site-packages', '/usr/lib/python3.3/site-packages/setuptools-0.6c11.egg-info', '/usr/lib/python27.zip', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-linux2', '/usr/lib/python2.7/lib-tk', '/usr/lib/python2.7/lib-old', '/usr/lib/python2.7/lib-dynload', '/usr/lib/python2.7/site-packages', '/usr/lib/python2.7/site-packages/gtk-2.0', '/usr/lib/python2.7/site-packages/setuptools-0.6c11.egg-info', '/usr/lib/python2.7/site-packages/wx-2.8-gtk2-unicode']
    Whats going wrong!?
    Last edited by tbdc (2013-05-16 19:28:28)

    @prateek13 Please do not Necro-bump or Power-post
    https://wiki.archlinux.org/index.php/Fo … Bumping.22
    https://wiki.archlinux.org/index.php/Fo … mpty_Posts
    Closing.

  • GTS tables relations and important function modules

    Hi Friends,
    I am totally new for the developments in GTS.  Wanted some help on the  tables for master data, transactional data in GTS. 
    Also what are the important function modules used in GTS.
    Anybody can give me some inputs on the above..?
    regards
    Nalin

    Well, passing a table thru the interface with no type is easy, just don't assign a structure when defining the interface.  It will then take its structure by what is being passed to it. 
    So if you would pass an internal table to it with the structure like so.
    Data: begin of itab occurs 0,
          line(1000) type c,
          end  of itab.
    Then that is the structure inside the function module. 
    Did this answer your question?   Please explain further if not.
    Regards,
    Rich Heilman

  • How to Import Knowledge Modules

    Hi,
    I am patching the ODI to 10.1.5.3 and successfully updated the install folder and imported technologies as described in the patchset. At the end I find a last step to import Knowledge Modules, but I can't see how this step is performed.
    Could you explain me how to do this?
    Thanks
    Fabio D'Alfonso

    Hi,
    In any of KM types, right-click and choose "Import KM" and, after that, in the first textbox, go the ODI install directory and drill drow until "impexp" directory (Example: C:\OraHome_1\oracledi\impexp).
    Don't "open" the diretory, just choose it and click OK. The KM list should appears to you.
    Works?
    Cezar Santos
    http://odiexperts.com

  • Import UPK modules and sections into Knowledge Pathways?

    "...i'm trying to export content from UPK and load into Knowledge Pathways.... I would like to maintain the structure of modules and sections... is this possible? if it is.. how? where can i find how to do it?"
    What versions of UPK and Knowledge Pathways are you using? If you're using the current versions (UPK 3.5.1 and Knowledge Pathways 5.5), you should have no problems importing importing UPK modules and sections into Knowledge Pathways using the import player content feature, which is detailed in the product documentation. If you have additional questions, please let us know.
    Best regards,
    Marc

    Hello,
    This has been posted to the UPK forums:
    Import UPK modules and sections into Knowledge Pathways?
    Best regards,
    Marc

  • I can't open my paid program due to "failed to import cxutils module into python." after upgrading to OS X Yosemite. What should i do?

    please help me to fix this problems. i can't open my paid study program due to " fail to import cxutils module into python."

    I have the same exact error message appearing several times per day but I have not succeeded in finding the source of the problem.
    Any ideas guys?
    The problem started as soon as I upgraded from Mavericks to Yosemite.

  • [BUG] TP3 duplicating imported application module data controls

    Hi,
    I'm using TP3.
    I have an application project A which imports business components from an other project B. Whenever I open JDev (or the project A) the first time, the imported application modules from the other project B get an new entry in A's model.jpx file. This will lead to duplicate data controls in the Data Control panel.
    There might be other possible ways to get duplicate entries, but this one I can reproduce. I'm not sure if there are any implications having duplicate entries (my be longer start up time in OC4J).
    Can anybody confirm my findings?
    Timo

    Hi Frank,
    right now I don't have a test case, but I'll try to set one up. This will take some time. Till then I can only describe in detail what I did.
    I have an older application Module migrated from version 10.1.2.2 via 10.1.3.3 to 11TP3. The application is used to login a user to our application framework. User name and password are checked against a DB table and if correct some user information is compiled into a bean.
    In all of our other applications this login module is used to authenticate a user.
    I added the logingmodule.jar ro the classpath and the used 'file->import->business components' to import the application module into a new ADF Fusion Application (this was the method to import application modules from other projects in versions 10.1.2.1 and also worked in 10.1.3.3).
    Afer importing the jar I can add the login module to the new application module in the 'Data Model-> Application Aodule Instances' shuffle component.
    As far as I found out this triggers an entry in the model.jpx file:  <AppContainee
        Name="ber"
        ObjectType="JboProject">
        <DesignTime>
          <Attr Name="_SourceName" Value="loginModel.jar"/>
        </DesignTime>
      </AppContainee> This entry gets dulicated every time I open the project in JDev 11TP3 the first time.
    I read in the new doc, chapter 31, that there is a new method to reuse application modules (or other objects). This I'm currently checking out. Nonetheless I try to set up a test case.
    Timo

  • Can't import python modules anymore: Problems with PyQt4.Qt

    Hallo,
    at the beginning: Sorry for my horrible english!
    I made a big mistake and a possible stupid thing:
    I yesterday try to install SIP and Ppyqt4 under a virutal enviroment because I want to use SIP for creating
    generator codes between pyhton and C++.
    I got SIP from the AUR's:
    archlinux.org/packages/extra/x86_64/python-sip/
    and installed it this way:
    lucacerone.net/2013/08/installing-pyqt4 … yx-dGd_phF   
    I did it this way because on the official SIP-documentation site I didn't understand, WHERE to install this:
    pyqt.sourceforge.net/Docs/sip4/installa … onfiguring
    I know now, that was a very stupid idea because when I try to run a pyhton script with:
    python programm_file.py
    , I got the follwing errors importing a module in a python script:
    [vain@chinchi2 python_programme]$ python test.py
    Traceback (most recent call last):
    File "test.py", line 25, in <module>
    import matplotlib.pyplot as plt
    File "/usr/lib/python3.3/site-packages/matplotlib/pyplot.py", line 98, in <module>
    _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
    File "/usr/lib/python3.3/site-packages/matplotlib/backends/__init__.py", line 28, in pylab_setup
    globals(),locals(),[backend_name],0)
    File "/usr/lib/python3.3/site-packages/matplotlib/backends/backend_qt4agg.py", line 13, in <module>
    from .backend_qt4 import QtCore, QtGui, FigureManagerQT, FigureCanvasQT,\
    File "/usr/lib/python3.3/site-packages/matplotlib/backends/backend_qt4.py", line 21, in <module>
    import matplotlib.backends.qt4_editor.figureoptions as figureoptions
    File "/usr/lib/python3.3/site-packages/matplotlib/backends/qt4_editor/figureoptions.py", line 13, in <module>
    import matplotlib.backends.qt4_editor.formlayout as formlayout
    File "/usr/lib/python3.3/site-packages/matplotlib/backends/qt4_editor/formlayout.py", line 51, in <module>
    from matplotlib.backends.qt4_compat import QtGui,QtCore
    File "/usr/lib/python3.3/site-packages/matplotlib/backends/qt4_compat.py", line 56, in <module>
    from PyQt4 import QtCore, QtGui
    RuntimeError: the sip module implements API v11.0 but the PyQt4.QtCore module requires API v10.1
    [vain@chinchi2 python_programme]$
    I then upgraded PyQt4 to PyQt 5 with pacman and
    pyqt5-common 5.2-1 [installed]
    python-qscintilla-common 2.8-1 [installed]
    qscintilla 2.8-1 [installed]
    But there is still the same RuntimeErroe with PyQt4. Maybe there exists false dependencies for the shared libraries? How can I get
    rid of these errors, I need pyhton for programming a project. What can I do to solve it?
    Every answer which could help is welcome!
    Last edited by chinchi (2014-03-21 20:59:25)

    Lone_Wolf wrote:
    Note : i know very little about the packages involved here.
    Both of those guides you mention deal with MANUALLY installing sip & pyqt, and that is almost always a BAD idea on archlinux.
    Since you also seem to have installed both with pacman, you likely now have a mix of 2 different sip & pyqt installs in one system.
    to make things work again, you'll have to clean up your system.
    basically that would mean removing the sip & pyqt with pacman, then figuring out what those manual installs added and remove that also.
    it will be tricky and time consuming, reinstaling seems like a much easier and faster method.
    Once you have succesfully re-installed or cleaned up, just install sip & pyqt through pacman and you should be good to go.
    Hi,
    I uninstall sip with:
    sudo pacman -Rsc sip
    also Pyqt and reinstalled them again with Pyqt5 and the new version of sip 4.15.4, so have not more errors like:
    from PyQt4 import QtCore, QtGui
    RuntimeError: the sip module implements API v11.0 but the PyQt4.QtCore module requires API v10.1
    It improved. But I can't still load several Python modules like matplotlib:
    File "erstenprog.py", line 26, in <module>
    import matplotlib.pyplot as plt
    ImportError: No module named 'matplotlib'
    Any idea?
    chinchi

  • Cannot import Re module into WLST shell

    Hello,
    I am trying to import re module into WLST shell bu get the error below. Anyone
    knows how to go about it.
    wls:/(offline)> import re
    Traceback (innermost last):
    File "<input>", line 1, in ?
    ImportError: no module named re
    ImportError: no module named re
    -Vamsi

    Realized that it is probably because JDK1.4 provides Regular Expression support.
    -Vamsi
    "Vamsi" <[email protected]> wrote:
    >
    Hello,
    I am trying to import re module into WLST shell bu get the error below.
    Anyone
    knows how to go about it.
    wls:/(offline)> import re
    Traceback (innermost last):
    File "<input>", line 1, in ?
    ImportError: no module named re
    ImportError: no module named re
    -Vamsi

  • Seeking Windows Update PowerShell Module user experience concerning failure to reboot automatically.

    I am currently using  Windows Update PowerShell Module to updates several machines. I notice that on identically configured windows 2003 and windows 2008 servers some nodes do not reboot on their own and wait for a user confirmation. This keeps them from finishing their update cycle and requires manual intervention. This happens even if no user is logged on.
    Is there a way to get reliable reboots upon reaching conclusion of a patch cycle? I notice that on windows 8 and windows 2012 there is additional support to force reboot http://support.microsoft.com/kb/2835627/en-usBut we have a lot of older platforms (thousands) and I am frustrated that I can't determine why some nodes do not complete their patch cycle by rebooting on their own while other identically built nodes do so.
    Thanks.
    Gautam

    some nodes do not reboot on their own and wait for a user confirmation.
    This happens even if no user is logged on.
    This is technologically impossible, so we need to find out what else is going on in this scenario. For starters, you'll need to show us the WindowsUpdate.log entries where this update was installed and the system restarted.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

Maybe you are looking for

  • SAP R/3 HR USer Personalization

    Hi, We have implemented the SAP EP 6.0 SP2. We are using a few standard SAP IACs like training center, trainings attended, Whos who and the rest of them are all custom developed BSPs. THe portal is connected to the production SAP HR R/3 server in the

  • Updates to a complex view

    SQL Developer version 3.0.04 on XP Pro We are able to use the data grid to update the values of views that are inherently updatable, no problem. We have a complex view with an associated instead-of-update trigger. We are able to update this complex v

  • Migo Gl Postings

    Hi all, I am an abaper who has been saddled with the responsibilty of doing something which i think could be done through functional customizing. My Challenge Goes thus I have a requirement to post  an accounting entry into 2 gl accounts when a migo

  • OIM 11 - Trusted Recon creates random number of users in "disabled" state

    We are on OIM 11.1.1.5 with LDAP sync enabled to OID 11. When creating users from trusted recon, we get a random number of users always created as "disabled". The recon event details shows orchestration:*create* and orchastration:*Enabled*. However E

  • Stroring sms in different groups in BB-9360

    Can i store sms messages in various groups after reading them on my BB-9360 just as i use to smoothly do it in Nokia ?