Bulk add users to WHitelist Sender

Migrating from a Barracuda and have lots of whitelisted IP's and senders. There was is a function in Barracuda to bulk add, is this possible in Ironport running latest code?? I really don't want to manaully enter all these items.
Thanks,
Dave

Congrats on the switch. You'll be impressed with the ESA's accuracy and throughput.
There's not bulk add button but what you can do is add a few entries to the "Mail Policies > HAT Overview > Whitelist" section. Click on the help/? when you're about to add an entry and it will give you an example of the correct format. After you've added a few entries as examples, go to "System Administration > Configuration File" and export the configuration file. Make sure the password is included.
Then, open the configuration file in an editor like Wordpad or Textpad and then search for the entries that you added earlier. Examine the formatting of those entries.
You can then paste in your whitelist ip from the Barracua appliance so that it resembles the exact same formatting of the ESA's format. Then, re-upload the configuration file, save changes and then you can check if the whitelist IP'swere added.
Migrating from a Barracuda and have lots of whitelisted IP's and senders. There was is a function in Barracuda to bulk add, is this possible in Ironport running latest code?? I really don't want to manaully enter all these items.
Thanks,
Dave

Similar Messages

  • Bulk Add Users to Group Using Log on Name

    I have found that the following windows command will add a user to a group in AD:
    dsquery user -samid <logonname>|dsmod group "CN=<groupname>,CN=Builtin,DC=<domainprefix>,DC=<domainsuffix>" -addmbr
    My question is how can I package this into some sort of script to take the logon names (samid) of many users a run them through this so that they are each added to my group?

    @echo off
    setlocal
    set pwd= password
    for /f  %%a in (users.txt) do (
    dsadd user "CN=%%a,OU=<OU> ,DC=<DC>" -pwd %pwd%
    You can add users in users.txt
    I hope this works
    \m/

  • How to bulk add group members in Open Directory

    So the workgroup manager interface is ghey. The + sign to add group members drag&drops users one at a time. I need to bulk add group members.
    I tried ldapadd to add all the users quickly and that doesn't seem to work. The ldap group record now has all the users populated, under the multivalued attribute memberUid), but workgroup manager doesn't see the bulk group members.
    Any idea how to do this?

    Use tcsh SHELL builtin command 'foreach' to accomplish this:
    $ tcsh
    $ which foreach
    foreach: shell built-in command.
    $ foreach user (`cat users.txt`)
    foreach? echo adding $user to group
    foreach? /usr/bin/dscl -u diradmin -P [passwd] /LDAPv3/127.0.0.1 append /Groups/yourgroup GroupMembership $user
    foreach? end

  • Bulk Create Users from CSV: Error: "Put": "There is no such object on the server."?

    Hi,
    I'm using the below PowerShell script, by @hicannl which I found on the MS site, for bulk creating users from a CSV file.
    I've had to edit it a bit, adding some additional user fields, and removing others, and changing the sAMAccount name from first initial + lastname, to firstname.lastname. However now when I run it, I get an error saying:
    "[ERROR]     Oops, something went wrong: The following exception occurred while retrieving member "Put": "There is no such object on the server."
    The account is created in the default OU, with the correct firstname.lastname format, but then it seems to error at setting the "Set an ExtensionAttribute" section. However I can't see why!
    Any help would be appreciated!
    # ERROR REPORTING ALL
    Set-StrictMode -Version latest
    # LOAD ASSEMBLIES AND MODULES
    Try
    Import-Module ActiveDirectory -ErrorAction Stop
    Catch
    Write-Host "[ERROR]`t ActiveDirectory Module couldn't be loaded. Script will stop!"
    Exit 1
    #STATIC VARIABLES
    $path = Split-Path -parent $MyInvocation.MyCommand.Definition
    $newpath = $path + "\import_create_ad_users_test.csv"
    $log = $path + "\create_ad_users.log"
    $date = Get-Date
    $addn = (Get-ADDomain).DistinguishedName
    $dnsroot = (Get-ADDomain).DNSRoot
    $i = 1
    $server = "localserver.ourdomain.net"
    #START FUNCTIONS
    Function Start-Commands
    Create-Users
    Function Create-Users
    "Processing started (on " + $date + "): " | Out-File $log -append
    "--------------------------------------------" | Out-File $log -append
    Import-CSV $newpath | ForEach-Object {
    If (($_.Implement.ToLower()) -eq "yes")
    If (($_.GivenName -eq "") -Or ($_.LastName -eq ""))
    Write-Host "[ERROR]`t Please provide valid GivenName, LastName. Processing skipped for line $($i)`r`n"
    "[ERROR]`t Please provide valid GivenName, LastName. Processing skipped for line $($i)`r`n" | Out-File $log -append
    Else
    # Set the target OU
    $location = $_.TargetOU + ",$($addn)"
    # Set the Enabled and PasswordNeverExpires properties
    If (($_.Enabled.ToLower()) -eq "true") { $enabled = $True } Else { $enabled = $False }
    If (($_.PasswordNeverExpires.ToLower()) -eq "true") { $expires = $True } Else { $expires = $False }
    If (($_.ChangePasswordAtLogon.ToLower()) -eq "true") { $changepassword = $True } Else { $changepassword = $False }
    # A check for the country, because those were full names and need
    # to be land codes in order for AD to accept them. I used Netherlands
    # as example
    If($_.Country -eq "Netherlands")
    $_.Country = "NL"
    ElseIf ($_.Country -eq "Austria")
    $_.Country = "AT"
    ElseIf ($_.Country -eq "Australia")
    $_.Country = "AU"
    ElseIf ($_.Country -eq "United States")
    $_.Country = "US"
    ElseIf ($_.Country -eq "Germany")
    $_.Country = "DE"
    ElseIf ($_.Country -eq "Italy")
    $_.Country = "IT"
    Else
    $_.Country = ""
    # Replace dots / points (.) in names, because AD will error when a
    # name ends with a dot (and it looks cleaner as well)
    $replace = $_.Lastname.Replace(".","")
    $lastname = $replace
    # Create sAMAccountName according to this 'naming convention':
    # <FirstName>"."<LastName> for example
    # joe.bloggs
    $sam = $_.GivenName.ToLower() + "." + $lastname.ToLower()
    Try { $exists = Get-ADUser -LDAPFilter "(sAMAccountName=$sam)" -Server $server }
    Catch { }
    If(!$exists)
    # Set all variables according to the table names in the Excel
    # sheet / import CSV. The names can differ in every project, but
    # if the names change, make sure to change it below as well.
    $setpass = ConvertTo-SecureString -AsPlainText $_.Password -force
    Try
    Write-Host "[INFO]`t Creating user : $($sam)"
    "[INFO]`t Creating user : $($sam)" | Out-File $log -append
    New-ADUser $sam -GivenName $_.GivenName `
    -Surname $_.LastName -DisplayName ($_.LastName + ", " + $_.GivenName) `
    -StreetAddress $_.StreetAddress -City $_.City `
    -Country $_.Country -UserPrincipalName ($sam + "@" + $dnsroot) `
    -Company $_.Company -Department $_.Department `
    -Title $_.Title -AccountPassword $setpass `
    -PasswordNeverExpires $expires -Enabled $enabled `
    -ChangePasswordAtLogon $changepassword -server $server
    Write-Host "[INFO]`t Created new user : $($sam)"
    "[INFO]`t Created new user : $($sam)" | Out-File $log -append
    $dn = (Get-ADUser $sam).DistinguishedName
    # Set an ExtensionAttribute
    If ($_.ExtensionAttribute1 -ne "" -And $_.ExtensionAttribute1 -ne $Null)
    $ext = [ADSI]"LDAP://$dn"
    $ext.Put("extensionAttribute1", $_.ExtensionAttribute1)
    Try { $ext.SetInfo() }
    Catch { Write-Host "[ERROR]`t Couldn't set the Extension Attribute : $($_.Exception.Message)" }
    # Move the user to the OU ($location) you set above. If you don't
    # want to move the user(s) and just create them in the global Users
    # OU, comment the string below
    If ([adsi]::Exists("LDAP://$($location)"))
    Move-ADObject -Identity $dn -TargetPath $location
    Write-Host "[INFO]`t User $sam moved to target OU : $($location)"
    "[INFO]`t User $sam moved to target OU : $($location)" | Out-File $log -append
    Else
    Write-Host "[ERROR]`t Targeted OU couldn't be found. Newly created user wasn't moved!"
    "[ERROR]`t Targeted OU couldn't be found. Newly created user wasn't moved!" | Out-File $log -append
    # Rename the object to a good looking name (otherwise you see
    # the 'ugly' shortened sAMAccountNames as a name in AD. This
    # can't be set right away (as sAMAccountName) due to the 20
    # character restriction
    $newdn = (Get-ADUser $sam).DistinguishedName
    Rename-ADObject -Identity $newdn -NewName ($_.LastName + ", " + $_.GivenName)
    Write-Host "[INFO]`t Renamed $($sam) to $($_.GivenName) $($_.LastName)`r`n"
    "[INFO]`t Renamed $($sam) to $($_.GivenName) $($_.LastName)`r`n" | Out-File $log -append
    Catch
    Write-Host "[ERROR]`t Oops, something went wrong: $($_.Exception.Message)`r`n"
    Else
    Write-Host "[SKIP]`t User $($sam) ($($_.GivenName) $($_.LastName)) already exists or returned an error!`r`n"
    "[SKIP]`t User $($sam) ($($_.GivenName) $($_.LastName)) already exists or returned an error!" | Out-File $log -append
    Else
    Write-Host "[SKIP]`t User $($sam) ($($_.GivenName) $($_.LastName)) will be skipped for processing!`r`n"
    "[SKIP]`t User $($sam) ($($_.GivenName) $($_.LastName)) will be skipped for processing!" | Out-File $log -append
    $i++
    "--------------------------------------------" + "`r`n" | Out-File $log -append
    Write-Host "STARTED SCRIPT`r`n"
    Start-Commands
    Write-Host "STOPPED SCRIPT"

    Here is one I have used.  It can be easily updated to accommodate many needs.
    function New-RandomPassword{
    $pwdlength = 10
    $bytes = [byte[]][byte]1
    $pwd=[string]""
    $rng=New-Object System.Security.Cryptography.RNGCryptoServiceProvider
    while (!(($PWD -cmatch "[a-z]") -and ($PWD -cmatch "[A-Z]") -and ($PWD -match "[0-9]"))){
    $pwd=""
    for($i=1;$i -le $pwdlength;$i++){
    $rng.getbytes($bytes)
    $rnd = $bytes[0] -as [int]
    $int = ($rnd % 74) + 48
    $chr = $int -as [char]
    $pwd = $pwd + $chr
    $pwd
    function AddUser{
    Param(
    [Parameter(Mandatory=$true)]
    [object]$user
    $pwd=New-RandomPassword
    $random=Get-Random -minimum 100 -maximum 999
    $surname="$($user.Lastname)$random"
    $samaccountname="$($_.Firstname.Substring(0,1))$surname"
    $userprops=@{
    Name=$samaccountname
    SamAccountName=$samaccountname
    UserPrincipalName=“$[email protected]”)
    GivenName=$user.Firstname
    Surname=$surname
    SamAccountName=$samaccountname
    AccountPassword=ConvertTo-SecureString $pwd -AsPlainText -force
    Path='OU=Test,DC=nagara,DC=ca'
    New-AdUser @userprops -Enabled:$true -PassThru | |
    Add-Member -MemberType NoteProperty -Name Password -Value $pwd -PassThru
    Import-CSV -Path c:\users\administrator\desktop\users.csv |
    ForEach-Object{
    AddUser $_
    } |
    Select SamAccountName, Firstname, Lastname, Password |
    Export-Csv \accountinformation.csv -NoTypeInformation
    ¯\_(ツ)_/¯

  • Random users getting errors sending emails with instant bounce backs

    I have recently had a fair amount of my users have issues sending emails to internal or external email accounts.  When they hit send they get a NDR immediately with the Error 0x80004005-00000000-00000000.  It does not matter if there is 1 user
    the message is being sent to or many users this is not discriminating in that respect.
    I have found a couple of fixes that seem to solve the problem, some permanent and some it is only temporary.  If I repair the account in Outlook it fixes the problem, some I have to remove the account and add it back in while deleting the ost file. 
    Others I have to do the above and remove cached mode. 
    What is causing this issue?  I suspect that it was and update but I cannot be sure and it all started the same day this week.  We are using Outlook 2013 client and with Exchange 2010 servers.  I have checked the logs on the server and there
    is nothing glaring.  I have done searches and the results do not give a cause, just the fixes which I have tried.  Has anyone seen this before and found the source of the problem?
    Eric

    Hi,
    What does the NDR message say in detail?
    If the body of the message contains the following text:
    The message could not be sent. Try sending the message again later, or contact your network administrator.
    [0x80004005-00000000-00000000]
    We can refer to this kb:
    http://support.microsoft.com/kb/2383603
    Outlook 2010 and Outlook 2013 introduce new named properties. When used, these may be added to the named properties table of the Exchange Server database. Each Exchange database's named properties table has a limit and a new message with additional
    named properties has caused the quota to be exceeded.
    A workaround on Outlook is to remove any additional mailboxes or shared mailboxes from Outlook.
    For resolutions on Exchange, I suggest you read the Resolution section in the kb or contact the Exchange Server support:
    https://social.technet.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    Regards,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • How to bulk upload users in wireless using XML and CUP?

    Hello I am working with wireless and I know there is a way to bulk upload users.
    Can anyone provide an example to upload users?
    Thx
    Utyrear Ytrew

    Hi Daniel
    I am trying to add addition propertires like TV, Copier etc. to Room Mailbox in Exchange 2010 using following commands:-
    [PS] C:\Windows\system32>$ResourceConfiguration = Get-ResourceConfig
    [PS] C:\Windows\system32>$ResourceConfiguration.ResourcePropertySchema+=("Room/Whiteboard")
    Upper two commands run fine but following command gives error:-
    [PS] C:\Windows\system32>Set-ResourceConfig -ResourcePropertySchema $ResourceConfiguration.ResourcePropertySchema
    The term 'Set-ResourceConfig' is not recognized as the name of a cmdlet, function, script file, or operable program. Ch
    eck the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:19
    + Set-ResourceConfig <<<<  -ResourcePropertySchema $ResourceConfiguration.ResourcePropertySchema
        + CategoryInfo          : ObjectNotFound: (Set-ResourceConfig:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    I also tried with space after set but still getting error:
    [PS] C:\Windows\system32>Set -ResourceConfig -ResourcePropertySchema $ResourceConfiguration.ResourcePropertySchema
    Set-Variable : A parameter cannot be found that matches parameter name 'ResourceConfig'.
    At line:1 char:20
    + Set -ResourceConfig <<<<  -ResourcePropertySchema $ResourceConfiguration.ResourcePropertySchema
        + CategoryInfo          : InvalidArgument: (:) [Set-Variable], ParameterBindingException
        + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.SetVariableCommand
    Pl advise the solution at [email protected] . I got this help from
    http://zbutler.wordpress.com/2010/03/17/adding-additional-properties-to-resource-mailboxes-exchange-2010/

  • Add User for Native PDF Conversion fails on Windows 2008 for WebSphere

    I'm installing LiveCycle ES3 Generator on Windows 2008 R2 server with WebSphere 8.  When I try to add users for the Native PDF conversion as part of the generator configuration I get an error.  I've included the installer log error and some of the related WebSphere logs below.  Anyone have any sugestions?
    Configuration Manager Install log:
    [2013-03-11 10:03:35,834], WARNING, Thread-11, com.adobe.pdfg.lcm.configure.users.AddPDFGAdminUserTask, Error while adding user to PDFG :ALC-DSC-005-000: com.adobe.idp.dsc.DSCNotSerializableException: Not Serializable
    Caused by: ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
              at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:152)
              at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.DocumentPassivationInterceptor.intercept(DocumentPassi vationInterceptor.java:53)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
              at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doRequiresNew (EjbTransactionBMTAdapterBean.java:218)
              at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionBMTAdapter_ 3af08fdf.doRequiresNew(Unknown Source)
              at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:133)
              at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:188)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
              at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
              at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:121)
              at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:131)
              at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:329)
              at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invokeCall(SoapSdkEndpoint. java:139)
              at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invoke(SoapSdkEndpoint.java :81)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
              at java.lang.reflect.Method.invoke(Method.java:611)
              at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
              at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
              at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
              at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
              at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
              at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
              at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
              at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
              at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:595)
              at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
              at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1214)
              at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:774)
              at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:456)
              at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java: 178)
              at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:125)
              at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:92)
              at com.adobe.idp.dsc.provider.impl.soap.axis.InvocationFilter.doFilter(InvocationFilter.java :43)
              at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 192)
              at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:89)
              at com.adobe.idp.um.auth.filter.CSRFFilter.doFilter(CSRFFilter.java:86)
              at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 192)
              at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:89)
              at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:926)
              at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java :1023)
              at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:87)
              at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:895)
              at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1662)
              at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:195)
              at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:458)
              at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.jav a:522)
              at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java: 311)
              at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:282)
              at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConn ectionInitialReadCallback.java:214)
              at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitia lReadCallback.java:113)
              at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
              at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
              at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
              at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
              at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
              at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
              at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
              at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1783)
    Caused by: ALC-PDG-80000-000: com.adobe.pdfg.exceptions.ConfigException: ALC-PDG-080-000-Connection to failed service.
              at com.adobe.pdfg.config.PDFGConfigServiceImpl.validateUserCredentials(PDFGConfigServiceImpl .java:494)
              at com.adobe.pdfg.config.PDFGConfigServiceImpl.updateUserAccountsSettings(PDFGConfigServiceI mpl.java:870)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
              at java.lang.reflect.Method.invoke(Method.java:611)
              at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
              ... 71 more
    Caused by: java.lang.IllegalStateException: Connection to failed service.
              at com.adobe.service.ResourcePooler.allocateResource(ResourcePooler.java:96)
              at com.adobe.service.ConnectionFactoryManagerPeer.getConnectionResourceFromPool(ConnectionFa ctoryManagerPeer.java:79)
              at com.adobe.service.J2EEConnectionFactoryManagerPeerImpl.getConnection(J2EEConnectionFactor yManagerPeerImpl.java:103)
              at com.adobe.service.ConnectionFactoryRmiAdapter.getConnection(ConnectionFactoryRmiAdapter.j ava:54)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
              at java.lang.reflect.Method.invoke(Method.java:611)
              at com.ibm.rmi.util.ProxyUtil$4.run(ProxyUtil.java:609)
              at java.security.AccessController.doPrivileged(AccessController.java:280)
              at com.ibm.rmi.util.ProxyUtil.invokeWithClassLoaders(ProxyUtil.java:606)
              at com.ibm.CORBA.iiop.ClientDelegate.invoke(ClientDelegate.java:1177)
              at $Proxy35.getConnection(Unknown Source)
              at com.adobe.service._ConnectionFactoryRemote_Stub.getConnection(_ConnectionFactoryRemote_St ub.java:59)
              at com.adobe.pdfg.config.PDFGConfigServiceImpl.getColorProfileService(PDFGConfigServiceImpl. java:1252)
              at com.adobe.pdfg.config.PDFGConfigServiceImpl.validateUserCredentials(PDFGConfigServiceImpl .java:487)
              ... 77 more
              at com.adobe.idp.dsc.provider.impl.base.AbstractResponseHolder.handleException(AbstractRespo nseHolder.java:150)
              at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkBindingStubUtil.deSerializeResponse( SoapSdkBindingStubUtil.java:132)
              at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:132)
              at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:66)
              at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
              at com.adobe.pdfg.lcm.configure.users.AddPDFGAdminUserTask.run(AddPDFGAdminUserTask.java:76)
              at java.lang.Thread.run(Thread.java:619)
    Systemout
    [3/11/13 10:03:35:744 EST] 000000de ProcessResour A   ALC-BMC-001-505: Service ColorProfileSvc: Starting native process with command line "C:\\Program Files (x86)\\IBM\\WebSphere\\AppServer\\installedApps\\adobe\\server1\\ColorProfileSvc\\ColorPr ofileService.exe"  -IOR IOR:00bdbdbd0000002249444c3a636f6d2f61646f62652f736572766963652f4d616e616765723a312e3000b dbd000000010000000000000460000102bd0000000b4851324b38454945323500bd0000bdbd0000001f4c4d424 9000000154773e3aa001500050442522d3700080100000000000000bd0000000a000000010000001400bdbdbd0 501000100000000000101000000000049424d0a0000000800bd00011600000100000026000000020002bdbd494 24d04000000050005020102bdbdbd0000001f0000000400bd0003000000200000000400bd00010000002500000 00400bd000300000021000002d80001bdbd000000060002bdbd000000240000001e00bd00260002bdbd0000000 10000000b31302e312e32302e353400bd24bb00400000bdbd0000000806062b1200021e0200000028040100080 6062b1200021e020000001864656661756c7457494d46696c6542617365645265616c6d0000000000000000000 00000000000000042bdbd000000240000001e00bd00660042bdbd000000010000000b31302e312e32302e35340 0bd24ba00400000bdbd0000000806062b1200021e02000000280401000806062b1200021e02000000186465666 1756c7457494d46696c6542617365645265616c6d000000000000000000000000000000000002bdbd000000240 000001e00bd00260002bdbd000000010000000b31302e312e32302e353400bd24bb00400000bdbd00000008060 6678102010101000000280401000806066781020101010000001864656661756c7457494d46696c65426173656 45265616c6d000000000000000000000000000000000042bdbd000000240000001e00bd00660042bdbd0000000 10000000b31302e312e32302e353400bd24ba00400000bdbd00000008060667810201010100000028040100080 6066781020101010000001864656661756c7457494d46696c6542617365645265616c6d0000000000000000000 00000000000000002bdbd000000240000001e00bd00260002bdbd000000010000000b31302e312e32302e35340 0bd24bb00400000bdbd0000000806062b1200021e06000000280401000806062b1200021e06000000186465666 1756c7457494d46696c6542617365645265616c6d000000000000000000000000000000000042bdbd000000240 000001e00bd00660042bdbd000000010000000b31302e312e32302e353400bd24ba00400000bdbd00000008060 62b1200021e06000000280401000806062b1200021e060000001864656661756c7457494d46696c65426173656 45265616c6d0000000000000000000000000000000049424d21000000ba00bd00010000bdbd0000001057494d5 57365725265676973747279000000002149424d20576562537068657265204170706c69636174696f6e2053657 276657200bdbdbd00000008382e352e302e300000000007352f312f313200bd0000000a676d313231382e30310 0bdbd000000452863656c6c293a4851324b3845494532354e6f6465303143656c6c3a286e6f6465293a4851324 b3845494532354e6f646530313a28736572766572293a7365727665723100bdffff0001bdbd000000140000000 800bd00b6400224ba   -AppServer websphere
    [3/11/13 10:03:35:787 EST] 000007c2 ProcessResour W   ALC-BMC-001-024: Service ColorProfileSvc: Process ProcessResource@93771607(name=ColorProfileService.exe,pid=0) terminated abnormally with error code {3}
    [3/11/13 10:03:35:794 EST] 000000de ProcessResour A   ALC-BMC-001-505: Service ColorProfileSvc: Starting native process with command line "C:\\Program Files (x86)\\IBM\\WebSphere\\AppServer\\installedApps\\adobe\\server1\\ColorProfileSvc\\ColorPr ofileService.exe"  -IOR IOR:00bdbdbd0000002249444c3a636f6d2f61646f62652f736572766963652f4d616e616765723a312e3000b dbd000000010000000000000460000102bd0000000b4851324b38454945323500bd0000bdbd0000001f4c4d424 9000000154773e3aa001500050442522d3800080100000000000000bd0000000a000000010000001400bdbdbd0 501000100000000000101000000000049424d0a0000000800bd00011600000100000026000000020002bdbd494 24d04000000050005020102bdbdbd0000001f0000000400bd0003000000200000000400bd00010000002500000 00400bd000300000021000002d80001bdbd000000060002bdbd000000240000001e00bd00260002bdbd0000000 10000000b31302e312e32302e353400bd24bb00400000bdbd0000000806062b1200021e0200000028040100080 6062b1200021e020000001864656661756c7457494d46696c6542617365645265616c6d0000000000000000000 00000000000000042bdbd000000240000001e00bd00660042bdbd000000010000000b31302e312e32302e35340 0bd24ba00400000bdbd0000000806062b1200021e02000000280401000806062b1200021e02000000186465666 1756c7457494d46696c6542617365645265616c6d000000000000000000000000000000000002bdbd000000240 000001e00bd00260002bdbd000000010000000b31302e312e32302e353400bd24bb00400000bdbd00000008060 6678102010101000000280401000806066781020101010000001864656661756c7457494d46696c65426173656 45265616c6d000000000000000000000000000000000042bdbd000000240000001e00bd00660042bdbd0000000 10000000b31302e312e32302e353400bd24ba00400000bdbd00000008060667810201010100000028040100080 6066781020101010000001864656661756c7457494d46696c6542617365645265616c6d0000000000000000000 00000000000000002bdbd000000240000001e00bd00260002bdbd000000010000000b31302e312e32302e35340 0bd24bb00400000bdbd0000000806062b1200021e06000000280401000806062b1200021e06000000186465666 1756c7457494d46696c6542617365645265616c6d000000000000000000000000000000000042bdbd000000240 000001e00bd00660042bdbd000000010000000b31302e312e32302e353400bd24ba00400000bdbd00000008060 62b1200021e06000000280401000806062b1200021e060000001864656661756c7457494d46696c65426173656 45265616c6d0000000000000000000000000000000049424d21000000ba00bd00010000bdbd0000001057494d5 57365725265676973747279000000002149424d20576562537068657265204170706c69636174696f6e2053657 276657200bdbdbd00000008382e352e302e300000000007352f312f313200bd0000000a676d313231382e30310 0bdbd000000452863656c6c293a4851324b3845494532354e6f6465303143656c6c3a286e6f6465293a4851324 b3845494532354e6f646530313a28736572766572293a7365727665723100bdffff0001bdbd000000140000000 800bd00b6400224ba   -AppServer websphere
    [3/11/13 10:03:35:839 EST] 000007c5 ProcessResour W   ALC-BMC-001-024: Service ColorProfileSvc: Process ProcessResource@99362d6c(name=ColorProfileService.exe,pid=0) terminated abnormally with error code {3}
    SystemErr
    [3/11/13 10:03:35:778 EST] 000007c2 SystemErr     R system exception1096024066
    [3/11/13 10:03:35:778 EST] 000007c2 SystemErr     R Unknown Exception in doFlush()
    [3/11/13 10:03:35:778 EST] 000007c2 SystemErr     R AdobeServer::Logger: flusher terminated abnormaly
    [3/11/13 10:03:35:829 EST] 000007c5 SystemErr     R system exception1096024066
    [3/11/13 10:03:35:830 EST] 000007c5 SystemErr     R Unknown Exception in doFlush()
    AdobeServer::Logger: flusher terminated abnormaly

    I today finished installing on W2R2+WebSphere 8 LC ES4 with a similar error on XMLForm.exe. This link worked for me and my error was similar. 
    http://blogs.adobe.com/livecycle/2012/05/livecycle-xmlforms-native-process-and-websphere-g lobal-security.html

  • User unable to send from additional Mailbox.

    Hello all,
    Here is the scenario that I am working with:
    I have two users: Lucy and Jane. Lucy is Jane's boss, and has given Jane access to her mailbox to send/receive emails while Lucy is busy.
    Jane is able to send email on behalf of Lucy as long as she stays logged in to her own account.
    However, When logged into Lucy's account (as it was added as an additional profile to Outlook) Jane is unable to send any emails; they all get stuck in the outbox.
    Both these users are O365 users, and we have verified that send/receive works in the OWA for both Lucy and Jane.
    Jane is using the Outlook 2010 client on a Windows 7 machine.
    Any information you could come up with would be of great assistance!

    Hi,
    If Jane wants to send as Lucy with an additional profile for Lucy account, Jane needs to have Send As permission instead of Send On behalf permission to Lucy's mailbox. To grant send as permission, we can run the following command in EMS:
    Add-ADPermission -Identity Lucy -User Jane -ExtendedRights "Send As"
    For more information about send as permission, please refer to:
    http://technet.microsoft.com/en-us/library/bb676368(v=exchg.141).aspx
    Regards,
    Winnie Liang
    TechNet Community Support
    Thank you for the reply.
    One thing should be mentioned: When jane is logged into her own profile in Outlook, she is able to send emails from Lucy's email completey fine. When Jane logs into Lucy's profile in Outlook, the emails all get stuck in the outbox.
    In terms of the Send As permission, I would assume that Lucy has it as she is able to send email from Lucy's email when logged into Outlook on her own profile.

  • I want to add user in business workflow  like user which is already present

    hello  experts how can i add user in business workflow like other user which is already present there. i want to take other user which is already present as reference for the new user.

    Hi,
    see my problem is user ABC doesn't get any messages in his
    Business workplace.
    User XYZ is having messages in his business
    worplace.
    SO I WANT user abc should get messages same as xyz.
    If you know the workitem id then you can use the FM SAP_WAPI_FORWARD_WORKITEM to send the workitem multiple  user.
    In Fm SAP_WAPI_FORWARD_WORKITEM you need to pass the workitem id in field WORKITEM_ID and all the user id in the table USER_IDS.
    If you need to know the responsible agents of a particular workitem then you have can use FM SAP_WAPI_GET_WI_AGENTS where you need to pass the workitem number.
    Thanks and regards,
    SNJY

  • This is how to bulk create users programatically (source code included)

    After scouring all of the related forums and gathering all of
    the clips of code and viewing all of the comments and docs on
    the api's, I have found a working means of bulk loading my users
    into portal from my previous system...
    NOTE: THIS CODE SHOULD BE USED VERY CAREFULLY, AS, IT CAN REALLY
    DESTROY YOUR SYSTEM MAYBE EVEN YOUR HARDWARE AND IN REARE CASES,
    BRING WORLD WIDE PLAGUES ACCOMANIED BY WEIGHT GAIN...
    Now, the only thing it does not do is trap the error of trying
    to create a user that already exists.
    If, only someone would give me a job doing this stuff (hint,
    hint):
    DECLARE
    CURSOR user_cursor IS
    /* Add your own query to get needed data
    for import.... this is mine coming from a
    migrated SQL2000 db...
    SELECT
    "SYSTEM"."OnlineProfiles"."LogonName",
    "SA"."EMPLOYEES"."EMPLOYEEID",
    "SA"."EMPLOYEES"."LAST_NAME",
    "SA"."EMPLOYEES"."FIRST_NAME",
    "SA"."EMPLOYEES"."MIDDLE_NAME",
    "SA"."EMPLOYEES"."DOB",
    "SA"."EMPLOYEES"."EMAIL",
    "SA"."EMPLOYEES"."PHONE",
    "SA"."EMPLOYEES"."STREET_ADDRESS",
    "SA"."EMPLOYEES"."APT",
    "SA"."EMPLOYEES"."CITY",
    "SA"."EMPLOYEES"."STATE",
    "SA"."EMPLOYEES"."ZIP",
    "SA"."EMPLOYEES"."DISTRICT",
    "SA"."EMPLOYEES"."JOB",
    "SA"."EMPLOYEES"."DATEOFHIRE",
    "SYSTEM"."OnlineProfiles"."Password"
    from "SA"."EMPLOYEES", "SYSTEM"."OnlineProfiles"
    WHERE "SA"."EMPLOYEES"."EMPLOYEEID"
    = "SYSTEM"."OnlineProfiles"."EmployeeID";
    P_USER_NAME VARCHAR2(256);
    P_EMPNO VARCHAR2(30);
    P_LAST_NAME VARCHAR2(60);
    P_FIRST_NAME VARCHAR2(60);
    P_MIDDLE_NAME VARCHAR2(60);
    P_DATE_OF_BIRTH DATE;
    P_EMAIL VARCHAR2(256);
    P_HOME_PHONE VARCHAR2(30);
    P_HOME_ADDR1 VARCHAR2(60);
    P_HOME_ADDR2 VARCHAR2(30);
    P_HOME_CITY VARCHAR2(30);
    P_HOME_STATE VARCHAR2(30);
    P_HOME_ZIP VARCHAR2(30);
    P_ORGANIZATION VARCHAR2(150);
    P_TITLE VARCHAR2(80);
    P_HIREDATE DATE;
    P_PASSWORD VARCHAR2(30);
    l_uid number(32);
    l_gid number(32);
    l_errno number(30);
    l_group varchar2(100) := 'BDS_USERS'; -- All users added to same
    group
    l_debug number(10) := 0;
    BEGIN
    OPEN user_cursor;
    LOOP
    FETCH user_cursor INTO P_USER_NAME,
    P_EMPNO,
    P_LAST_NAME,
    P_FIRST_NAME,
    P_MIDDLE_NAME,
    P_DATE_OF_BIRTH,
    P_EMAIL,
    P_HOME_PHONE,
    P_HOME_ADDR1,
    P_HOME_ADDR2,
    P_HOME_CITY,
    P_HOME_STATE,
    P_HOME_ZIP,
    P_ORGANIZATION,
    P_TITLE,
    P_HIREDATE,
    P_PASSWORD;
    EXIT WHEN user_cursor%NOTFOUND;
    l_debug := 1; -- Add user to portal...
    l_uid := portal30.wwsec_api.add_portal_user(
    p_user_name =>P_USER_NAME,
    p_portal_user => 'Y',
    p_Display_Personal_Info=>'Y',
    p_Known_As=>P_FISRT_NAME,
    p_Organization=>P_ORGANIZATION,
    p_Empno=>P_EMPNO,
    p_Last_Name=>P_LAST_NAME,
    p_First_Name=>P_FIRST_NAME,
    p_Middle_Name=>P_MIDDLE_NAME,
    p_Date_Of_Birth=>P_DATE_OF_BIRTH,
    p_Email=>P_EMAIL,
    p_Home_Phone=>P_HOME_PHONE,
    p_Home_Addr1=>P_HOME_ADDR1,
    p_Home_Addr2=>P_HOME_ADDR2,
    p_Home_City=>P_HOME_CITY,
    p_Home_State=>P_HOME_STATE,
    p_Home_Zip=>P_HOME_ZIP,
    p_Organization=>P_ORGANIZATION,
    p_Title=>P_TITLE,
    p_Hiredate=>P_HIREDATE);
    l_debug := 2; -- Create a User for Login Server...
    portal30_sso.wwsso_api_user_admin.create_user
    (P_USER_NAME
    ,P_PASSWORD
    ,P_EMAIL
    ,sysdate
    ,null
    ,FALSE
    ,l_errno);
    l_debug := 3; -- Get default group id number...
    l_gid := portal30.wwsec_api.group_id(l_GROUP);
    l_debug := 4; -- Activate new user...
    portal30.wwsec_api.add_user_to_list(l_uid, l_gid, 0);
    l_debug := 5; -- Assign new user to default group...
    portal30.wwsec_api.set_defaultgroup(p_groupid =>
    l_gid,p_username => P_USER_NAME);
    l_debug := 51;
    commit;
    l_debug := 6; -- Output progress to screen...
    htp.p('Created User : '||P_USER_NAME||' UID '||l_uid||'
    with the Group ID '||l_gid||htf.br);
    END LOOP;
    CLOSE user_cursor;
    END;
    Enjoy!
    PS someone write the trap for the unique constraint violation
    and email it to me....
    Bryancan

    Sorry had a couple of typos in there... this one works...
    DECLARE
    CURSOR user_cursor IS
    SELECT
    "SYSTEM"."OnlineProfiles"."LogonName",
    "SA"."EMPLOYEES"."EMPLOYEEID",
    "SA"."EMPLOYEES"."LAST_NAME",
    "SA"."EMPLOYEES"."FIRST_NAME",
    "SA"."EMPLOYEES"."MIDDLE_NAME",
    "SA"."EMPLOYEES"."DOB",
    "SA"."EMPLOYEES"."EMAIL",
    "SA"."EMPLOYEES"."PHONE",
    "SA"."EMPLOYEES"."STREET_ADDRESS",
    "SA"."EMPLOYEES"."APT",
    "SA"."EMPLOYEES"."CITY",
    "SA"."EMPLOYEES"."STATE",
    "SA"."EMPLOYEES"."ZIP",
    "SA"."EMPLOYEES"."DISTRICT",
    "SA"."EMPLOYEES"."JOB",
    "SA"."EMPLOYEES"."DATEOFHIRE",
    "SYSTEM"."OnlineProfiles"."Password"
    from "SA"."EMPLOYEES", "SYSTEM"."OnlineProfiles"
    WHERE "SA"."EMPLOYEES"."EMPLOYEEID"
    = "SYSTEM"."OnlineProfiles"."EmployeeID";
    P_USER_NAME VARCHAR2(256);
    P_EMPNO VARCHAR2(30);
    P_LAST_NAME VARCHAR2(60);
    P_FIRST_NAME VARCHAR2(60);
    P_MIDDLE_NAME VARCHAR2(60);
    P_DATE_OF_BIRTH DATE;
    P_EMAIL VARCHAR2(256);
    P_HOME_PHONE VARCHAR2(30);
    P_HOME_ADDR1 VARCHAR2(60);
    P_HOME_ADDR2 VARCHAR2(30);
    P_HOME_CITY VARCHAR2(30);
    P_HOME_STATE VARCHAR2(30);
    P_HOME_ZIP VARCHAR2(30);
    P_ORGANIZATION VARCHAR2(150);
    P_TITLE VARCHAR2(80);
    P_HIREDATE DATE;
    P_PASSWORD          VARCHAR2(30);
    l_uid number(32);
    l_gid number(32);
    l_errno number(30);
    l_user varchar2(100);
    l_group varchar2(100) := 'BDS_USERS';
    l_debug number(10) := 0;
    BEGIN
    OPEN user_cursor;
    LOOP
    FETCH user_cursor INTO P_USER_NAME,
              P_EMPNO,
              P_LAST_NAME,
              P_FIRST_NAME,
              P_MIDDLE_NAME,
              P_DATE_OF_BIRTH,
              P_EMAIL,
              P_HOME_PHONE,
              P_HOME_ADDR1,
              P_HOME_ADDR2,
              P_HOME_CITY,
              P_HOME_STATE,
              P_HOME_ZIP,
              P_ORGANIZATION,
              P_TITLE,
              P_HIREDATE,
              P_PASSWORD;
         EXIT WHEN user_cursor%NOTFOUND;
         l_debug := 1;
         l_uid := portal30.wwsec_api.add_portal_user(p_user_name
    =>P_USER_NAME,p_portal_user => 'Y',
    p_Organization=>P_ORGANIZATION,
    p_Empno=>P_EMPNO,
    p_Last_Name=>P_LAST_NAME,
    p_First_Name=>P_FIRST_NAME,
    p_Middle_Name=>P_MIDDLE_NAME,
    p_Date_Of_Birth=>P_DATE_OF_BIRTH,
    p_Email=>P_EMAIL,
    p_Home_Phone=>P_HOME_PHONE,
    p_Home_Addr1=>P_HOME_ADDR1,
    p_Home_Addr2=>P_HOME_ADDR2,
    p_Home_City=>P_HOME_CITY,
    p_Home_State=>P_HOME_STATE,
    p_Home_Zip=>P_HOME_ZIP,
    p_Title=>P_TITLE,
    p_Hiredate=>P_HIREDATE);
         l_debug := 2;
         portal30_sso.wwsso_api_user_admin.create_user
    (P_USER_NAME
         ,P_USER_NAME
         ,P_USER_NAME||'@getbenefits.com'
         ,sysdate
         ,null
         ,FALSE
         ,l_errno);
         l_debug := 3;
         l_gid := portal30.wwsec_api.group_id(l_GROUP);
         l_debug := 4;
         portal30.wwsec_api.add_user_to_list(l_uid, l_gid, 0);
         l_debug := 5;
         portal30.wwsec_api.set_defaultgroup(p_groupid =>
         l_gid,p_username => P_USER_NAME);
         l_debug := 51;
         commit;
         l_debug := 6;
         htp.p('Created User : '||P_USER_NAME||' UID '||l_uid||'
    with the Group ID '||l_gid||htf.br);
    END LOOP;
    CLOSE user_cursor;
    END;

  • Active Directory and 10.8 Server: Can't add users

    I would be most appreciative of any help you folks can give a Mac user at a predominantly Windows/MS/Exchange Tier I university.
    I bought a MacMini to act as the departmental File server to allow a granular level of permissions on folders for faculty, administration, residents and students. The students and residents rotate in yearly or for 2 years at a time.
    The problem has become when I try and add users from the IT ActiveDirectory domain. The IT folks set-up the DNS, gave it a static IP address etc. all correctly.
    The MacMini was also bound to AD in Sys Prefs > Users & Groups > Login Options > Network Account Server to the domain.
    There are over 200,000 users in the university system. When I try and search for a user in the Users sidebar it pulls up a completely random list of users and lists "500+ users" next to the buttons. When I try and search for a user, invariably it fails. Furthermore, there is the term "Not Allowed" next to the names of all the random AD users.
    What am I doing wrong?
    The Sys Admin guy I spoke with said the only way he could figure it out was to go to Groups sidebar, create a new group and add the user that way.
    The whole premise for this is to allow the users the same login ID and PWD they do for every other service on campus. That's it. I then want to be able to control folder permissions directly on the MacMini. Is this possible or do I need to use Open Directory in conjunction with AD?
    Any help for this formerly Apple Power User would be greatly appreciated.
    Thanks folks.

    Hi
    This is a Jabber-ism I think.
    You get this if you are using UDS and the users you are trying to add aren't CUPS-enabled.
    You probably also get it if the users are from LDAP and aren't CUPS enabled.
    CUPC by comparison allows manual contact creation as well as adding of non CUPS people.
    Regards
    Aaron

  • System Image Utility / Automator Add User Account no default shell

    I've noticed when creating a customized netrestore flow in System Image Utility for Yosemite, the result of the "Add User Account" action is a user missing a default shell. Noticed this when terminal kept closing as soon as it was opened. dscl -create localhost /Local/Default/Users/USERNAME UserShell /bin/bash fixed the issue but is obviously undesired for provisioning new computers. Any ideas how to configure a default shell for new users created in this way?

    Solved by ensuring the add user account action immediately follows the define image source action.

  • HELP: I can no longer add users to my external hard drives

    Sorry for the duplicate, someone hacked my other account.
    So here's the skinny, I was following some instructions on here to remove the "unknown user" from the list of users that was attached to my Hard Drives.
    Path: System Preferences/Users and Groups/Login Options/Join/Open Directory Utility/Directory Editor.
    Under Users from the pulldown I deleted "Unkown User" Now I am unable to add users to any of my external hard drives via Sharing under System preferences. When I click the + it will let me select a user, but when I click the select button it will not add that user to the list. It remains blank.
    I've tried reformatting one of the hard drives, and a re-boot. Still am unalbe to add users.
    Please help!

    here is a copy of the disc utility log....laila is the name of the extrenal hd i was able to use successfully last.
    2012-07-04 08:10:34 -0400: Disk Utility started.
    2012-07-04 08:17:58 -0400: Preparing to erase : “LAILA”
    2012-07-04 08:17:58 -0400:           Partition Scheme: Master Boot Record
    2012-07-04 08:17:58 -0400:           1 volume will be created
    2012-07-04 08:17:58 -0400:                     Name                    : “LAILA”
    2012-07-04 08:17:58 -0400:                     Size                    : 160.04 GB
    2012-07-04 08:17:58 -0400:                     File system          : MS-DOS (FAT)
    2012-07-04 08:17:59 -0400: Unmounting disk
    2012-07-04 08:18:02 -0400: Creating the partition map
    2012-07-04 08:18:03 -0400: Waiting for the disks to reappear
    2012-07-04 08:18:03 -0400: Formatting disk3s1 as MS-DOS (FAT) with name LAILA
    2012-07-04 08:18:04 -0400: 512 bytes per physical sector
    /dev/rdisk3s1: 312505472 sectors in 4882898 FAT32 clusters (32768 bytes/cluster)
    bps=512 spc=64 res=32 nft=2 mid=0xf8 spt=32 hds=255 hid=2 drv=0x80 bsec=312581806 bspf=38148 rdcl=2 infs=1 bkbs=6
    2012-07-04 08:18:04 -0400: Mounting disk
    2012-07-04 08:18:06 -0400: Erase complete.
    2012-07-04 08:18:06 -0400:
    2012-07-11 15:48:08 -0400: Disk Utility started.
    2012-07-11 15:48:42 -0400: Eject of “Unattached Disk Image” succeeded
    2012-07-11 15:48:42 -0400: Eject of “Flash Player” failed
    2012-07-11 15:59:10 -0400: Disk Utility started.
    2012-07-11 16:00:51 -0400: Disk Utility started.
    2012-07-11 16:02:19 -0400: Disk Utility started.
    2012-07-12 23:22:04 -0400: Disk Utility started.
    2012-07-13 09:13:52 -0400: Disk Utility started.
    2012-07-13 09:20:22 -0400: Disk Utility started.
    2012-07-13 09:45:11 -0400: Disk Utility started.
    ===== Friday, July 13, 2012 9:47:15 AM Eastern Daylight Time =====

  • Add User to Group Behavior

    Hi all
    I found
    this post that explains the same issue I'm having, but the marked answer isn't relevant to my environment. I've built a user creation runbook, using 2012 R2 and this
    Active Directory Integration Pack. Everything works properly, except I'm getting strange security log events when using the Add User to Group activity.
    In one of the tests, I added a single user that was being created to about 100 different groups. Let's say one group has 50 members. When the user gets added to that group, the security audit shows that 50 users were removed from the group, and then those
    50 users were added back plus my new user. It shows this activity for every group that the user was added to. I get the following two actions for every member of the group:
    Member '-' was removed from 'Domain\Group' by 'Domain\User' on...
    Member 'DN of Member' was added to 'Domain\Group'...
    This is a problem because it makes our audit reports and notifications worthless since we'd have to read through all the noise to see an actual anomaly. I'm also concerned that if users are actually being removed and re-added to those groups, that there
    could be some consequences of that that we aren't seeing yet (i.e. application access interruptions, or what if the connection to AD is lost after removing the users but before adding them back in). Although I should say I'm not convinced that the users are
    actually being removed because as you can see above, no member information is recorded on the removal, and all the removals and additions have the same exact time stamp meaning they occurred within 1 second, which seems pretty fast given that some of our groups
    are large.
    Is this the intended behavior of the Add User to Group activity? If so, is there a workaround I can use to avoid this behavior? The next thing I'll try is using PowerShell to add the user to the group, but this option isn't ideal since the runbook will be
    managed by users who are not that familiar with scripting, so I'd like the solution to contain as little as possible.
    Thanks

    Hi,
    the issue of the AD IP 7.0 is reported here 
    http://social.technet.microsoft.com/Forums/de-DE/eef9cdda-774f-4b95-bd89-aa3f86feee9b/ad-integration-pack-add-user-to-group-activity-problem?forum=scoscip
    Try the up-to-date Version 7.2
    http://www.sc-orchestrator.eu/index.php/scoblog/115-updated-system-center-2012-r2-orchestrator-integration-packs-available
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • Calendar Server - Unable to add users

    When I try to add users to a node I get an error message like:
    Working please wait...
    unidsattach failed, see /users/unison/log/unidsattach.log, Error Code =
    0x13205
    Add user [uid=ttesting,o=Airius.com] to node: failed
    Add user(s) to node completed.
    <P>
    This means that the Calendar Server is unable to communicate
    properly with the Directory Server. There are some Calendar-specific
    entries and an ACI that are added to the Directory Server when a node is
    created. These are critical to the proper functioning of the Calendar
    Server. This error may mean that they are missing.
    <P>
    You can also check the access log file of the Directory server to see what
    the problem may be. If you see entries like:
    [27/Jan/1999:07:39:47 -0500] conn=1 op=2 SRCH base="o=Airius.com" scope=2 filter="(nsc
    alxitemid=15000:00001)"
    [27/Jan/1999:07:39:47 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=0
    This indicates that 0 entries were returned for the search on the SYSOP
    Calendar user.
    <P>
    If you have recently imported data into your Directory Server, it is likely
    that these entries no longer exist. An import to a Directory Server does
    not append data; it replaces the current directory with the data in the
    LDIF file being loaded. You will need to recreate this Calendar information.
    Export your directory to an LDIF file and review the output to see if these
    entries exist.
    <P>
    Here is a boilerplate that may be useful if you don't have a backup copy
    of the original LDIF. Try replacing the baseDN (o=Airius.com) and the node
    id (15000) to match your Calendar configuration. The password is "password".
    The following is for illustration purposes and may not fix all problems:
    aci: (target ="ldap:///o=Airius.com")(targetattr = "*")(version 3.0
    ; acl "Untitled"; allow (write, add , delete ) groupdn = "ldap:///cn=Cal-A
    dministrators-15000, o=Airius.com" ;)
    dn: cn=Cal-Administrators-15000, o=Airius.com
    cn: Cal-Administrators-15000
    objectclass: top
    objectclass: groupofuniquenames
    uniquemember: nsCalXItemId=15000:00001, o=Airius.com
    uniquemember: nsCalXItemId=15000:00002, o=Airius.com
    uniquemember: nsCalXItemId=15000:00003, o=Airius.com
    uniquemember: nsCalXItemId=15000:00004, o=Airius.com
    uniquemember: nsCalXItemId=15000:00005, o=Airius.com
    uniquemember: nsCalXItemId=15000:00006, o=Airius.com
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140113Z
    modifytimestamp: 19980501140113Z
    dn: nsCalXItemId=15000:00001, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00001
    sn: SYSOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00002, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00002
    sn: CWSOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00003, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00003
    sn: STREAMOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00004, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00004
    sn: FOREIGN
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00005, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00005
    sn: SYNCH
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z
    dn: nsCalXItemId=15000:00006, o=Airius.com
    objectclass: top
    objectclass: nsCalAdmin
    nscalxitemid: 15000:00006
    sn: HOLIDAYOP
    userpassword: {SHA}W6ph5Mm5Pz8GgiULbPgzG37mj9g=
    creatorsname: uid=admin,o=Airius.com
    modifiersname: uid=admin,o=Airius.com
    createtimestamp: 19980501140114Z
    modifytimestamp: 19980501140114Z

    Probably in the next couple of weeks, we are releasing beta-2.
    Kumar
    Jim Clark wrote:
    >
    thanks, how often is there a beta refresh?
    Jim
    "Kumar Allamraju" <[email protected]> wrote in message
    news:[email protected]..
    Jim,
    I do not see this problem in the latest source line.
    Probably I'm running a WLS server that is slightly newer than the beta,
    so maybe
    some things might have been fixed.
    Kumar
    Jim Clark wrote:
    I was able to add users and groups through the "console" app, but I was
    unable to add users to the groups. After I added a user "jim" and a
    group
    "clark", I tried adding "jim" to the "clark". It just said "Addeduser...",
    and this, "Members: (none)".
    Jim

Maybe you are looking for

  • Error message when updating tools

    Hello, I received the following warning/error: In order to enable the BugsubmitterErrorManager, you must set the following system property in your IDE start script: org.openide.ErrorManager=org.netbeans.SBSErrorManager. Note that this setting is shar

  • Upgrade to os X and xp don't start

    Well...yesterday I updated my Macbook 6.1 to the last OS X Mavericks. In my pc, there is a partition with Win XP . Before the upgrade, all the pc (mac and xp) work fine, but now was impossible to start win xp (when I select the drive appear a blue sc

  • Can't get sound to play ib .avi files

    I have a Supacam DVX camera I bought at MacWorld '06. It records well and I am able tp play in VLC, but I can't get the sound to play in Quicktime or imovie. Any help is appreciated.

  • No ios5 on itunes 10.5?

    i juz update itunes to 10.5, but when i plug in my itouch4g then click check for update, there's no ios5 :( i try click several times but still the answer is "4.3.3 is the current version". why is dat? and how can i get ios5 for my itouch4? :( plz he

  • Showing last material no. records in all material

    Hi, its a material master report, i have a problem in it that records are not coming properly... means against 1 material no....there shows his correct data...but when i want to display more than 1 material data...it shows the last material data in a