CFLDAP with hyphen in the name of the attribute

Hello people,

I came across a problem where an AD attribute has hyphen in its name.

Thus, the code would be something like:

< name = "MyQuery" action = "query"... cfldap attributes = "one, two, this - hyphen" >

How would I be able to retrieve the value of attributes for the "this-hyphen" in the code?

I tried:

< cfset MyVar = MyQuery.this - trait of Union >

< cfset MyVar = Variable ['MyQuery.this - trait of Union '] >

< cfset MyVar = MyQuery ['this-hyphen"] >

None of them works!

This comes to the following conclusion:

1 CFLDAP gets not attribute this trait-to Union correctly due to hyphen in its name

2. "this link" does not exist in AD.

For point 1, I would thought that it is OK to put the hyphen in the list of attributes because it is by passing the string.

I can't guarantee how the remote directory will react to be invited for an attribute that does not exist... one would need to read than the LDAP specification for that I guess.  I'm not ;-)

But how the System Center manages is not relevant, to a point.  Your code must itself busy with what is handed to you.  If you don't even know if your returned queries even has this column inside?  Would not be a good place to start?  Do you have the query on the subject of dumping and verified?

I know that itself has no problem with the attributes with names of hyphen.  Well when I went through all the what a few years ago (following the steps similar to what we do here ;-), the data comes back fine.)

For point 2, I just tried to bring in the RANDOM attribute that does not exist in AD (for example ASWEQ), and it does not seem to throw an error when I try to access this attribute in CFSET.

So what exactly is happening here?

OK, well I guess that answers my question above.  ADS will be return any attribute (?) you ask, with just a value empty if it does not exist.  I doubt he would act differently for hyphenated names, but it's easy to answer in dumping on your query and seeing what you have.  Is this what?

What happens if find you an attribute valid with a hyphen in the name?  I don't know there is a lot of merit asking for stuff that does not exist...

--

Adam

Tags: ColdFusion

