Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. moonring

    How to disable error 0xc000007b - Win XP Home ?

    Indeed, the error messages were caused by a virus, which apparently got in when I was using my USB flash drive. Cleaned them and no more annoying pop-ups. Thanks
  2. moonring

    How to disable error 0xc000007b - Win XP Home ?

    Thanks a lot rclarke250 and linney for your comments. I'll try your suggestions and I'll post my results as soon as I find something. Thanks.
  3. moonring

    How to disable error 0xc000007b - Win XP Home ?

    Hi all, I have an Asus eePC netbook with Win XP Home SP3, and I'm having some issues with the error messages: This usually happens after I open the web browser ( FireFox ). I did some research and they point to either a virus, a .NET or other program uninstall. This is a new netbook, used from...
  4. moonring

    find all duplicate rows using awk

    Maybe something like this: awk -F, '{ a[$2,NR]=$0; c[$2]++ } END { for( k in a ) { split(k,b,SUBSEP) if( b[1] in c ) { print RS "TIMES ID" RS c[b[1]] " " b[1] RS delete c[b[1]] } for(i=1;i<=NR;i++)...
  5. moonring

    Where to close the file?

    Maybe something like this, nawk '/^imp_/{ close(f); f="split." ++d }{ print > f }' filename
  6. moonring

    Can't copy files from external drive

    Hi, Linney, in my situation I've no password or certificates saved, I don't even recall being prompted for one back then - so for me all the encrypted files are not recoverable. Tlcscousin, thanks for your advice, but my backup consists only of my documents ( books, music, pictures, etc )...
  7. moonring

    Can't copy files from external drive

    Well, the methods described in the links you provided help when the certificates are saved ..., actually I don't remember having saved a certificate somewhere though, and surely I have all the files. Thanks anyway. _____________________________ Correction in my previous post: should be:
  8. moonring

    Can't copy files from external drive

    Hi all, Definitely Freestone. One of the hidden ( and very poisonous ) culprits of the files' access denial. While searching I saw many other people with the same problem and as the story goes I totally forgot I had encrypted my partition, and it badly bit me back now ! So I have to do the...
  9. moonring

    Can't copy files from external drive

    I think I'm making little progress...upon closer inspection of the properties of the good files and the other ones, I see that the bad ones have encryption checked ( in Advanced Attributes tab - Encrypt contents to secure data is checked ), and in the Details tab of Advanced Attributes I see my...
  10. moonring

    Can't copy files from external drive

    Hi, I followed your advice, gave full control to my id, made sure it goes down the tree of subfolders and files, selected Copy ..., but surprisingly those files still refuse to open :( Example, I have some pdf files in the same folder, one opens normally whereas the other one does not. I...
  11. moonring

    Can't copy files from external drive

    Oops, just noticed second question of dippncope ! Yes, same files, that were under the same folder in the backup drive. I created one folder ( named user_backup ),and I put everything in there, about 90 Gb of files, organized in folders ( Music, books, ... etc )
  12. moonring

    Can't copy files from external drive

    Hi dippncope, yes they are same files as in the external drive, ( files themselves are of different types, ie .pdf , .doc , .txt, .jpeg, .mp3, and so on ). Hi Ben, I'm following exactly the steps described in your link, but for some strange reason is not working. I'm going nuts ! It's been...
  13. moonring

    Can't copy files from external drive

    Hi again, During these two days I tried hard taking ownership of my backup ( as described in MS site http://support.microsoft.com/kb/308421 ), but the same issue :( . At least, using Win XP backup application ( under Accessories ), I was able to move my files out of the external drive into my...
  14. moonring

    Can't copy files from external drive

    Thanks guys, I'm working on it right now with dippncope's suggestion, I have gigs of files to move. I'll update later on the results.
  15. moonring

    Can't copy files from external drive

    Hi, I have a SimpleTech external hard drive ( formatted as NTFS ), and a few days ago I needed to reformat my PC ( Windows XP ), so I copied my docs, my pictures, etc, to this external drive. So far so good. After I reformatted my PC ( again installed Win XP ), I tried to copy the files back...
  16. moonring

    {n,m} quantifiers ot work in awk

    Use --posix or --re-interval switch: gawk --posix '/[0-9]{6}/' file
  17. moonring

    compare more than one file in AWK

    The following code works for the given samples, modify as needed. awk ' FILENAME==ARGV[1] { a[substr($0,1,40)] } FILENAME==ARGV[2] { if( substr($0,3,40) in a ) print } FILENAME==ARGV[3] { if( substr($0,3,40) in a ) print } ' s1.txt t1.txt t2.txt > output_file
  18. moonring

    compare more than one file in AWK

    Assuming the files` format is as shown above, you can work on something like this: awk ' FILENAME==ARGV[1] { a[$0] } FILENAME==ARGV[2] { split(substr($0,3,7),b); if ( b[1] FS b[2] in a ) print } FILENAME==ARGV[3] { split(substr($0,3,7),b); if ( b[1] FS b[2] in a )...
  19. moonring

    inserting a delimeter in specific fields

    Oops change, ...printf $NF RS} --> ... print $NF }
  20. moonring

    inserting a delimeter in specific fields

    awk '{printf $1s$2 FS; for(i=3;i<NF;i++) printf $i s; printf $NF RS}' s=":" file

Part and Inventory Search

Back
Top