Copy directory structure without files

========= QUESTION --------- Can you copy over the directory structure from one folder to another without copying the files in those directories?   ========= ANSWER --------- Use XCOPY from the Command Prompt using the /t and /e switches to include empty directories and subdirectories. See EXAMPLES   ========= EXAMPLES ---------xcopy "Q:PRODDATAReports" "C:UsersmyUserDocumentsSubDirSystemsQReports" /t /e   [...]

By |2011-07-05T14:23:39+00:00July 5th, 2011|Computers, Documentation, Microsoft, MS-DOS / Batch, Windows|Comments Off on Copy directory structure without files

How do I ping a web site address?

=========QUESTION---------How do I ping a web site address? =========ANSWER---------In Microsoft Windows: Start button, Run, type COMMAND, click [OK]A black window titled Command Prompt should openAt the prompt type the following:PING WEBSITENAME (replace WEBSITENAME with your domain name) --------- In Macintosh OS X: Launch Terminal (open Spotlight by pressing Command + Space bar, and type Terminal)A small [...]

By |2017-12-01T23:47:50+00:00April 12th, 2011|Apple, Computers, Documentation, Internet/Web, Mac, Microsoft, MS-DOS / Batch|Comments Off on How do I ping a web site address?

Variables in Batch Files and Commands

=========REF---------http://www.computing.net/answers/programming/batch-script-for-setting-up/12506.html  http://www.msfn.org/board/topic/37472-username-in-batch-file/ =========EXAMPLES---------Test the following by typingECHO %username%, etc at the command prompt %username% %computername% %systemroot% =========APPLIES TO / KEYWORDS---------Microsoft DOSMS-DOSBatchCommandsVariables ---http://www.anysitesupport.com/variables-in-batch-files-and-commands/

By |2011-04-08T11:15:48+00:00April 8th, 2011|Computers, Documentation, Microsoft, MS-DOS / Batch|Comments Off on Variables in Batch Files and Commands
Go to Top