If you ever want to package up batch or vbs files into executables check this site out.
http://renegadetech.blogspot.com/2006/07/how-to-convert-bat-file-or-vbs-file.html
Filed under: Scripting | Leave a Comment »
If you ever want to package up batch or vbs files into executables check this site out.
http://renegadetech.blogspot.com/2006/07/how-to-convert-bat-file-or-vbs-file.html
Filed under: Scripting | Leave a Comment »
If you need to copy new files from a source to a destination use this command:
xcopy /E /H /X source destination
/E – Copies directories and subdirectories, including empty ones.
/H - Copies hidden and system files also
/X – Copies file audit settings (implies /O)
Filed under: Scripting | Leave a Comment »