以前在 Windows 7 中,我能够将 My Documents 文件夹的文件路径更改为网络映射(例如 H:\John Doe Documents)。由于我们已切换到 Windows 7,因此我不得不使用一种解决方法,将 C 驱动器上的文件夹中的链接文件创建到映射位置,并在文件实际链接之前将其包含在“我的文档”库中。
我们当前的文件结构为 -\\servername\homefolder\%username%\John Doe Documents
或\\servername\homefolder\%username%\johndoedocuments
. 创建符号链接时,我需要覆盖这两个文件夹。
这是我目前使用的脚本
@echo off
mkdir c:\Documents
echo.
echo.
echo Right click My Documents and add C:\Documents to the Library Locations.
echo.
echo.
pause
rd C:\Documents
mklink /D C:\Documents \\servername\homefolder\%username%\*documents\
目前这不起作用。如果我删除 *documents\ 它确实有效。我尝试这样做的原因是因为我们还将 Outlook 的用户 pst 文件存放在 \%username% 文件夹中,我们不希望用户看到该文件夹并可能将其删除。宁愿他们直接进入文档文件夹。
有什么帮助吗?希望这是我想念的简单的东西。提前致谢!