Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Xcopy Vs Copy

Featured Replies

i'm writing a batch file to copy a few files over... What is the difference between using xcopy vs copy in a batch file? and do i need quotes over paths? Or... does anyone know how to copy files using my RunOnceEX file? i want to copy

%CDROM%\Applications\CDRWIN\Cdrwin.dat

to

%systemdrive%\CDRWIN3\

This will automatically register my application. What is the easiest way to do this? i would like to do it via the runonce ex, but if not what's some good batch commands?

Thanks alot

  • Author

It's a "dat" file. And the program needs that file.. it holds all the registration info specific to my license. So what is better? Xcopy or Copy in batch (cmd) files?

Thanks

copy does a shallow copy (doesn't recurse into sub directories) while xcopy has the option to do a rescursive copy which will copy all files and subfolders within the target folder that you are copying. if you're just copying one single file, either one will suffice.

  • Author

Thanks exactly what i was looking for.. now i need some syntax help? Where do you use quotes? is it...

XCOPY "%CDROM%\Applications\CDRWIN\Cdrwin.dat" "%systemdrive%\CDRWIN3\"

or...

XCOPY %CDROM%\Applications\CDRWIN\Cdrwin.dat %systemdrive%\CDRWIN3\

without quotes?

Thanks

Either one should be sufficient. There shouldn't be any spaces in the variables, so, you can use quotes if you want, or you can not use quotes if you would prefer.

I personally always use quotes, just cause I feel its a good habit to get into, like pushin the clutch down when you brake, its not something thats always needed, but when it is need, it is important!

Use The Copy Cmd To Copy One File

Copies one or more files to another location.

COPY [/D][/V] [/N] [/Y | /-Y] [/Z] [/A | /B ] source [/A | /B]

    [+ source [/A | /B] [+ ...]] [destination [/A | /B]]

  source      Specifies the file or files to be copied.

  /A          Indicates an ASCII text file.

  /B          Indicates a binary file.

  /D          Allow the destination file to be created decrypted

  destination  Specifies the directory and/or filename for the new file(s).

  /V          Verifies that new files are written correctly.

  /N          Uses short filename, if available, when copying a file with a

              non-8dot3 name.

  /Y          Suppresses prompting to confirm you want to overwrite an

              existing destination file.

  /-Y          Causes prompting to confirm you want to overwrite an

              existing destination file.

  /Z          Copies networked files in restartable mode.

The switch /Y may be preset in the COPYCMD environment variable.

This may be overridden with /-Y on the command line.  Default is

to prompt on overwrites unless COPY command is being executed from

within a batch script.

To append files, specify a single file for destination, but multiple files

for source (using wildcards or file1+file2+file3 format).

copy /y "%CDROM%\Applications\CDRWIN\Cdrwin.dat" "%systemdrive%\CDRWIN3\"

kelsenellenelvian: how do i do that?

Right click on the file/s or folder/s you want to be placed after installation.

Select "add to archive" in winrar check the boxe that says "create sfx archive".

Next click advanced tab and choose "SFX options"

The next box will have a Path to extract box.

Put where you want the file in this box ie... c:\windows\system32

All variables can be used in this section also like %systemroot%, %Userprofile%.

Now go to the modes tab and check the options of "hide all" and "overwrite all files"

Click ok

then ok again.

Now all you have to do is call the sfx file from guironeonce or wherever. No switches are needed and the sfx is COMPLETLY silent!!!!!!!!!

Please sign in to comment

You will be able to leave a comment after signing in

Sign In Now

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.