m.kelas-karyawan-sebi.prestasi.web.id Layanan Informasi 17 Jam
Telp/Fax : 021-8762002, 8762003, 8762004, 87912360
HP/SMS : 081 1110 4824 27, 0812 9526 2009, 08523 1234 000
WhatsApp : 0817 0816 486, 0812 9526 2009
email : _Hubungi Kami__ silahkan klik
Chatting dengan Staf :
ggkarir.com
ggiklan.com
Pilih Bahasa :   ID   EN   Permintaan Katalog / Brosur (GRATIS via POS)   Ensiklopedia Lowongan Karir Iklan

   
Cari  
    Informatika Komputer

    Sebelumnya  (RoboBOARD/FX) (Roboform)  Berikutnya    

Robocopy

Robocopy
Developer(s)Microsoft
Stable release6.1
Operating systemWindows NT, Windows 2000, Windows XP, Windows Server 2003, Windows Vista, Windows 7, Windows Server 2008, Windows Server 2012
LicenseProprietary

Robocopy, or "Robust File Copy", is a command-line directory replication command. It has been available as part of the Windows Resource Kit starting with Windows NT 4.0, and was first introduced as a standard feature in Windows Vista and Windows Server 2008. The command is robocopy.

Contents

Features

Robocopy is noted for capabilities above and beyond the built-in Windows copy and xcopy commands, including the following:

  • Ability to tolerate network interruptions and resume copying. (incomplete files are marked with a date stamp of 1980-01-01 and contain a recovery record so Robocopy knows where to continue from)
  • Ability to skip NTFS junction points which can cause copying failures because of infinite loops (/XJ)
  • Ability to copy file data and attributes correctly, and to preserve original timestamps, as well as NTFS ACLs, owner information, and audit information using command line switches. (/COPYALL or /COPY:) Copying folder timestamps is also possible in later versions (/DCOPY:T).
  • Ability to assert the Windows NT "backup right" (/B) so an administrator may copy an entire directory, including files denied readability to the administrator.
  • Persistence by default, with a programmable number of automatic retries if a file cannot be opened.
  • A "mirror" mode, which keeps trees in sync by optionally deleting files out of the destination that are no longer present in the source.
  • Ability to skip files that already appear in the destination folder with identical size and timestamp.
  • A continuously updated command-line progress indicator.
  • Ability to copy file and folder names exceeding 256 characters — up to a theoretical limit of 32,000 characters — without errors.[1]
  • Multithreaded copying. (Windows 7 and Windows Server 2008 R2) [2]
  • Return code[3] on program termination for batch file usage.

Limitations

No open files

Robocopy will not copy open files. Any process may open files for exclusive read access by withholding the FILE_SHARE_READ[4] flag during opening. Even robocopy's Backup mode will not touch those files. (Backup mode instead runs Robocopy as a "Backup Operator". This allows Robocopy to override permissions settings (specifically, NTFS ACLs).[5] [6])

The Windows Volume Shadow Copy service is used for such situations, but Robocopy does not use it. Therefore Robocopy is not useful for backing up live operating system volumes. However, one can use a separate utility, such as DiskShadow.exe[7] (included with Windows Server 2008), to create a shadow copy of a given volume, which Robocopy can then be directed to back up. A similar utility that works like Robocopy that has the option to copy open files is GSCopyPro.

XP mirroring bug

Robocopy versions on systems older than Windows Vista do not mirror properly. They ignore changed security attributes of previously mirrored files.[8] [9]

Wildcarding treatment

The /XF switch does not work if given both a directory and a wildcard. For example /XF pictures\*.jpg generates an error.

Common usage scenarios

  • Copy directory contents of A to B (including file data, attributes and timestamps), recursively with empty directories (/E):
Robocopy C:\A C:\B /E
  • Copy directory recursively (/E), copy all file information (/COPYALL, equivalent to /COPY:DATSOU, D=Data, A=Attributes, T=Timestamps, S=Security=NTFS ACLs, O=Owner info, U=aUditing info), do not retry locked files (/R:0)(the number of retries on failed copies default value is 1 million), preserve original directories' Timestamps (/DCOPY:T - requires version XP026 or later):
Robocopy C:\A C:\B /COPYALL /E /R:0 /DCOPY:T
  • Mirror A to B, destroying any files in B that are not present in A (/MIR), copy files in resume mode (/Z) in case network connection is lost:
Robocopy C:\A \backupserver\B /MIR /Z

For the full reference, see the Microsoft TechNet Robocopy page.[10]

Folder copier, not file copier

Robocopy syntax is markedly different from standard copy commands, as it accepts only folder names as its source and destination arguments. File names and wild-card characters (such as "*.*") are not valid source or destination arguments. Files may be selected or excluded using the optional filespec filtering argument. Filespecs can only refer to the filenames relative to the folders already selected for copying. Fully qualified path names are not supported.

For example, in order to copy the file foo.txt from directory c:\bar to c:\baz, one could use the following syntax:

 Robocopy c:\bar c:\baz foo.txt

Bandwidth throttling

