Messed up filenames

Hello,
i have a problem with Apple Mail regarding received attachments:
Some emails sent by (i guess) pc users download with attachments where the filename is corrupted. For example, let's say there's a mail with 6 attachments: 3 PDFs (which download fine), a Word document (filename: "SomeDoc.=?iso-8859-1?Q?doc?=") and 2 mp3s (one has a messed up filename like "SomeSong.=?utf-8?Q?mp3?=", the other is just fine).
Unfortunately, there's no obvious pattern why some filenames get messed up while others stay untouched.
If i change the suffix to something meaningful, these files can be opened by their appropriate applications.
I understand this must have something to do with the encoding, but i can't figure out what.
Any help is greatly appreciated,
thanks in advance
Björn
iMac G5 20" Mac OS X (10.4.8)
iMac G5 20" Mac OS X (10.4.8)
iMac G5 20"   Mac OS X (10.4.8)  

Björn: I have been experiencing the same problem. I think the other responder is right in imagining it has to do with translation problems.
I have no problem with attachments that have portuguese names (accented) if they have been sent from a Mac.
I have problems with attachements with accents in the names if sent from a non-Mac.
I searched high and low on the internet, and have never found any solution or explanation.
I am surprised that there has not been a fix for this. I mean, surely Mail.app can recognize filenames in other encoding, and treat them accordingly? It sure is a pain to have to download the attachment, and then change the filenames manually.
I guess that since it relates to languages other than English, it just doesn't have a high priority.

