Defining PATH

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
Tactics_Ogre
Posts: 1
Joined: 22 May 2015 12:26

Defining PATH

#1 Post by Tactics_Ogre » 22 May 2015 12:44

Hi everyone,
I'm a real newb on this so I may not be making any sense.
Anyway.

I'm trying to set this path to access my program in this .bat

Code: Select all

@ECHO OFF
DEL *.
CLS
SET _PATH=%PATH%;
SET PATH=\DF30;\DF30\SYSTEM;%_PATH%
SET DFPATH=\SIKE;\SIKE\DAT;\CEP\DAT;\DF30;\DF30\SYSTEM
DFRUN %1 %2
SET PATH=%_PATH%
SET _PATH=
SET DFPATH=
CLS


This path was working when my files were in "D:/SIKE" and "D:/DF30"
where are those paths set in my computer? I'm trying to change the files locatoin and I cant make it work.
Also, I would like to access it trough my network remotely like from "\\SERVER\public\SIKE" is it possible?

thanks!

Post Reply