Jump to content

Copying files from CD to user disk issue


Recommended Posts

Hi Friends,

I am new here and got an issue that i need help with... I need to copy some files from the CD to the user system and then after copying I called the "setup.cmd" file to start the installer. When I copy the files, I do this:

xcopy *.* "%temp%\myfolder

rem c:

cd myfolder

call setup.com

Now, the problem is, this only works if i remove that comment line i.e "rem c:" but since the users can have their TEMP directories on D: or E: drive, I do not want to do that..so I would like to know what's the best way to handle this scenario...

Second thing I was thinking is to create a SFX using WinRAR but I am doubtful whether it will work on client systems that do not have WInRAR installled???

Any help would be appreciated.

Thanks

Link to comment
Share on other sites


Replace your second and third lines with either

  1. Pushd %temp%\MyFolder
    or
  2. Cd /d %temp%\MyFolder

As for the WinRAR SFX, it is a standalone and therefore requires no installation on the users system.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...