Similar Messages

  • Problems with Amarok and accents in filenames [SOLVED]

    Hello,
    First of all sorry for my bad english.
    I have just installed Arch with KDE4.
    I have my music collection in a NTFS partition, and I have managed to have Dolphin show accents correctly by installing ntfs-3g.
    All software I have tested is able to open files which contain accents in its filename from the NTFS partition without problem except amarok. For example, VLC can play any mp3 without problems, but amarok is unable to play all files which contain an accent or files whose parent directory contains an accent, despite the fact that it adds the files correctly to the collection.
    Is someone experiencing the same problem or know a solution?
    (SOLUTION)
    I managed to solve it changing the system locale to UTF8. It caused a mess of filenames with some of my documents but I managed to restore them from a backup.
    Thanks
    Last edited by Amt0571 (2010-06-18 22:24:23)

    That one indeed was the 1 pixel border bug.
    I have now solved this, atleast partially I believe. I am now using ArchSimple theme, which I modified to have 2px borders and better colors for my taste.
    Compositions are still not working, and I do not know why. I have multiple monitors and I am using twinview instead of Xinerama and it should work with it - atleast that is what wiki says if I have not missed anything. The networkmanager menu is still a bit weird looking, but atleast it is not that ugly anymore. Below is a screenshot from current state:
    http://dl.dropbox.com/u/27198869/images … 1%3A54.png
    I will mark this as solved now, even though there are still some minor issues which I think do not belong to this thread, but I will list them below anyway if someone knows something about them. I have not found answers for these:
    - GTK checkbox enabled state is way too light. It is hard to see if it is enabled or not. I can not find any docs about it.
    - GTK combobox, when I click it open, list background is black and text is black. Only the hovered text is visible. No docs about this either.
    - Compositions still not working. But that is not really the most important feature I need. I can live without it.
    - My menus are themed as white on black, but some menus are still black on grey (or white). But I can live with it.

  • Moving from Mac to Windows..how to mess things..

    Today i instaled a new laptop with windows 8...
    Instaled iTunes and since i have near 1Tb of music, all my music files are in a volume in my MacMini , ex : "Music"
    As coping take to long, i connect my MAC external drive, the volume "Music" to my windows pc, and maped with "M".
    Before open iTunes in w8, exported my library, and with notepad changed the path from ..volume/music to "file://localhost/M:/", my path to music files in w8.
    Open Itunes, changed the media folder to "M:", and imported my library from the xml file.
    The clicks for keep itunes media organized are ON..
    From 22000 songs, and almost 1200 albuns, ONLY 860 albuns are imported and thousands of songs are lost!
    Message"Some songs are not imported because they cant be found".
    Some albuns are incomplete, some songs with long names are imported, others not.
    Mostly classic...
    Truncate filenames ?
    Strangely, the songs that are not imported they ALL have filenames truncated, but some songs with small filenames are not imported also.
    And now my external hardrive with +22000 songs are completely messed songs filenames.
    I use iTunes to catalog my music, listen when working and my MacMini conected to an Exoteric DA converter.
    I also have all the cds....
    I have backups from Mac, but i dont have a copy of this drive at this moment.. so i need  to crawl al my music in iTunes and fix all.
    Tedious work.
    Any ideas how to fix this ?

    She needs to get a Mac!

  • 5.7.1 Client was not authenticated

    hey,
    I need to send mail over "daily tasks, and i get the following exception :
    System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.1 Client was not authenticated
       at System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode, String response)
       at System.Net.Mail.MailCommand.Send(SmtpConnection conn, Byte[] command, String from)
       at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception)
       at System.Net.Mail.SmtpClient.Send(MailMessage message)
    I check the user to see if he not a locked, and he doesn't .
    I check the smtp mail server ans he is ok.
    what else can i check? how can i fix this? this is super urgent.
    this is my code :
        MailMessage mess = null;
                Attachment attach = null;
                SmtpClient smtp = null;
                try
                    mess = new MailMessage();
                    smtp = new SmtpClient("smtp.office365.com");
                    smtp.Port = 587;
                    smtp.EnableSsl = true;
                    System.Net.NetworkCredential cred = new System.Net.NetworkCredential("[email protected]", "Pass");
                    smtp.Credentials = cred;
                    mess.From = new MailAddress("[email protected]");
                    mess.Subject = fileName;
                    smtp.Timeout = 300000;
                    smtp.Send(mess);
                catch (SmtpFailedRecipientException exp)
                    Console.WriteLine(exp.FailedRecipient);
                    log.Error(exp);
                    elog.WriteEntry(exp.ToString(),EventLogEntryType.Error, 0);
                catch (Exception e)
                    Console.WriteLine(e.ToString());
                    log.Error(e);
                    elog.WriteEntry(e.ToString(), EventLogEntryType.Error, 0);
                finally
                    attach.Dispose();
                    mess.Dispose();
                    smtp.Dispose();

    Check if the client connector used to connect with the 587 port is allowed to accept authentication on Plain Text.
    Try a relay connector if you want to send the email without the authentication.
    http://technet.microsoft.com/en-us/library/bb232021(v=exchg.141).aspx
    Syed MM Messaging SME - IBM || MCTS || MCSE || MCSA || VCP5 || VCA ||

  • My MAC is running very slow and i am a complete novice and don't know what to do. i have had my Mac since 2008 and its probably in a mess. if you can help i would be grateful. EtreCheck version: 1.9.15 (52) Report generated 8 September 2014 09:09:26

    My MAC runs very slow. Rainbow wheel every time i try to go somewhere. Im a complete MAC novice. Only really use it for iTunes and email. the odd document here and there. The odd spreadsheet. Was brought up on a PC. I would imagine my system is in  mess. I think i downloaded that Mackeeper which i have just discovered was not a good idea. I found a thread about EtreCheck and it suggested i posted the report of my machine which i have done.I only have 2GB of space. Not sure how much i have left. My wife keeps putting photos on here like they are going out of fashion. Bought the machine in 2008 because everybody said you have a MAC. I've never really got to grips with it but at least it worked. Now it does not run very well at all. That spinning wheel is driving me mad. HELP please, never ever used a forum light this either so please go gentle on me. Cheers Paul
    EtreCheck version: 1.9.15 (52)
    Report generated 8 September 2014 09:09:26 BST
    Hardware Information: ?
      iMac (20-inch, Early 2008) (Verified)
      iMac - model: iMac8,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      2 GB RAM
    Video Information: ?
      ATI Radeon HD 2600 Pro - VRAM: 256 MB
      iMac 1680 x 1050
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:31:45
    Disk Information: ?
      Hitachi HDP725032GLA380 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (117.84 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Bose Corporation Bose USB Audio
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ?
      Mac App Store and identified developers
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
      [loaded] net.sourceforge.MonolingualHelper.plist Support
    Launch Agents: ?
      [running] com.trusteer.rapport.rapportd.plist Support
    User Login Items: ?
      iTunesHelper
    Internet Plug-ins: ?
      Google Earth Web Plug-in: Version: 5.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      OfficeLiveBrowserPlugin: Version: 12.3.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      iPhotoPhotocast: Version: 7.0
      QuickTime Plugin: Version: 7.7.3
      eMusicRemote: Version: (null) Support
      eMusic: Version: Unknown
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Flip4Mac WMV  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          2% iTunes
          2% WindowServer
          0% coreaudiod
          0% fontd
          0% rapportd
    Top Processes by Memory: ?
      178 MB Finder
      133 MB com.apple.WebKit.WebContent
      109 MB iTunes
      92 MB Safari
      63 MB com.apple.quicklook.satellite
    Virtual Memory Information: ?
      24 MB Free RAM
      821 MB Active RAM
      807 MB Inactive RAM
      291 MB Wired RAM
      338 MB Page-ins
      680 KB Page-outs

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can read it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p) if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Firefox 3.6.8. messed up an older version of Firefox

    As the title indicates, I believe that installing Firefox 3.6.8. messed up my favorite version of Firefox, version 1.5.0.3, or something like that on Windows XP SP3. I installed 3.6.8. to another folder, like I did a while back with 3.0.1, which is still on my computer, and thought it would function just the same and not enable my older version useless, but it seemingly has done so. I did not move any Firefox related folders prior to installation. Assuming you can see the picture that will hopefully work when viewed, you can see there's what looks to be an error message on the bottom. Also, you might notice that there is a lot of stuff missing, like the 'Go' button, search field, that circle with 8 smaller circles, and also all of the other stuff that should be there in the about:config. It's like it set itself for a larger resolution or something and I just can't get to what would normally be on the right side. The window doesn't get much larger than when its set at maximized. So almost all websites are not viewable because everything the site has is off screen to the right.
    I don't know what to do at this point, I tried searching for info but it's hard trying to figure out what exactly to search for. I uninstalled both versions, moved both mozilla folders in the application data folders to somewhere else, and then reinstalled my favorite version but the problem was still the same. Luckily I kept the old folders otherwise I would've lost my extensions(called add-ons now) and bookmarks. I'm aware that the obvious option is to just use the newer ones, but I've grown accustomed to that version and I like how simple it looks. I'm hoping it's an easy fix, haha. If it is a matter of my version being just too old and nobody knows anything about it anymore, then I'm fine with that. But, if someone could help me out here I'd greatly appreciate it.
    <a href="http://tinypic.com?ref=fcjh8i" target="_blank"><img src="http://i33.tinypic.com/fcjh8i.jpg" border="0" alt="Image and video hosting by TinyPic"></a>

    Thank you for taking the time out to reply. I don't know whether or not your suggestions would have worked, but I did solve my problem. I eventually figured out that the file, overlay.xul, was doing something and when I changed the filename, the bar went away.
    I was reading that the xul error usually meant something wrong with an extension, but that didn't make sense because after uninstalling/reinstalling, there were no extensions present, on an assumption, of course. I noticed a file through a search, and it was located in a folder without a mozilla/firefox name in it, looked like a randomly generated folder name. I looked in the extensions. ini and noticed it pointed to that overlay.xul file in that random named folder and thought, what the hell, and just renamed the overlay.xul file to something else and the problem went away.
    Thanks again.

  • Song Title Tags Messed Up

    I should note first that I have my music organized manually into folders for different genres (classic rock, rap, etc.) I have also deselected the "Keep itunes music folder organized" and "Copy files into itunes music folder when adding to library" options. I had fallen behind on keeping my playlists updated, so ealier today I cleared all my playlists out and added the corresponding folders to them all over again.
    Somehow after this process, the displayed titles of thousands of my songs are messed up not only in the playlist view, but also in the library view. The name column, instead of just displaying the name, displays the artist from the artist column plus the name. However, the artist and all other columns display the correct information. The ID3 tags are still correct. For instance, instead of seeing "name: I'm on Fire artist: Bruce Springsteen album: Born in the U.S.A." I see "name: Bruce Springsteen - I'm on Fire artist: Bruce Springsteen album: Born in the U.S.A."
    The ID3 tags themselves are correct when I go in and check them. Also, when I actually play the song or attempt to rename it, it changes the title back to match the correct ID3 title. For some reason only the display is messed up. This problem also carries over to my ipod unfortunately! All the songs on my ipod now have the same title problem. I suppose I could just run through and play all the songs, but I have several thousand and there must be an easier way. If I select multiple songs and go in to view or change the tag, it does not correct the problem like it does with a single song. Also I would like to know out of curiosity why this might have happened in the first place.
    Side note: I am running itunes 6.0.4. I have tried to upgrade to 6.0.5 to no avail. The installer doesn't open. Downloaded several times to different drives. Multiple restarts.
    Thanks for any help or insight.
    Self-built Piecemeal   Windows XP   AMD Athlon 3200; 1 GB Memory

    There is no feature in iTunes to add tags based on the filename. You'll have to use some other program, such as Tag&Rename or MP3tag.

  • Can i automatically set the timestamp of a file based on part of its filename?

    I have a bunch of files (approx. 500) with the same name pattern, that is : name_CreationDate.pdf. For instance: invoice015_2013_06_25.pdf or invitation035_2012_11_30.pdf. The last 10 digits are always the creation date. The original timestamps of the files have been messed up by a batch application which set them all to the same day; therefore they mean nothing anymore.
    Is there a way to automatically set the timestamp (for instance the "Creation Date" one) to the date indicated in the filename? I was thinking of Automator or some kind of shareware/freeware. Does anyone of you have an idea about this? Ideally as a batch rather than individually.
    Thanks,

    Thank you for your script. I made a test based on your script:
    a) I copied a PDF file on my desktop and named it "URSAFF 1er trim 2012_1998_09_19.pdf". The date component I want to set ultimately is therefore 1998_09_19.
    b) I created a service in Automator and pasted your script in a "Run a Shell Script" command. I added the Get Specified Finder Items at the beginning to be able to test the script on the file from Automator. (See screen shot of Automator below)
    c) The script appears to run successfully but I don't see a change in the timestamps of the file after I display Get Info from the Finder. (See screen shot of Get Info after I run the shell script)
    I wonder if my Region settings (I am based in France) do not interfere with the date/time string layout compatible with touch in your script. Just in case, I have added a capture of these settings.

  • How to populate DB column with filename from file browse item?

    Hi,
    Using APEX 3.1.2, I'm trying to easily allow maintenance of a filename stored in a DB column (VARCHAR2(1000)). Using the column as a file browse item seemed to be the way to go, but of course I don't want the resulting file to be uploaded and it appears as though an existing filename is not shown in a form when the row is retrieved.
    After much searching, I found Checking filename length in File Browse item before uploading , but I'm not able to connect the dots. I was thinking that I could create a hidden file browse item and use a button to call Javascript function to activate it, then save the resulting filename to my DB column item and wipe out the hidden item before it was uploaded. But the hidden item doesn't appear, so I'm not able to reference it's form input name.
    Hopefully this mess makes sense. Anyone?
    Thanks!
    Rich
    Edited by: socpres on Sep 5, 2008 2:02 PM because message was truncated after attempting to preview it first.

    Hi John,
    From what I can tell, the path of a local file browsed from a file browse item cannot be retrieved because of security concerns. Although, it seems that while Firefox 3 only returns the filename sans directory, IE6 returns the full path:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
    <head><title>Form Test</title>
    </head><body>
    <script type="text/javascript" language="JavaScript">
    function GetDirectory()
    strFile = document.FileForm.filename.value;
    intPos = strFile.lastIndexOf("\\");
    strDirectory = strFile.substring(0, intPos);
    alert(strDirectory);
    document.FileForm.Directory.value = strDirectory;
    </script>
    <form id="FileForm" name="FileForm">
    <input type="file" id="filename" name="filename" value="" onChange="GetDirectory(this.value)">
    <input type="hidden" id="Directory" name="Directory" value="">
    </form>
    </body>
    </html>
    This Win-specific code displays the path via IE6, but not in Firefox 3. Then again, I can't seem to preview posts here using FF3, either...
    Rich

  • Itunes renamed filename as tracks?

    Apple itunes cannot use filename to import songs, it uses tracks instead?
    The field <file name>, for all my mp3 is apparently NOT used by iTunes, for sorting. As a conclusion my library is totally messed up. I need some help...
    Here the details:
    I have organized my audiobooks for years, in this way:
    file-name: D01 T01.mp3 then D01 T02 then ....then Dn Tm.
    No id3 tag.
    D01 T01.mp3 means the first track on Disc 01
    D05 T14 means the 14th track on Disc 05
    Usually audio books contain from 1 to 5 or 6 CDs
    Across the years, i ripped all my mp3 with the same structure.
    I put album info only on the folder name. For example, my last audio-books set was from Brian Tracy.
    For the folder name I chose "Brian Tracy - Psychology of Selling"
    The content includes
    file-name: D01 T01.mp3 up to D05 T10.mp3
    The software I used (Media Monkey) also filled automatically these fields:
    title: track 01 up to track 10 for disco 01, then again track 01 to track 10 for disc 02, etc.
    I have started to use iTunes since November. But every time I try to import I see that:
    - file names are TOTALLY ignored
    - I end up having 4 (FOUR) mp3 files called track 01, then another 4 (FOUR) MP3 files called track 02...and so on until track 10...a completely mess!
    Since <file name> field (D01 T01.mp3) is apparently NOT used by iTunes, the conclusion is that my library is totally messed up.
    Additionally iTunes imports the folder WITHOUT Looking at folder name, so all folders, in iTunes, show as "unknown artist , unknown album". This second issue is solved by me by manually editing the folder name and artist name (using "getinfo" function)
    Question:
    can somebody explain to me how can I force iTunes to import and sort my file using the FILENAME field (D01 T01.mp3) ? Instead of title field (track 01) ?
    Any help is heartily appreciated!
    SA

    First do you have the original files in their original folders? If iTunes has already swallowed them up and rearranged them there's not much I can suggest. Regular music would be susceptible to MusicBrainz Picard Tagger but that is unlikely to be the case in this instance. If you still have them in their original folder layout stored outside the iTunes Media folder then turn off *Copy to iTunes Media folder when adding to library* (Edit > Preferences > Advanced) so that iTunes points to the original files rather than copies it creates based on the partial information. It's proably also wise to turn off *Keep the iTunes Media folder organised* until you are cetain that iTunes has enough information to move all your files to sensible places when it tries to organise them.
    Can I confirm that each album is in a folder of the form *<Artist|Author> - <Album Title|Book Title>* and each file is in the form *D## T## <Title>.<ext>* ? If so then using the pattern *<Artist> - <Album>\D<Disc#> T<Track#> <Title>* with MediaMonkey's Auto-Tag From Filename feature should work. After updating the tags you'd either need to remove & reimport the tracks or use my UpdateTagInfo script. Alternatively I could create a special version of the TagFromFilename script to do both jobs in one...
    tt2

  • How to pass a filename dynamically in incoming email and process that file

    Hi,
    We have to process an incoming file with XI, the name of which we don't know to design time. The filename is passed dynamically in an incoming email, in the body section. We can parse the filename from the mail already. However, file adapter-sender does not accept variables (whereas receiver does), so we have no way to pass this name to the file-sender.
    What would be the best way to implement this scenario? I'd really appreciate a bit more explanation than 1-liner answers (e.g. links to help.sap.com We have SAP XI 7.0 SP15.
    TIA

    Thanks. This is similar to our plan B That is, using a wildcard, processing all files in the incoming directory, and moving them after processing. This way, only the unprocessed files would be in the source folder. IMHO, it's not elegant.
    Besides, should a second mail get received, before the first file is processed completely (e.g. due to an error, slow FTPS transfer rate, etc.), the second process would try to pick up the first file as well, which would mess up everything.
    There should be a way to set a parameter for the sender-file adapter...

  • Filename generation & Auto increment filename

    Hi,
    I would like my program to create a filename automatically, im using the "Filename Generator" which was available online, and also the "Unique Filename" VI. The way im using this is, I let the user select a path, and feed the path to the filename generator.vi. The output of that VI is the input to the Unique filename.vi .And the output of this VI is the root where the actual output file will be located. Im getting an error:
    Error 7 occurred at Open/Create/Replace File in Write Spreadsheet String.vi->Write To Spreadsheet File (string).vi->Write Header & Waveform Ref.vi->Main.vi
    I have attached my main VI, and the two above mentioned VIs. Also attached is the png file of the frames that contains these functions.
    Is there a way to get over this???
    Thank you,
    Eureka 
    Solved!
    Go to Solution.
    Attachments:
    Main.vi ‏111 KB
    Filename Generator.llb ‏117 KB
    Unique File Name.vi ‏35 KB

    I think i see what the problem is,
    This function creates a path, but not a file. So, the input given to the write to spreadsheet file is not actually the location of a file, i would say it is something virtual.
    If i use the Unique filename.vi alone and not the filename generator.vi, my program works fine, it does increment the filename, but, the user has to select the file every time.
    For instance, i have a txt file "Current". The VI generates a file path for "Current(1)" and writes the data in the new file.
    The next time, if the user fails to select "Current(1)" as the input path, and if the input path is just the same as the 1st run, it over writes the data in "Current(1)", as expected!
    The basic problem is, i need to avoid over writing data. Because, i read the waveforms from the file and it will me messed up big time.
    Is there a function to auto-increment filenames as we write them?
    Thank you,
    Eureka

  • Error: filename, directory name or volume label syntax is incorrect

    Using Acrobat Pro 8.1.3. and Flash CS3 ... Have a link on Flash site to a PDF file for people to print/download sheet ... When link is clicked, Acrobat opens and display the error message : "there was an error opening this document. The filename, directory name or volume label syntax is incorrect" ...
    Needless to say, all of these things are FINE with NO error whatsoever.
    I know it's not Flash, the link itself works. Computer crashed 2 weeks ago, had to reinstall everything, including Acrobat Pro, and redownload updates ... All was working fine B4 crash (including link from flash and opening of linked files with Acrobat), not anymore since reinstall ... Wondering if some update/patch is messing it up ... Help anybody? Thanks a lot!

    How do your users generate the link? Windows makes it surprisingly difficult to reference a file. I usually resort to 3rd party tools that allow me to copy a file name or path.
    Much to my surprise, I find that if I use '''Insert|Link''' and ''browse'' to the required file, it generates a fully qualified URI and it works correctly when sent and received in Thunderbird. That's TB31.5.0 on Windows 7 Pro. So the transmitted URI will have this format:
    <code>
    file:///F:/projects/xyz/xyz%20Project%20Spend%20Production%205%20off.xls
    </code>
    It won't work if you just drop in a plain old DOS type filename.
    Yes, it's a chore to browse to the required file when you have it in plain sight in front of you in your file manager. I'm using FreeCommander XE which is able to generate properly formed pathnames and copy them to the system clipboard, and these can be pasted as-is into message body, or pasted into the address box in the Insert|Link dialogue.

  • Itunes has made a mess of my music

    ok, i keep all my music on an external hard drive. i have changed the location of my music to a folder on the drive in preferences.
    after loading all the music to the drive, 244gb, i conected to itunes and itunes started 'organising' my music. now i have lots of extra folders, duplicates and a total mess of my music.
    what is even more anoying is that it looks great from itunes point of view but when i want to use it with another device etc using a windows explorer view it's a bloody mess with albums and artists now spread over several folders where they were all organised.
    so here is the question.....is there a piece of software that will sort all my music back to how it was, moving all the songs back into their album/artist locations.
    i have been looking and have seen some but they dont seem to do what i want.
    can anyone help please???

    Once you have let iTunes restructure things there isn't really any undo. iTunes will group tracks by the same Album Artist, falling back to Artist if Album Artist is blank. This can trigger it into using multiple folders for a single album. Generally fixing things within iTunes will also resolve the underlying storage in Explorer. See my article on Grouping tracks into albums for tips.
    If WMP ever had access to your files then there are bound to artwork files that iTunes has left behind as it has shuffled things about. See CleanDeadArt for a script to tidy up.
    If, like me, you are really picky about your file & folder organisation then I have a script called ConsolidateByMoving which has options to use longer filenames than the iTunes limit of 40 characters and could be tweaked further if you were so inclined.
    There is also a DeDuper script which you may find useful.
    tt2

  • Wow the new firmware has made a mess of my Touch, Creative please resp

    Okay, first I find out that some of my music is missing track number tags and is now listed in alpabetical order. Next, Media Source doesnt detect my Touch at all, so I have no easy way to fix my tags. So I have to move the music off my player, tag it all again, delete it from my Zen (because just overwriting doesnt work), then upload the newly tagged music to my Touch. But it gets even better. Alot of my folders in the Media Explorer contain random files names and some songs are in different album folders.
    http://i8.photobucket.com/albums/b/MrCookie989/****youcreative.jpg
    This is the album by The Who "Li've at Leeds", which does NOT show up on my Touch even though it is there. Notice that some tracks have the right filename (summertime blues, fortune teller), but some tracks that have filenames from artists like MC Chris (geek) or are from the Castlevania SOTN soundtrack (Awakend Soul). These are in fact all the songs for The Who "Li've at Leeds"...BUT THEY DONT HAVE ANYWHERE NEAR THE RIGHT TAGS! Needless to say, Im just a bit mad that this has happened to my music.
    So, Creative, please tell me there is something I can do to fix this other than going through all of my 30+ gigs of music. If there isnt anything I can do, then Creative will never recieve my business again, and I have bought several players from them over the years, But this is outrageous.

    I wish I could help you here, but wanted to ask you how your Touch listed tracks without a track tag in correct order before the firmware update? Mine did not do this before or after--listed anything without a track tag in alphabetical order. I have to assume you had to reload all your music after the firmware? I thought this was necessary as the player erased itself during the upgrade. Is it possible the tracks on your player were previously OK, but somehow the ones in your computer library got changed? This has happened to me. I really don't use MediaSource much at all, but Windows Media Player 0 has that "feature" where it will "correct tag info" from the internet. I found this kept changing my tags, sometimes to wrong info. I turned that "feature" off, as it was driving me crazy having WMP undo all my manual corrections all the time. When I rip a CD, I manually tell WMP to get the info from the internet. One of the crazy things was the "album artist" tag in WMP, which the Zen sees as "artist". I have many albums where the WMP database (forget which online one they use--Gracenote?) sees a whole bunch of "album artists" for one album by the same group. This really screws up the "artist" menu on a Zen Touch--you can't find anything! "Album" tag was OK, though, so it was fairly easy to group-select in WMP0 and retag---only to have WMP overwrite my correction shortly thereafter with the wrong info again. I wonder whether MediaSource does this, too. The reason I mention this is that there were a few times (before I figured this out) that my Zen Touch was fine and my computer library was all screwed up. If this happened to you, and you reloaded your Touch from a library with messed up tags, I can see how you would have a problem.

Maybe you are looking for

  • Reports in sap for pp

    Dear all pl how to get this report in sap 1.Advance Planning against Planned order simulation  for ATP 2.Collective availability report to generate shortages 3.Production Order Settlement against Planned Cost and also how  to  assingin serial number

  • Computer crash

    Had re load my mac after a bug took off all my applications. <:( But, got it done. However, my calendar is blank, no appointments are there. In icloud, all my data is there. What would be my next step?

  • Can you send the reset security question to my email

    Mmy email is ********* <E-mail Edited by Host>

  • AppleTV & Faceime

    Before IOS 8 i used to mirror FT through ATV with minor bug.. After the buggy update (IOS8) the size of the mirrored screen is too small & useless   anybody faced such issue? By the way i have tried 5s & Ipad mini and Iphone 5 with same result

  • Are there options to export or save an image at a lower resolution?

    Are there options to export or save an image at a lower resolution?