Archief - [DOS/3.x] pc id bijna iogeterdu,

Het archief is een bevroren moment uit een vorige versie van dit forum, met andere regels en andere bazen. Deze posts weerspiegelen op geen enkele manier onze huidige ideeën, waarden of wereldbeelden en zijn op sommige plaatsen gecensureerd wegens ontoelaatbaar. Veel zijn in een andere tijdsgeest gemaakt, al dan niet ironisch - zoals in het ironische subforum Off-Topic - en zouden op dit moment niet meer gepost (mogen) worden. Toch bieden we dit archief nog graag aan als informatiedatabank en naslagwerk. Lees er hier meer over of start een gesprek met anderen.

peter

Legacy Member
hoi mijn computer start niet meer op en ik wil windows opnieuw installeren. maar op mijn c: staan belangrijke dingen. kan ik via ms dos de mappen kopieren naar mijn d:

wat moet ik dan intoetsen:
c:/andere~1/cor moet gekopieerd worden naar mijn d:
alvast bedankt Hoe krijg ik die tilde op een qwerty toesenbord?
Dank u?µGoetjes

i386dx

Legacy Member
Downloadt u een Linux livecd (maakt al nie veel uit de welke). Dan hebt ge een grafische omgeving om je bestanden te kopieren.
Onder DOS gaat dit wel lukken, maar gaat da lang duren. Indien toch via dos zeker smartdrive diskcaching inschakelen (smartdrv).
Mappen kopieren kan je met het commando "xcopy"
Toetsenbord instellen naar Belgische layout kan met "keyb be" indien da nie werkt vinde de tilde op de toets onder Escape (met ² en ³, kgeloof in combinatie met shift)

Wa is het bestandssysteem van C en D trouwens en over welke DOS-versie gaat het?

peter

Legacy Member
Ik zit momenteel in de recoveryconsole van XP (dos kan ik niet gebruiken omdat alles ntfs geformatteerd is). Hoe kan ik een bestand copieren van de ene schijf naar de andere.
Ik heb een map die heet "documenten van Peter" met welk commando kan ik die nu kopiëren
Wanneer ik een dir doe op de schijf die ik wil kopiëren staan er een hoop attributen in de lijst zoals:
d-------
-a------
d--hs---
Zou het kunnen dat die beveiligd zijn en dat ik die niet kan kopiëren?

Cranox

Legacy Member
Windows 2000 and XP xcopy syntax

XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W] [/C] [/I] [/Q] [/F] [/L] [/H] [/R] [/T] [/U]
[/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z] [/EXCLUDE:file1[+file2][+file3]...]
source Specifies the file(s) to copy.
destination Specifies the location and/or name of new files.
/A Copies only files with the archive attribute set, doesn't change the attribute.
/M Copies only files with the archive attribute set, turns off the archive attribute.
/D:m-d-y Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.
/EXCLUDE:file1 [+file2][+file3]... Specifies a list of files containing strings. When any of the strings match any part of the absolute path of the file to be copied, that file will be excluded from being copied. For example, specifying a string like \obj\ or .obj will exclude all files underneath the directory obj or all files with the .obj extension respectively.
/P Prompts you before creating each destination file.
/S Copies directories and subdirectories except empty ones.
/E Copies directories and subdirectories, including empty ones. Same as /S /E. May be used to modify /T.
/V Verifies each new file.
/W Prompts you to press a key before copying.
/C Continues copying even if errors occur.
/I If destination does not exist and copying more than one file, assumes that destination must be a directory.
/Q Does not display file names while copying.
/F Displays full source and destination file names while copying.
/L Displays files that would be copied.
/H Copies hidden and system files also.
/R Overwrites read-only files.
/T Creates directory structure, but does not copy files. Does not include empty directories or subdirectories. /T /E includes empty directories and subdirectories.
/U Copies only files that already exist in destination.
/K Copies attributes. Normal Xcopy will reset read-only attributes.
/N Copies using the generated short names.
/O Copies file ownership and ACL information.
/X Copies file audit settings (implies /O).
/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.

Windows 98 and older xcopy syntax

Copies files and directory trees.

XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/W] [/C] [/I] [/Q] [/F] [/L] [/H] [/R] [/T] [/U] [/K] [/N]
source Specifies the file(s) to copy.
destination Specifies the location and/or name of new files.
/A Copies files with the archive attribute set, doesn't change the attribute.
/M Copies files with the archive attribute set, turns off the archive attribute.
/D:date Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.
/P Prompts you before creating each destination file.
/S Copies directories and sub directories except empty ones.
/E Copies directories and sub directories, including empty ones. Same as /S /E. May be used to modify /T.
/W Prompts you to press a key before copying.
/C Continues copying even if errors occur.
/I If destination does not exist and copying more than one file, assumes that destination must be a directory.
/Q Does not display file names while copying.
/F Displays full source and destination file names while copying.
/L Displays files that would be copied.
/H Copies hidden and system files also.
/R Overwrites read-only files.
/T Creates directory structure, but does not copy files. Does not include empty directories or sub directories. /T /E includes empty directories and sub directories.
/U Updates the files that already exist in destination.
/K Copies attributes. Normal xcopy will reset read-only attributes.
/Y Overwrites existing files without prompting.
/-Y Prompts you before overwriting existing files.
/N Copy using the generated short names.
Examples

xcopy c:\temp /e

The above example is the basic xcopy command to copy the files, directories, and subdirectories to the directory you're currently in.

xcopy h:\*.* /a /e /k

The above command would copy everything located on the H drive to the drive you are currently on.

Additional examples and information about how to copy directories in MS-DOS and other operating systems including Windows can also be found on document CH000838.

Questions and answers

I attempted to use the above xcopy command and was not able to copy all files within my favorites folder.

After further examination, Computer Hope also encountered this issue, however was able to copy the majority of all favorites by using the below command.

xcopy c:\windows\favorites\*.* /e /k /i /c

We are under the impression that this issue is generated because of the way that Internet Explorer saves the URL (favorite) using long file names as well as extended characters.

http://www.computerhope.com/xcopyhlp.htm

peter

Legacy Member
Het lukt me niet om bestanden te kopiëren met de opdracht xcopy
Ik heb de installatiecd van XP ingestoken en op R gedrukt om de herstelconsole op te starten. Ik sta dan met de cursor naast c:\> Ik wil de hele d-schijf naar de c kopiëren met de opdracht
xcopy d:\*.* /a /e /k maar de opdrachtnaam wordt niet herkent type help voor een lijst....
Ik weet niet wat ik verkeerd doe...

Exit

Legacy Member
herstelconsole IS GEEN DOS!!!
dunno of de xcopy idnerdaad een optie is in herstellconsole
Het archief is een bevroren moment uit een vorige versie van dit forum, met andere regels en andere bazen. Deze posts weerspiegelen op geen enkele manier onze huidige ideeën, waarden of wereldbeelden en zijn op sommige plaatsen gecensureerd wegens ontoelaatbaar. Veel zijn in een andere tijdsgeest gemaakt, al dan niet ironisch - zoals in het ironische subforum Off-Topic - en zouden op dit moment niet meer gepost (mogen) worden. Toch bieden we dit archief nog graag aan als informatiedatabank en naslagwerk. Lees er hier meer over of start een gesprek met anderen.
Terug
Bovenaan