top of page

The tracert command for Windows can trace the route that data takes from your network to a domain specified in the command. So if you go to command prompt and enter "tracert" followed by a web address results will be generated showing how many servers or routers data passes through to get its destination. Each 'hop' from one hardware device to another is numbered on the first column on the left.



. . . the next three columns show the time in milliseconds that the data takes to move between each router or server. The connection between every two points is tested three times. When the times in each test are about the same, the connection should be stable.


If there are three asterisks listed between two points at the end of the tracert report this would be an indication that the connection is down. But if the tracert test does not error out at the end, asterisks listed for one or more hops may simply mean that the routers or servers being used are set up not to provide the necessary data. Only 1 or 2 asterisks on a row are a bad sign - the connection is spotty.


When using robocopy command in Windows to copy files, note that if you are an admin you can use the /B switch to copy files from directories for which you don't have access. So a command like this:


robocopy C:\foofolder C:\newfolder \B


. . . will bypass the standard rights permissions used in the NFTS file system. This backup mode /B switch will work if a Windows account has SeBackupPrivilege. This is an admin right that allows the copy command to be run without Windows checking to see if the user has rights to copy data to a location.


When writing a script to copy files from one destination to another, be sure to use PowersShell instead of creating a batch file with the XCOPY command. In PowerShell, the Copy-Item command followed by the source path and then the destination folder:


Copy-Item -Path "C:\foofolder\2022.07.Litigation Support Tip of the Night V2.docx" -Destination "C:\copy set\" -PassThru

Copy-Item -Path "C:\foofolder\acme.js" -Destination "C:\copy set\" -PassThru

Copy-Item -Path "C:\foofolder\AndroGel Meeting.docx" -Destination "C:\copy set\" -PassThru

Copy-Item -Path "C:\foofolder\Applications" -Destination "C:\copy set\" -PassThru


. . . will copy files to a new location faster than a .bat file.




Sean O'Shea has more than 20 years of experience in the litigation support field with major law firms in New York and San Francisco.   He is an ACEDS Certified eDiscovery Specialist and a Relativity Certified Administrator.

The views expressed in this blog are those of the owner and do not reflect the views or opinions of the owner’s employer.

If you have a question or comment about this blog, please make a submission using the form to the right. 

Your details were sent successfully!

© 2015 by Sean O'Shea . Proudly created with Wix.com

bottom of page