Robocopy's "inter-packet gap" (IPG) option allows some control over the network bandwidth used in a session. In theory, the following formula expresses the delay (D, in milliseconds) required to simulate a desired bandwidth (BD, in kilobits per second), over a network link with an available bandwidth of BA kbps:

D = {B_A - B_D \over B_A \times B_D} \times 512 \times 1000

In practice however, some experimentation is usually required to find a suitable delay, due to factors such as the nature and volume of other traffic on the network. The methodology employed by the IPG option may not offer the same level of control provided by some other bandwidth throttling technologies, such as BITS (which is used by Windows Update and BranchCache).

GUI front-end

Although Robocopy itself is a command-line tool, Microsoft Technet has provided a GUI front-end. The GUI requires the installation of the .NET Framework 2.0 (40 MB), if it is not already installed. It was developed by Derk Benisch, a systems engineer with the MSN Search group at Microsoft.[11] The Microsoft Robocopy GUI also includes version XP026 of Robocopy. When downloaded from the TechNet link below, the version reported is "Microsoft Robocopy GUI 3.1.1."

There are other non-Microsoft GUIs for Robocopy:

  • "WinRoboCopy" revision 1.2.4482.39775 released in April 9, 2012.[12]
  • "Easy RoboCopy" latest version 1.0.13 released in January 11, 2012.[13]
  • A program by SH-Soft, also called "Robocopy GUI" v1.0.0.24 (October 8, 2005).[14]

A copying program with a GUI, RichCopy, is also available on Microsoft's Technet. While it is not based on Robocopy, it offers similar features, and it does not require the installation of the .NET 2.0 framework. [15]

Versions

Product versionFile versionYearOriginOther
1.70-1997Windows NT Resource Kit 
1.714.0.1.711997Windows NT Resource Kit 
1.954.0.1.951999Windows 2000 Resource Kit 
1.964.0.1.961999Windows 2000 Resource Kit(c) 1995-1997
XP0105.1.1.10102003Windows 2003 Resource Kit 
XP0265.1.2600.262005Downloaded with Robocopy GUI v.3.1.2 
XP0275.1.10.10272008Bundled with Windows Vista, Server 2008 and later(c) 1995-2004
6.16.1.76012009Bundled with Windows 7(c) 2009
6.26.2.92002012Bundled with Windows 8(c) 2012

See also

References

  1. ^ "Robocopy XP010 FAQ". Windowsitpro.com. 2004-11-15. http://windowsitpro.com/Windows/Articles/ArticleID/44324/pg/2/2.html. Retrieved 2012-11-11.
  2. ^ "Multi-threaded robocopy for faster copies - Grant Holliday's Blog - Site Home - MSDN Blogs". Blogs.msdn.com. 2009-10-23. http://blogs.msdn.com/b/granth/archive/2009/12/07/multi-threaded-robocopy-for-faster-copies.aspx. Retrieved 2012-11-11.
  3. ^ "Return codes that are used by the Robocopy utility in Windows Server 2008 or Windows Server 2008 R2". Support.microsoft.com. 2012-02-17. http://support.microsoft.com/kb/954404/en-us. Retrieved 2012-11-11.
  4. ^ http://msdn.microsoft.com/en-us/library/aa363858.aspx "CreateFile function". MSDN. http://msdn.microsoft.com/en-us/library/aa363858.aspx. "FILE_SHARE_READ [...] Enables subsequent open operations on a file or device to request read access. Otherwise, other processes cannot open the file or device if they request read access."
  5. ^ "Robocopy.exe - Robust File Copy Utility - Version XP010". http://theether.net/download/Microsoft/Utilities/robocopy.pdf. "Backup mode copies [...] enable you to copy some files as a Backup Operator that you would not be able to copy as a normal user."
  6. ^ "Default groups". Microsoft TechNet. http://technet.microsoft.com/en-us/library/cc756898(v=ws.10).aspx. "Backup Operators [...] Members of this group can back up and restore all files [...], regardless of their own individual permissions on those files."
  7. ^ "Diskshadow". Microsoft TechNet. http://technet.microsoft.com/de-de/library/cc772172(v=ws.10).aspx. Retrieved 2013-03-06. "DiskShadow.exe is a tool that exposes the functionality offered by the Volume Shadow Copy Service (VSS)."
  8. ^ "Microsoft's Robocopy compromise". ZDNet. 2008-08-04. http://www.zdnet.com.au/blogs/snorage/soa/Microsoft-s-Robocopy-compromise/0,2000064373,339291041,00.htm. Retrieved 2012-11-11.
  9. ^ "Ugly bug in Robocopy - ignoring security on file level - Martin Zugec blog". Msmvps.com. 2008-03-03. http://msmvps.com/blogs/martinzugec/archive/2008/03/03/ugly-bug-in-robocopy-ignoring-security-on-file-level.aspx. Retrieved 2012-11-11.
  10. ^ "Robocopy". Technet.microsoft.com. http://technet.microsoft.com/en-us/library/cc733145(WS.10).aspx. Retrieved 2012-11-11.
  11. ^ Joshua Hoffman (November, 2006). "Utility Spotlight Robocopy GUI". TechNet Magazine (Microsoft Corporation and CMP Media, LLC). Retrieved 2008-07-17. 
  12. ^ "WinRoboCopy - UpWay2Late.com Software". Upway2late.com. http://www.upway2late.com/projects/winrobocopy. Retrieved 2012-11-11.
  13. ^ "Easy RoboCopy". TribbleSoft. http://tribblesoft.com/EasyRoboCopy.php. Retrieved 2012-11-23.
  14. ^ "SH-RoboCopy GUI". SH-Soft. http://www.sh-soft.com/front_content.php?idcatart=156. Retrieved 2012-11-23.
  15. ^ Hoffman, Joshua (November, 2006). "Free Utility: RichCopy, an Advanced Alternative to RoboCopy". TechNet Magazine (Microsoft Corporation and CMP Media, LLC). Retrieved 2008-07-17. 

