Skip to content
Menu
Jumlins TechBlog
  • Home
  • About
Jumlins TechBlog

RoboCopy PowerShell Script

Posted on 2012-05-112018-03-09 by Niklas Jumlin

I wrote a script that utilizes RoboCopy to mirror directories. It can easily be changed to do file level backups by changing some configurable parameters within the script. Read RoboCopys documentation to understand the use of switches.

Whats interesting about this script is that it writes events/logs to EventLog if executed with administrative privileges, otherwise it will just fallback to logging to file and screen.

## This Script Mirrors a directory tree from source to destination with the Windows builtin command robocopy.
## Exit codes from robocopy are logged to Windows Eventlog.
## Author: NIKLAS JUMLIN

## Usage: Run with administrative rights in Windows Task Scheduler or Administrator:PowerShell
## If not executed with administrative privileges the script will not write to eventlog.

## Change these parameters
## ================================================================

## Name of the job, name of source in Windows Event Log and name of robocopy Logfile.
$JOB = "MyApplication"

## Source directory
$SOURCE = "D:\PSTesting\Folder1"

## Destination directory. Files in this directory will mirror the source directory. Extra files will be deleted!
$DESTINATION = "D:\PSTesting\Folder2"

## Path to robocopy logfile
$LOGFILE = "D:\PSTesting\$JOB"

## Log events from the script to this location
$SCRIPTLOG = "D:\PSTesting\$JOB-scriptlog.log"

## Mirror a direcotory tree
$WHAT = @("/MIR")
## /COPY:DATS: Copy Data, Attributes, Timestamps, Security
## /SECFIX : FIX file SECurity on all files, even skipped files.

## Retry open files 3 times wait 30 seconds between tries. 
$OPTIONS = @("/R:3","/W:30","/NDL","/NFL")
## /NFL : No File List - don't log file names.
## /NDL : No Directory List - don't log directory names.
## /L   : List only - don't copy, timestamp or delete any files.

## This will create a timestamp like yyyy-mm-yy
$TIMESTAMP = get-date -uformat "%Y-%m%-%d"

## This will get the time like HH:MM:SS
$TIME = get-date -uformat "%T"

## Append to robocopy logfile with timestamp
$ROBOCOPYLOG = "/LOG+:$LOGFILE`-Robocopy`-$TIMESTAMP.log"

## Wrap all above arguments
$cmdArgs = @("$SOURCE","$DESTINATION",$WHAT,$ROBOCOPYLOG,$OPTIONS)

## ================================================================

## Start the robocopy with above parameters and log errors in Windows Eventlog.
& C:\Windows\System32\Robocopy.exe @cmdArgs

## Get LastExitCode and store in variable
$ExitCode = $LastExitCode

$MSGType=@{
"16"="Errror"
"8"="Error"
"4"="Warning"
"2"="Information"
"1"="Information"
"0"="Information"
}

## Message descriptions for each ExitCode.
$MSG=@{
"16"="Serious error. robocopy did not copy any files.`n
Examine the output log: $LOGFILE`-Robocopy`-$TIMESTAMP.log"
"8"="Some files or directories could not be copied (copy errors occurred and the retry limit was exceeded).`n
Check these errors further: $LOGFILE`-Robocopy`-$TIMESTAMP.log"
"4"="Some Mismatched files or directories were detected.`n
Examine the output log: $LOGFILE`-Robocopy`-$TIMESTAMP.log.`
Housekeeping is probably necessary."
"2"="Some Extra files or directories were detected and removed in $DESTINATION.`n
Check the output log for details: $LOGFILE`-Robocopy`-$TIMESTAMP.log"
"1"="New files from $SOURCE copied to $DESTINATION.`n
Check the output log for details: $LOGFILE`-Robocopy`-$TIMESTAMP.log"
"0"="$SOURCE and $DESTINATION in sync. No files copied.`n
Check the output log for details: $LOGFILE`-Robocopy`-$TIMESTAMP.log"
}

