Search found 5 matches

by dachadster13
15 Jan 2010 19:31
Forum: DOS Batch Forum
Topic: xcopy
Replies: 1
Views: 3329

xcopy

Hey guys..I have a desktop running Windows 7 and a work laptop (on a domain) running XP Pro SP2. I have created a share on my laptop to access my desktop so I can pull the files I need. The share works just fine but I would like to automate the transfer process (from the shared folder on my laptop t...
by dachadster13
20 Jul 2009 19:43
Forum: DOS Batch Forum
Topic: Set command help
Replies: 5
Views: 7173

Sorry for all the confusion. After playing around with it some more I got the answer.I was pretty much just testing how the command functioned and my syntax was off. Thanks.
by dachadster13
20 Jul 2009 19:03
Forum: DOS Batch Forum
Topic: Set command help
Replies: 5
Views: 7173

I am reading the help from the cmd prompt and it says the syntax is set variable = string. I am interpreting this as I am giving the string a value. So when I type the string portion, it returns the variable. Sorry for the poor example. I have never needed to know how to use this command before. Var...
by dachadster13
20 Jul 2009 18:04
Forum: DOS Batch Forum
Topic: Set command help
Replies: 5
Views: 7173

@echo off
echo Program Name: = %0
set %1 =%test%
echo Argument 1 =%1
echo Argument 2 =%2
echo Argument 3 =%3

I am trying to output the test variable to the Argument 1 line. Or do I have this completely jacked up?
by dachadster13
20 Jul 2009 17:36
Forum: DOS Batch Forum
Topic: Set command help
Replies: 5
Views: 7173

Set command help

I am working on a batch script and am having trouble with the set command. I have looked in the help section of the command but am still missing something (probably simple). Here is what I have so far: @echo off echo Program Name: = %0 set %1 =%test% echo Argument 1 =%1 echo Argument 2 =%2 echo Argu...