External links

    Sebelumnya  (RoboBOARD/FX) (Roboform)  Berikutnya    


MatematikaOpen SourceDebat Politik



Tags: Robocopy, Informatika Komputer, 2242, Robocopy Robocopy Developer(s) Microsoft Stable release 6.1 Operating system Windows NT Windows 2000 Windows XP Windows Server 2003 Windows Vista Windows 7 Windows Server 2008 Windows Server 2012 License Proprietary Robocopy or, Robust File Copy, is a command line directory replication command, It has been available as part of the Windows Resource Kit starting with Windows NT 4.0 and w, Robocopy, Bahasa Indonesia, Contoh Instruksi, Tutorial, Referensi, Buku, Petunjuk m.kelas karyawan sebi, prestasi.web.id
 Cari Karir    Daftar Online    Program Perkuliahan Shift    Permintaan Beasiswa Pendidikan    Kuliah Reguler    Seluruh Perdebatan    Download Brosur / Katalog
Kumpulan Pelajaran Online
Penyelenggara
Kelas Sore/Malam (Hybrid)
TUJUAN PENYELENGGARAAN
SELAMAT DATANG
PENDAFTARAN MHS BARU
DANA PENDIDIKAN
DOSEN & WAKTU KULIAH
Jaringan Website Perkuliahan Shift
Jaringan Website Gabungan PTS
Jaringan Website Kuliah Reguler
Jaringan Website Program Pascasarjana (S2)
Jaringan Website Kuliah Karyawan

 Alqur'an Online    Program Pascasarjana (S2)    Program Kuliah Non Reguler    Perkuliahan Gratis    Kuliah Blended di 112 PTS Terbaik    Contoh Soal Try Out    Semua Info    Pusat Ensiklopedis Bebas    Tips & Trik Tes Psikologi    Buku Referensi    Waktu Shalat
Manfaat Sirsak

Merawat tanaman / tumbuhan Mahkota Dewa, Kandungan zat gizi Ranti (Lenca), Menanam benih / biji Kacang Gude di sekitar rumah, dsb.

Infokan ke Rekan
Nama Anda

Email Anda

Email Rekan 1
⚙ harus diisi dengan benar

Web Artikel
Referensi Dunia

1. Universitas Wijaya Kusuma Surabaya - Universitas Wijaya Kusuma Surabaya - Kampus : Jl. Dukuh Kupang XXV No.54, Dukuh Kupang, Kec. Dukuhpakis, Surabaya, Jawa Timur 60225
2. UWIKA Surabaya - Universitas Widya Kartika Surabaya - Kampus UWIKA : Jl. Sutorejo Prima Utara II No.1, Kalisari, Kec. Mulyorejo, Kota Surabaya, Jawa Timur 60112
3. USM Indonesia Medan - Universitas Sari Mutiara Indonesia Medan - Kampus USM INDONESIA : Jalan Kapten Muslim No. 79, Medan
4. UNUSIDA - Universitas Nahdlatul Ulama Sidoarjo - Kampus UNUSIDA :Jl. Monginsidi No.A23, Sidoklumpuk, Sidokumpul, Kec. Sidoarjo, Kabupaten Sidoarjo, Jawa Timur 61218
5. UNUGHA Cilacap - Universitas Nahdlatul Ulama Al Ghazali Cilacap - Kampus UNUGHA : Jl. Kemerdekaan Barat No 17 Kesugihan Kidul Cilacap Jawa Tengah
6. UNU Kaltim Samarinda - Universitas Nahdlatul Ulama Kalimantan Timur Samarinda - Kampus UNU KALTIM : Jl. KH. Harun Nafsi Gg. Dharma, Kel. Rapak Dalam Kec. Loa Janan Ilir Samarinda
p2k.mputantular.ac.id  |  p2k.unmura.ac.id  |  kelaskaryawan.polnas.ac.id  |  stit-alhidayah.web.id  |  staitbiasjogja.web.id  |  sebi.web.id  |  uin-al-azhaar.web.id  |  unusida.web.id  |  unmkramat.web.id  |  unmtangerang.web.id