• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Help writing batch file (long folder names problem)

Bruck

Senior member
Writing a batch file to copy *.lnk to c:\documents and settings\All Users\Desktop but syntax is not correct
I figured out that "copy *.lnk c:\documents~1" works but i am having trouble continuing the syntax of the correct path, any help would be greatly appreciated.

Thanks
 
Put the path in quotes and "to" from the command line.

So it would be

copy *.lnk to "c:\documents and settings\All Users\Desktop".



 
Back
Top