## Function to see if running with administrator privileges
function Test-Administrator  
{  
    $user = [Security.Principal.WindowsIdentity]::GetCurrent();
    (New-Object Security.Principal.WindowsPrincipal $user).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)  
}

## If running with administrator privileges
If (Test-Administrator -eq $True) {
	"Has administrator privileges"
	
	## Create EventLog Source if not already exists
	if ([System.Diagnostics.EventLog]::SourceExists("$JOB") -eq $false) {
	"Creating EventLog Source `"$JOB`""
    [System.Diagnostics.EventLog]::CreateEventSource("$JOB", "Application")
	}
	
	## Write known ExitCodes to EventLog
	if ($MSG."$ExitCode" -gt $null) {
		Write-EventLog -LogName Application -Source $JOB -EventID $ExitCode -EntryType $MSGType."$ExitCode" -Message $MSG."$ExitCode"
	}
	## Write unknown ExitCodes to EventLog
	else {
		Write-EventLog -LogName Application -Source $JOB -EventID $ExitCode -EntryType Warning -Message "Unknown ExitCode. EventID equals ExitCode"
	}
}
## If not running with administrator privileges
else {
	## Write to screen and logfile
	Add-content $SCRIPTLOG "$TIMESTAMP $TIME No administrator privileges" -PassThru
	Add-content $SCRIPTLOG "$TIMESTAMP $TIME Cannot write to EventLog" -PassThru
	
	## Write known ExitCodes to screen and logfile
	if ($MSG."$ExitCode" -gt $null) {
		Add-content $SCRIPTLOG "$TIMESTAMP $TIME Printing message to logfile:" -PassThru
		Add-content $SCRIPTLOG ($TIMESTAMP + ' ' + $TIME + ' ' + $MSG."$ExitCode") -PassThru
		Add-content $SCRIPTLOG "$TIMESTAMP $TIME ExitCode`=$ExitCode" -PassThru
	}
	## Write unknown ExitCodes to screen and logfile
	else {
		Add-content $SCRIPTLOG "$TIMESTAMP $TIME ExitCode`=$ExitCode (UNKNOWN)" -PassThru
	}
	Add-content $SCRIPTLOG ""
	Return
}

Any new updates will be available for Download from my DropBox:
RoboCopyMir.ps1

Share on Facebook

