更新多个pc上的url文件&文件夹

时间:2015-11-18 15:41:26

标签: batch-file url vbscript

我工作的公司办公室已经锁定了我们使用GPO推出的东西,我们也使用Kixtart,但除非用户是管理员,否则它不起作用所以我必须找到另一种方法来做到这一点。

基本上,我们在公共桌面或特定用户帐户上都有一个.url文件。我希望找到一个脚本,不仅可以搜索公共桌面,还可以替换文件,还可以搜索单个用户文件。

这是工作脚本!感谢wOxxOm的帮助。

for /f "delims=" %%F in ('dir /b /s "Citrix XenApp - Applications.url"') do copy /Y "\\server\hostshare\Citrix XenApp - Applications.url" "%%F"

PSExec脚本(注意工作目录的-w)

psexec -w c:\users \\pc -u domain\username -p password -n 3 "\\server\shortcutchange.bat"

1 个答案:

答案 0 :(得分:0)

Here's the working script! Thanks wOxxOm for helping.

for /f "delims=" %%F in ('dir /b /s "Citrix XenApp - Applications.url"') do copy /Y "\\server\hostshare\Citrix XenApp - Applications.url" "%%F"

PSExec script (note the -w for working directory)

psexec -w c:\users \\pc -u domain\username -p password -n 3 "\\server\shortcutchange.bat"