Microsoft
Software
Hardware
Network
Question : DOS/Windows Script
Hi,
I could have done this 10 years ago but have forgotten how !
I have an ascii file of customers names in the format;
John Smith
Paul Jones
George Martin
I want to create a sub directory in my Windows 2007 environment for each customer.
The name of the subdirectory should be the customers name.
I have not written such a script for over 10 year and need it written in full if possible.
I guess the script is just a simple loop through each name..
Answer : DOS/Windows Script
This should be on the right track
@echo off
set BaseDir=c:\temp
for /f "tokens=*" %%A in (cust.txt) do mkdir "%BaseDir%\%%A"
~bp
Random Solutions
Include signature when creating new e-mail from VBA command
MS access VB string not updating with fields from search form
How to open website (hosted on Win Server 2008, IIS) in Microsoft Frontpage 2000?
GetPivotdata Formula
To covert an access report with pictures to any editable document format retaining all the graphics and other formatting settings
SQL Select Distinct Results (Complex)
How do I setup a network with cross over cable between server 2008 and server 2003? 500pnts
Exchange 2007 - Transport Rule
How do I force a '0' value into a report
Find the syntax error in a INSERT INTO statement