File Duplication

 
Thread Tools Search this Thread
Special Forums Windows & DOS: Issues & Discussions File Duplication
# 1  
Old 09-10-2004
File Duplication

hi all

how to find the file duplication in a windows 2000 server

as usual replies are sincerely appreciated.

thanks

raguram R
# 2  
Old 09-10-2004
Hammer & Screwdriver Issue

Well, As this is a file that you need to duplicate, you could always go to file search which can be found on the taskbar and type in fileduplication.exe. This might work, but if it doesn't post a reply and tell me it didn't alnd I will figure out another way.




Cheers,
Computek
computek
# 3  
Old 09-13-2004
Hi computek

As expected by you the "fileduplication.exe" is not available in our 2000 server.

I put my question in other way. Just assume the situation,

There are 100 users in a 2000 server and each user is allocated with a backup space. A file named "ZZZ.TXT" is there in all the user's backup folder. How to check this or how to find that this file is present in almost all the user backup. Further i don't know the name of the file ("ZZZ.TXT").

i.e. How to find the file duplication across folders in a Windows 2000 server.

Raguram R
# 4  
Old 09-19-2004
CPU & Memory

I have a method to solve this problem.It will take 3 steps.

Firstly,you should start the DOS prompt and type '' tree C:\Documents and Settings /f >a.txt ''. U will find a file named a.txt in the directory C:\Documents and Settings.[The OS is supposed to be installed on C:]

Secondly,you have to get the name of the file. You can choose 1 or 2 or more specific foders to figure out the file name. Take self.txt for example.

Thirdly,type '' cd C:\Documents and Settings ''in DOS prompt,then C:\Documents and Settings becomes the current directory. Type '' find /c "self.txt" a.txt '' and enter ,you will get the number of the string ''self.txt''. THIS NUMBER is just the number of the specified files.IF it equals the number of the users,then we can draw a conclusion that every user has the file. IF not ,you can use other switches of the command FIND to locate the directory which is short of the file. OR you can also open the file a.txt ,and employ the searching function embeded in this programme.

I tried this method with my computer which runs Win2000 pro and it works. Wish U good luck.

DOS commands are powerful !!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

UNIX Log File Content - Duplication Issue

I have a shell script with 2 run time arguments. During the execution if i got any error, then it needs to redirected to a error file and in console. Also both error and output to be redirected to a log file. Error output is getting copied to err file and getting displayed in console too. But... (2 Replies)
Discussion started by: sarathy_a35
2 Replies

2. UNIX for Beginners Questions & Answers

Duplication | awk | result

Dear forum members, I want the script to count ALA as one (an example in quotes) and return an integer as 1 and not return 5 as an integer as it does now (look bash script). So how can I upgrade my script that it first checks or after finding all instances of ALA checks whether it is the same... (25 Replies)
Discussion started by: Aurimas
25 Replies

3. Shell Programming and Scripting

Shell script (sh file) logic to compare contents of one file with another file and output to file

Shell script logic Hi I have 2 input files like with file 1 content as (file1) "BRGTEST-242" a.txt "BRGTEST-240" a.txt "BRGTEST-219" e.txt File 2 contents as fle(2) "BRGTEST-244" a.txt "BRGTEST-244" b.txt "BRGTEST-231" c.txt "BRGTEST-231" d.txt "BRGTEST-221" e.txt I want to get... (22 Replies)
Discussion started by: pottic
22 Replies

4. UNIX for Beginners Questions & Answers

Line duplication with awk?!

So while this seemed totally trivial it turned out to be much more difficult than I had thought. I have a file with 3 rows, and I "just" want to add each field n number of times. E.g. > cat file.txt 0.5 -0.1 0.6 for n=3 into: cat newfile.txt 0.5 0.5 0.5 -0.1 -0.1 -0.1 0.6 0.6 0.6 I... (4 Replies)
Discussion started by: Glorp
4 Replies

5. Linux

De-Duplication Problem

Hi all, I download and install lessfs for deduplication, I copy files in /SharedFiles directory and lessfs work right and not store again copy files, but, when i delete all files in /SharedFiles , not return free space to total space, files not show in /SharedFiles , but not copy new files in... (3 Replies)
Discussion started by: saeedha
3 Replies

6. Programming

Table Duplication in PHP

Hey, I am making a Facebook like Page system as my first project, So far it's been bate in mind I did it from my 3DS at the same time as my PC gets replaced, So far it's turned out great. Now I am on to creation the blocking system I need to get the code to say If the user already likes the... (0 Replies)
Discussion started by: AimyThomas
0 Replies

7. UNIX for Advanced & Expert Users

File Descriptor redirection and duplication

i have many questions concerning the FD. it was stated that "to redirect Error to output std, you have to write the following code" # ls -alt FileNotThere File > logfile 2>&1 # cat logfile ls: cannot access FileNotThere: No such file or directory -rw-r--r-- 1 root root 0 2010-02-26... (9 Replies)
Discussion started by: ahmad.zuhd
9 Replies

8. Shell Programming and Scripting

How to avoid duplication within 2 files?

Hi all, Actually 2 files are there - file1, file2. file1 contains ---> london mosco america russia mosco file2 contains --> europe india japan mosco england london Question is I want to print all the city names without duplication cities in those... (10 Replies)
Discussion started by: balan_mca
10 Replies

9. Shell Programming and Scripting

File Duplication Script?

I have a file, let's say 1.jpg, and I have a text file that contains a list of filenames I would like to duplicate 1.jpg as (i.e., 2.jpg, 3.jpg, 4.jpg, etc.). The filenames that I want to create are all on separate lines, one per line. I'm sure there's a simple solution, but I'm not claiming to... (7 Replies)
Discussion started by: futurestar
7 Replies

10. UNIX for Advanced & Expert Users

mount LVM duplication drives

Hi, I'm stuck in an awkward situation please help :) I have two identical Seagate 80GB harddrives. My objective is a bit strange. 1.I want to have a cloned disk as bootable backup 2.When booting using the master drive, I also want to mount the cloned backup disk so I can do incremental... (6 Replies)
Discussion started by: onthetopo
6 Replies
Login or Register to Ask a Question