Similar Questions

  • Help with pointing to the ATTRIBUTES - Calc Script

    Hi all

    I have a question about pointing to the attributes in the calc script:

    I want to calculate members (level 0) associated with the attribute 'A', but their parent attribute must be tied to the attribute 'B '.

    So if my Sun structure looks like:

    LVL 1: mbr 1 (ATTR = 'B')

    LVL 0: mbr 2 (ATTR = 'A')

    0:MBR lvl 3 (ATTR = 'C')

    lvl1: mbr 4 (ATTR = "D")

    0:MBR lvl 5 (ATTR = 'A')

    0:MBR lvl 6 (ATTR = 'A')

    According to the above example, the calculated member list should be: "mbr 2.

    I don't know how to do in my script to the PARENT of the CURRMBR its attribute is equal to "B."

    The problem is oriented to the PARENT attribute with the IF statement while you run level 0.

    I also tried to FIX it, but it was not effective, you can not write FIX (@CHILDREN (@ATTRIBUTE ('B'))).

    I'll be happy if someone could share their ideas,

    Thank you

    Really?  Documentation (which I corrected not always, I admit) indicates that the parameter mbrList can be 'a comma-delimited list of members grouped together using @LIST or set function member (for example @DESCENDANTS) that returns a list of members.'.

    I created an additional attribute of 'MarketSize' with 'GRL' and 'Sml' members in Sample.Basic, then labeled 'East' and 'Central' as "LRG" and found that it works very well:

    DIFFICULTY (@EXPAND ("@CHILDREN", @ATTRIBUTE ("Lrg")))

    "Sales" = 999;

    ENDFIX

  • Problem with development of the attribute in the OPS

    Dear all,

    I have a requirement while defining an attribute like below.

    I have a table advanced that I'm the filling of data as below:

    lineNum (Column) POINT

    1                         A

    2                         B

    3                         C

    null                      D

    null                     E

    so my requirement is when I press a button, say "Save" he want to check maximum linenum of the VO and need to set other values as the maximum value + 1 null...

    so it should print as so here maximum line number is 3, so I need to set two values 4 and 5 others

    1                  A

    2                  B

    3                  C

    4                  D

    5                  E

    If the table contains data such as

    A null

    Then it should display as

    1A

    I tried using below piece of code

    for (rowi XXDPECONTAINDATAVORowImpl = (XXDPECONTAINDATAVORowImpl) vo2.first ();)

    Rowi! = null;

    Rowi = (XXDPECONTAINDATAVORowImpl) vo2.next ())

    {

    rowi.setAttribute ("linenum", i);

    i ++ ;

    }

    Using this code it contains all the lines of the definition, but I don't need these lines with null value I need to value maximum linenum + 1, please help me it's urgent


    Thank you

    Deb

    Hello

    use code below to find maximum of Linenum first lines and then set the values according to your requirement.

    Number of maxLineNum = new Number (0);

    XXDPECONTAINDATAVOImpl vo2 = getXXDPECONTAINDATAVO1();

    RowSetIterator iter = vo2.createRowSetIterator ("iter");

    for (int i = 0; iter.hasNext (); i ++)

    {

    Rowi XXDPECONTAINDATAVORowImpl = (XXDPECONTAINDATAVORowImpl) iter.next ();

    Consider only the lines where the linenum is not null

    If (null! = rowi.getlinenum () & maxLineNum.intValue ())<>

    {

    maxLineNum = rowi.getlinenum;

    }

    }

    iter.closeRowSetIterator ();

    code to set the number of the line update-

    RowSetIterator iterUpdate = vo2.createRowSetIterator ("iter");

    for (int i = 0; iterUpdate.hasNext (); i ++)

    {

    Rowi XXDPECONTAINDATAVORowImpl = (XXDPECONTAINDATAVORowImpl) iterUpdate.next ();

    Consider only the rows where the linenum is null

    If (null == Rowi.getlinenum ())

    {

    Rowi.setlinenum (maxLineNum);

    maxLineNum = new Number (maxLineNum.intValue () ++);

    }

    }

    iterUpdate.closeRowSetIterator ();

    Thank you

    Kone

  • FTP access with spaces in the names of dir

    Hello

    I'm doing a recursive list of files in an FTP directory.

    Although FileZilla deals with spaces in the names of directory without problem, it seems that Labview struggles a little.

    In effect, if I ask labview for files and a folder named directory, for example/Projects/Camera 1 /, it returns an empty array (while FileZilla sees clearly 12 files in that folder). It seems that the problem is white in the name space, because if I replace (using FileZilla) the space character by '_', LV correctly gives me the list of files.

    No idea how the LabView FTP working properly deal with spaces in the directory and file names?

    Best regards

    perper2001

    Hello

    Unfortunately, I can't share the code, but here's a screenshot of what it looks like.  It is based on the "vi directory listing" which comes with labview.

    Basically, it send the command MLSD and wait for an answer. After that, it's a matter of parsing of the response from the server that my FTP looks like this:

    type = CDIR; sizd = 3; change = 20150220090455; UNIX.mode = 0705; UNIX.uid = 32210; UNIX.gid = 100; single is d8g863beb0;.
    type = IRDP; sizd = 5; change = 20150302165245; UNIX.mode = 0705; UNIX.uid = 32210; UNIX.gid = 100, unique = d8g863beae;...
    type = dir; sizd = 12; Change = 20150302000236; UNIX.mode = 0705; UNIX.uid = 32210; UNIX.gid = 100, unique = d8g863beb2; Battery camera 9

    Kind regards

    Peper

  • Ran Malwarebytes & two threats were each one with the same name: PUM. Disabled.SecurityCenter. fact that associated with MSSE PUM & the boxes unchecked in MS security Center.

    Original title: PUM. Disabled.SecurityCenter

    I recently removed "patch system" of my Dell computer XP. Malwarebyte s was the only software to do. MSSE caught, but couldn't fix it. I then updated & ran MSSE on my Toshiba - no threats not found. I then ran Malwarebytes & two threats were each one with the same name: PUM. Disabled.SecurityCenter both at the Date of the registry in HKLM\SOFTE\Microsfot\SecurityCenter\AntiVirusDisableNotify & HKLM\SOFTWARE\Microsfot\securityCenterFirewallDisableNotify.  These two have been listed bad: Good (0) (1).  In the Malwarebytes wesite, I read that this has something to do with MSSE. In a commentary, he says it occurs if, in the MS Security Center, the notification "Notify me if my computer might be at risk because of my virus protection software settings" is unchecked.  I then went ahead & check all 3, firewalls, viruses & automatic updates. My computer seems to work well, except that the fan runs all the time (there are a lot of processes running & the CPU usage is very--often 100%, but the computer works fast).

    My questions are: 1) the PUM associated MSSE & the boxes unchecked in MS security Center; (2) should I click on "ignore" in the Malwarebytes scan? 3) was right to check all the boxes in the center of security - "altert me if my computer may be at rist b/c of my xxx software settings?  Thanks in advance for your help.

    PC fan2

    Hello

    (1) is associated with MSSE PUM & the boxes unchecked in MS security Center;

    The following thread might answer this question: http://forums.malwarebytes.org/index.php?showtopic=69859

    (2) should I click on "ignore" in the Malwarebytes scan?

    Yes

    3) was right to check all the boxes in the center of security - "altert me if my computer may be at rist b/c of my xxx software settings?

    Only, run antivirus software at the same time. Firewall must be performed, evil-ware bytes can be run at your pleasure.

  • Error - Installer: wrapper. creatFile failed with error 123: the file name, directory name or volume label syntax is incorrect when installing any program.

    Original title: there is an error then that inistalling some programs such as, java, internet download manager and...

    There is an error then that inistalling some programs such as, java, internet download manager and...

    for example, I want inistall an application or a program like Java, but when I start to inistall, it works like adminstere then said: (Installer: wrapper. creatFile failed with error 123: the file name, directory name or volume label syntax is incorrect.)

    It even I mean to inistall Internet download manager and VLC...

    my pc is automatically updated and when updates are available whenever I download inistall,.

    Please help me, I love my windows Vista, tnx

    Hello Aliahriman,

    Please look at the post below and see if it will solve your "creatFile failed with error 123: the file name, directory name or volume label syntax is incorrect" question.
    He has helped others with a similar issue.
    http://social.answers.Microsoft.com/forums/en-us/VistaInstall/thread/3b180316-95c2-4613-8c38-8515481db22c

    If please reply back and let us know if this helps solve your problem.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • I am creating a stamp of Certification of drawing dynamic shop with fields of text 'Name' and 'Date '. I tried different ways within Javascript, but I can't seem to make it work. The Date and time remains static on the stamp when it is inserted and

    I am creating a stamp of Certification of drawing dynamic shop with fields of text 'Name' and 'Date '. I tried different ways within Javascript, but I can't seem to make it work. The Date and time remains static on the stamp when inserted and always reflect when the stamp was created and the name is always my name. I try to have the user name or the username inserted so that he who is the insertion of the postmark of the stamp automatically inserts their name and what day and time the stap is inserted. I can't get this dynamic stamp works like the default Adobe Acrobat Dynamic stamps. Can anyone help with this one. Thank you

    Have you created a page template for your stamp? Did name the template of the page correctly? It's the right format:

    #InternalStampName = display name of stamp

  • Is it possible to take 2 web apps with both having the same element name (IE: titreArticle, short) and display them in a list in chronological order.  For example something like that {module_webapps id = filter "3673 &amp; 7432" = "classified" itemId = mo

    Hello

    Is it possible to take 2 web apps with both having the same element name (IE: titreArticle, short) and display them in a list in chronological order.

    For example something like that {module_webapps id = "3673& 7432" filter = 'class' itemId = "71755" template="/new/partnernewstemp.tpl" sortType = 'date'}

    Thank you

    Angela Borden

    This is not possible, I'm afraid, you must list each of the webapps separately and then combine and re - sort the two lists.

  • After Effects customize template with web browser? (name of the layer by giving a variable name)?

    After Effects customize template with web browser? (name of the layer by giving a variable name)?

    so many web sites provideing this service... .online at the intro

    Please help me what plugins using. How to set up this kind of service?

    I think that we should move to an AE forum...

  • How to change the name of the attribute with ALTER TYPE?

    I have a question. How can I change the name of the attribute with ALTER TYPE? example:

    CHANGE the type of ATTRIBUTE to CHANGE type_attribute...

    What should I put in «...» "to change the attribute name?

    Thank you...

    What should I put in «...» "to change the attribute name?

    You can not. You can change the data type.

    You can delete and recreate the attribute:

    ALTER TYPE type DROP ATTRIBUTE type_attribute;
    ALTER TYPE type ADD ATTRIBUTE new_type_attribute data_type;
    

    Max

  • CS3: need script to replace spaces with underscores in the paragraph and character style names

    Help! I am very new to scripting.

    I managed to find and tweak existing javascripts to search through all my paragraph styles to disable hyphenation and off balance the jagged lines, but I need help with this one.

    I work on Mac OS 10.4.11 using Indesign CS3.

    I need a script that will search all my paragraph and character styles in my open Active document and replace spaces by underscores.

    Can someone help me with this? It would be greatly appreciated!

    1. I don't know, but I think you can use all the regular GREP inside this function codes. Do not use the quotation marks around of the expression, use slashes! (Why? Just a curiosity of Javascript... maybe a hack that goes back to the gray mist of JS development...)

    This work should - but rather the code above, this is not tested:

    .. Replace (/ [-\ / ()-. _] + / g. '_');

    The GOLD group inbetween the brackets contain all the characters you want to replace with an underscore: the hyphen (this has to be the first character in the group, else it will be interpreted as a range of characters from each side!), space, slash (this one is 'special' inside the function replace JavaScript, so I think he needs to escape with a backslash)! in parentheses, a period (not sure if it should escape - into ordinary GREP, it's the wildcard character for any character, but maybe he loses his magic within a group of GOLD) and finally... the underscore character. Why?

    Well, this replacement string comes with a free bonus. Note the sign after the installment of GOLD +. This means that a whole sequence of these characters is replaced by a simple underscore: "it's / a - / test" will become "This_is_a_test". Adding the underscore line itself to the string of research means that it will also find the whole chain 'space space (stroke underscore)' in 'This style (_)' and, oh magic!, replace it immediately with a single underscore.

    Just FYI, the tiny "g" after the closing slash is abbreviation of 'global', i.e. at the global level, replacing in this string. replace the default values for a replacement only (why? see above...), and adding the 'g' ensures he keeps replacing until it is not find matches more.

    2 see point 1.

    3. uh, yes it's true, but you will need to check very carefully if nothing inside one of these basic models is substituted. You can apply a base style and add substitutions to make look like a subtitle, but that isn't making it a. And to the next paragraph, you can apply a base style and add substitutions to make it look like a paragraph of plain text (etc.). It's a signature of witness to bad formatting...

  • CS3 files with spaces in the name

    I have a slight problem with the files that are in folders that have spaces in the name of the folder.

    For example, the file is in the following location: rtu 41%.psd/c/n Hold/Test Image file/mondeo

    If I run the script, it creates a folder called ScriptFolder to the location of the file and a saveAs psd files in that folder but I get an error.

    General Photoshop error occurred. This feature can pas...ld\...\mondeo n 41% ' because the file is not found.

    If I change ' folder of images to test ' to 'Test_Image_Folder', which is where the file is the script works.

    Here's the script of any suggestions on how I can get around this?

    var myPsDoc = app.activeDocument;
    var justname = myPsDoc.name.split ('.) ») [0]
    var MonNouveauDossier = new Folder(myPsDoc.path+"/ScriptFolder/"); "
    If {(myNewFolder.exists)
    } else {}
    myNewFolder.create ();
    }
    newFile = new file (MonNouveauDossier + "/" + justname)
    photoshopSaveOptions = new PhotoshopSaveOptions()
    photoshopSaveOptions.embedColorProfile = false
    myPsDoc.saveAs (newFile, PhotoshopSaveOptions, true, Extension.LOWERCASE)

    With the help of decodeURI should take care of the problem with spaces in the path.

    var MonNouveauDossier = new folder (decodeURI (myPsDoc.path) + "/ScriptFolder/");

  • IDCS5/MAC - Style GREP in capital letters of a letter after a hyphen between the words

    G ' Day here.

    I'm trying to create a GREP style for uppercase letter after a hyphen between the words, specifically with a word beginning with a capital and after a dash do not for example Lorem-ipsum = Lorem -Ipsum

    The full story, it's that there is an indesign batch file used over and over again that family names that are in a large database of data - merge. Data arrives in capital letters and our mail barcoding software allows us to title case some fields, but the behavior of title case has the following results:

    * = Mcleod McLeod

    * = Agostino Agostino

    * Smith-Bunting = Smith-Bunting

    I was able to solve the = problem with the following GREP style Mcleod McLeod:

    (?<=Mc)\l
    

    and then apply a character style that is nothing more than all caps.

    Similarly, I was able to solve the problem = D'Agostino of Agostino:

    (?<=\u')\l
    

    and once more apply style all uppercase to the letter assigned. This also solves the problem of O 'leary to o' Leary.

    However, when I try these GREPs to enter style Bunting-Smith questions:

    (?<=\u\l+?-)\l     or   (?<=\u\l{2,}-)\l
    

    the search does not work, nor will it work with regular replacement of find/change GREP... and yet the expression \u\l+?-\l will find the block I'm after.

    I could use the search

    (?<=\l-)\l
    

    and is that Smit untingh-b= Smith-Bunting... but there is also co-ontervenir = co-Ontervenir (find two words with a hyphen but begins with a lowercase letter).

    That's fine if the paragraph style is applied to the line in the address block containing the name of the client, but if the name is mentioned in a text block, then that block of text must have the paragraph with the GREP style applied style and dashes between words in that para is in the same way as the name.

    Yes, it is possible to go into excel and use the PROPER (cell affected) = and fix fields Smith-Bunting, but I am trying to create a solution that only works in InDesign so that other operators in the office (who are not familiar with excel) can simply open the file of commands and dump in the database to txt generated by the mail bar coding software.

    There are other names that-case of barcoding mail title fault upward, i.e.

    * = Macleod MacLeod

    * van der Graaf = Van Der Graaf

    * van Diemen = Van Diemen

    but a GREP make MacLeod of Macleod can clog Mack, Mackie or Macy become MacK, MacKie or MacY.

    I also know that a GREP for the van der or van will not work as the style will force letters only to be all uppercase, not uppercase to lower...

    In the end...

    does anyone know how to style GREP (not a find/change GREP) a fix for Xxxxx-xxxxx = Xxxxx-Xxxxx?

    Colly

    Colecandoo.

    I agree with Haakenlid on his reviews of Dirty-workaround - in my opinion, the data should be entered in the way which it oguht, not altered by some magical GREP styles - but then again, I can also sympathize with your POV re: a fire-and-forget solution even your stupidest operator can not miss.

    Oh the rigors of life.

    If you are totally, absolutely certain you want to GREP for that, use this:

    b define a character to capitals on the chain style

    \b\u\l+\-\l

    -This will change as if by magic "the Honourable lieutenant Sir John Forsythe Blunt-object" in "BLUNT object".

    (b) then replace (!) the first half with another style of character that removes the attribute of capitals (!):

    \b\u\l+-(?=\l)

    Notice how this expression is exactly the same as the one above, except for the latest code - the next tiny need also be captured, but now, by using an advanced search for its formatting will be not affected.

    This command removes the substitution all uppercase the first halve, change 'BLUNT-object' 'Blunt-object '.

    Many side effects, I'm sure. Maybe it 's safer to teach your operators to run a single script.

  • Backup failed with error 18: the backup drive is not found

    Hello

    My guard time capsule saying "Backup failed" for a few days and I cannot access the old backup files either (when I enter my time machine it shows 'today', which is kind of scary, although I know that my old files is still there). I tried many ways to trouble shoot this problem, but none of this has worked. In my opinion, it's more a network problem and I made sure I connect Wi - Fi even my time capsule created.

    So far I have tried:

    -Delete the files from my internet (com.apple.airport.preferences.plist; preferences.plist and NetworkInterfaces.plist, etc.) and restart my mac

    -Remove TimeMachine.plist and restart my mac

    -Hard reset of my time capsule. Went through all configurations with success but then still backup missed (I hear the running time capsule when it is by train).

    I share this time capsule with my wife and she has no problem with that.

    I can only think of a possible alternation I did which could cause this problem.

    Because of unstable WiFi problem, I had deleted

    com Apple.Airport.Preferences.plist

    com.Apple.Network.identification.plist

    NetworkInterfaces.plist

    Preferences.plist

    or other files and reboot my mac * before * I had this problem with time capsule.

    However, this is not the first time I do it, and it wasn't a problem before...

    This could be the reason? If so, how to restore the network settings?

    Please help me with this problem. Really appreciate!

    Ted

    Here is a copy of the Console:

    24/02/16 2:44:19.308 AM com.apple.backupd [857]: from manual backup

    24/02/16 2:44:19.309 AM com.apple.backupd [857]: Destination Time machine could not be found (url: destinationID (null): AB78050D-4852-489D-9CBF-88727FBC8047)

    24/02/16 2:44:19.313 AM com.apple.backupd [857]: backup failed with error 18: the backup drive is not found.

    24/02/16 2:44:35.326 AM com.apple.backupd [857]: NAConnectToServerSync failed with the error: 64 (host is out of service) for url: afp://Ted%20Ling; AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. / data

    24/02/16 2:45:29.976 AM com.apple.backupd [857]: attempt to mount the destination network URL: afp://Ted%20Ling; AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. / data

    24/02/16 2:45:29.976 AM com.apple.backupd [857]: error - 35 during the resolution of the backup destination alias

    24/02/16 2:45:29.976 AM com.apple.backupd [857]: attempt to mount the destination network URL: afp://Ted%20Ling@TJ's%20AirPort%20Time%20Capsule._afpovertcp._tcp.local./Data

    24/02/16 2:45:30.668 AM com.apple.backupd [857]: destination network mounted at the mounting point: / Volumes/data using URL: afp://Ted%20Ling@TJ's%20AirPort%20Time%20Capsule._afpovertcp._tcp.local./Data

    24/02/16 2:45:50.428 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:45:50.428 AM com.apple.backupd [857]: wait 60 seconds and try again.

    24/02/16 2:45:59.981 AM com.apple.backupd [857]: NAConnectToServerSync failed with the error: 64 (host is out of service) for url: afp://Ted%20Ling; AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. / data

    24/02/16 2:46:42.807 AM com.apple.backupd [857]: Timed out while solving Hello destination: afp://Ted%20Ling; AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. / data

    24/02/16 2:46:42.812 AM com.apple.backupd [857]: from manual backup

    24/02/16 2:46:42.814 AM com.apple.backupd [857]: the airport of Destination Flymi Time Capsule could not be found (url: afp://Ted%20Ling;) AUTH=SRP@Flymi's%20AirPort%20Time%20Capsule._afpovertcp._tcp.l ALCO. (/ data destinationID: B2187361-58BC-4D33-A7AC-1DDC429ABF3B)

    24/02/16 2:46:42.825 AM com.apple.backupd [857]: backup failed with error 18: the backup drive is not found.

    24/02/16 2:46:42.833 AM com.apple.backupd [857]: from manual backup

    24/02/16 2:46:50.544 AM com.apple.backupd [857]: network destination already mounted to: / Volumes/data

    24/02/16 2:46:50.604 AM com.apple.backupd [857]: network destination already mounted to: / Volumes/data

    24/02/16 2:47:16.683 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:47:16.683 AM com.apple.backupd [857]: wait 60 seconds and try again.

    24/02/16 2:48:20.566 AM com.apple.backupd [857]: network destination already mounted to: / Volumes/data

    24/02/16 2:48:44.360 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:48:44.360 AM com.apple.backupd [857]: wait 60 seconds and try again.

    24/02/16 2:49:48.014 AM com.apple.backupd [857]: network destination already mounted to: / Volumes/data

    24/02/16 2:50:11.885 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:50:11.885 AM com.apple.backupd [857]: give up after 3 attempts.

    24/02/16 2:50:11.903 AM com.apple.backupd [857]: backup failed with error 21:21

    24/02/16 2:50:27.245 AM com.apple.backupd [857]: impossible to eject the volume/Volumes/Data (FSVolumeRefNum:-111; status:-47; dissident pid: 0)

    24/02/16 2:50:27.250 AM com.apple.backupd [857]: from manual backup

    24/02/16 2:50:27.250 AM com.apple.backupd [857]: Destination Time machine could not be found (url: destinationID (null): AB78050D-4852-489D-9CBF-88727FBC8047)

    24/02/16 2:50:27.257 AM com.apple.backupd [857]: backup failed with error 18: the backup drive is not found.

    24/02/16 2:52:28.390 AM SystemUIServer [265]: try using XPC with a MachService which has the value HideUntilCheckIn. This will result in unpredictable behavior: com.apple.backupd.status.xpc

    24/02/16 2:52:28.390 AM com.apple.prefs.backup.remoteservice [866]: try using XPC with a MachService which has the value HideUntilCheckIn. This will result in unpredictable behavior: com.apple.backupd.status.xpc

    What model is the TC?

    Try to force the connection to 2.4 ghz using different names for the various bands... or even better to use ethernet.

    (You may need to buy love at first sight for adapter Ethernet... is an investment worth considering how unreliable wireless).

    Also give me some screenshots of the TC installing airport utility.

    Can you get it in the Finder?

  • After I restart my iMac and double-click on the hard drive, a pop up appears with this message: 'the 'Hard drive' file cannot be opened because you don't have permission to view its contents.'.  What is the problem?

    After I restart my iMac and double-click on the hard drive, a pop up appears with this message: 'the 'Hard drive' file cannot be opened because you don't have permission to view its contents.'.  What is the problem?

    Is the name of an external drive or internal one?

Maybe you are looking for