将 *.ink 复制到桌面时出现问题?

发布于 2024-10-14 23:48:58 字数 219 浏览 4 评论 0原文

我想创建一个批处理文件,将我的图标复制到桌面,这被证明很困难,任何人都可以帮忙吗?

我打算使用的代码只是一个简单的xcopy,但它并没有达到预期的效果,

xcopy /s/y C:\ICT\AUTOCAD_2010\NEWINK C:\"Documents and Settings"\"%userprofile%"\desktop

谢谢-

i would like to craete a batch file that copys my icon to the desktop, which is proving dificult can anyone help?

the code i have asumed to use is a simply xcopy but it dose not result as wished for

xcopy /s/y C:\ICT\AUTOCAD_2010\NEWINK C:\"Documents and Settings"\"%userprofile%"\desktop

thanks-

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟织青萝梦 2024-10-21 23:48:58

这应该可以工作

xcopy /s/y C:\ICT\AUTOCAD_2010\NEWINK "%userprofile%\desktop\"

在%userprofile%中是完整路径,例如“c:\ users \ Adam”
并且路径“Documents and Settings”只是“c:\Users”的同义词

This should work

xcopy /s/y C:\ICT\AUTOCAD_2010\NEWINK "%userprofile%\desktop\"

In %userprofile% is the complete path, like "c:\users\Adam"
And the path "Documents and Settings" is only a synonym for "c:\Users"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文