14 thoughts on “RoboCopy PowerShell Script”

  1. Mike says:
    2012-09-21 at 08:53

    This script is absolutely excellent. It not only did exactly what I needed, but is a model template script that is clean, concise and well documented. Well done!

  2. Niklas Jumlin says:
    2012-11-15 at 10:39

    Thank you Mike! As always, I’m thrilled whenever someone finds a use for my scripts. I’m not really a professional programmer therefore I’m happy that I’m on the track.

  3. Brian says:
    2013-04-12 at 14:08

    Brilliant script. If I want to replace the log file each time I run script what code changes should I make.

  4. Niklas Jumlin says:
    2013-04-12 at 15:36

    Hi Brian,
    Thanks for using my script!

    First of, there are two log files as you might have noticed. One is from the logical steps of the script itself, the other one is the Robocopy job.

    To clear the log on each execution go ahead with these changes:

    Look for these lines:
    ## Log events from the script to this location
    $SCRIPTLOG = “D:\PSTesting\$JOB-scriptlog.log”

    Edit it so it looks like this:
    ## Log events from the script to this location
    $SCRIPTLOG = “D:\PSTesting\$JOB-scriptlog.log”
    Clear-Content $SCRIPTLOG

    Replace this line:
    $ROBOCOPYLOG = “/LOG+:$LOGFILE`-Robocopy`-$TIMESTAMP.log”
    With the below line:
    $ROBOCOPYLOG = “/LOG:$LOGFILE`-Robocopy`-$TIMESTAMP.log”

    See these sites for reference:
    http://technet.microsoft.com/en-us/library/ee156808.aspx
    http://ss64.com/nt/robocopy.html

  5. Chad says:
    2013-08-09 at 23:08

    Excellent. A few tweaks here and there for my scenario, but you’ve helped! Thanks!

  6. Chester says:
    2015-05-11 at 10:56

    Nice script!, but would be good if this was explicitly licensed.

  7. Dan Hughes says:
    2015-05-21 at 06:45

    Hi Niklas, I’ve stumbled across your blog looking for a way to let someone download a file from my blog which they can then copy onto a USB which they can take to a print store and print out a large blueprint-size poster.

    My goal is to use something like robocopy to move the file from their download to their USB so they do not retain the original download.

    Then after taking the USB to store, automatically delete the file from the USB after printing.

    Perhaps some code in the file that will delete source after either event.

    I’m still coming to grips with .php in word press such is the depth of my ignorance so I don’t know how to start experimenting with code to achieve the goal.
    Where does a newbie start?

  8. jay says:
    2015-05-22 at 08:39

    Hi Nikkas. Great script, thankyou.

    I’m just wondering why my robocopy log is showing:
    Options : *.* /NDL /NFL /S /E /COPY:DAT /PURGE /MIR /R:1 /W:10

    When in the script I have set:
    $WHAT = @(“/MIR”)
    $OPTIONS = @(“/R:1″,”/W:10″,”/NDL”,”/NFL”)

    Where is it getting the /s /e /copy:DAT /purge switches from?

    Cheers
    Jay

  9. Niklas Jumlin says:
    2015-05-22 at 08:46

    Hi jey,
    Thanks!

    These are defaults of robocopy itself. If you wish to change the defaults you must explicitly tell it what to copy (Default is COPY:DAT for example)

    /COPY:copyflag[s] : What to COPY (default is /COPY:DAT)
    /MIR : MIRror a directory tree – equivalent to /PURGE plus all subfolders (/E)

    Read more here:
    http://ss64.com/nt/robocopy.html

  10. Niklas Jumlin says:
    2015-05-22 at 08:49

    Dan Hughes, I’m sorry for late reply. This sounds like a project I would need more time for, time I dont have unfortunately. I would suggest asking your questions on StackOverflow.com for example, its great for learning basics to even asking advanced questions. Good luck!

  11. Sophia Joseph says:
    2017-06-24 at 23:32

    Why are there so many codes and commands just for a simple task, for file copying! How can you expect someone to remember so many commands at once! This is the main problem with robocopy, there should have been a GUI, a similar software with overwhelming features which was suggested by my friend once is GS Richcopy. This software works like a charm, no remembering code, no complex task to do, just simple and efficient file copying. Some of its features are long path name support, pre-scheduled file transfer, email notification when the transfer is complete and many more features. Hope it helps!

  12. HappyAdmin says:
    2021-03-08 at 14:11

    Great :-) Thank you very much

  13. Yeni Amondo says:
    2021-09-08 at 00:34

    Great script, Thank you very much. For sure you are saving the day for many of us.

  14. Armando says:
    2022-02-21 at 19:15

    excelente, muchas gracias por este valioso aporte.

Leave a Reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • Office 365 Groups/Teams powershell reporting script 2019-03-25
  • [Powershell Script] Convert ImmutableID 2018-09-12
  • Script to Schedule Mem and or vCPU up/downgrade 2015-05-13
  • Backing up VMs in Hyper-V 2013-01-09
  • Windows Server 2012 as a Workstation 2012-09-13

Archives

Categories

  • Exchange 2003
  • Exchange 2010
  • HTML/CSS
  • Imagick
  • JavaScript
  • Linux
  • Misc
  • Office 365 / Azure
  • PHP
  • PowerCLI
  • PowerShell
  • Projects
  • Scripts
  • Server
  • System Administration
  • VMware
  • Winbatch
  • Windows
  • Windows Server 2012

Recent Posts

  • Office 365 Groups/Teams powershell reporting script 2019-03-25
  • [Powershell Script] Convert ImmutableID 2018-09-12
  • Script to Schedule Mem and or vCPU up/downgrade 2015-05-13
  • Backing up VMs in Hyper-V 2013-01-09
  • Windows Server 2012 as a Workstation 2012-09-13
©2025 Jumlins TechBlog | Powered by WordPress & Superb Themes