Skip to content

Instantly share code, notes, and snippets.

@brianpeiris
Created March 2, 2013 18:59
Show Gist options
  • Save brianpeiris/5072557 to your computer and use it in GitHub Desktop.
Save brianpeiris/5072557 to your computer and use it in GitHub Desktop.
Simple batch file to download all Sysinternals tools to current directory
@echo off
echo Updating...
REM Open explorer to establish access to the share
explorer \\live.sysinternals.com\tools
REM Copy the tools to the current directory
robocopy \\live.sysinternals.com\tools .
echo Done
REM Pause to show status
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment