欢迎来到福编程网,本站提供各种互联网专业知识!

如何解决VisualSVN Server 安装提示错误 Repositories is not a valid short file name

发布时间:2015-09-12 作者:唐古拉山 来源:转载
最近在程序中安装VisualSVNServer时,总是提示“'Repositories'isnotavalidshortfilename”这个问题,难为了好长时间,最终解决,下面小编把我的解决办法分享给大家,供大家参考

最近安装新版 VisualSVN Server 总在安装过程提示错误:

“'Repositories' is not a valid short file name.” 点确定后安装过程就终止了,不能继续。

找了下问题原因,发现是因为之前可能在另外一个移动分区上面放置过 Repositories 库目录,而此时那移动分区又不存在,所以 VisualSVN Server 安装程序也找不到之前的库目录了。

提示错误 'Repositories' is not a valid short file name 这个明显是忽悠人了,怎么修复呢?

开始菜单 --》 运行 --》 输入 regedit 然后在注册表搜索 Repositories 发现2处曾经在移动分区上的历史记录,删除掉先:

@ECHO OFF 
reg delete "HKLMSOFTWAREMicrosoftWindowsCurrentVersionInstallerUserDataS-1-5-18Components36375FA3E7EE6F3459468B815AF18822" /f 
reg delete "HKLMSOFTWAREMicrosoftWindowsCurrentVersionInstallerUserDataS-1-5-18Components6B5F76CC875F2E24E95282957BD8A9F8" /f 

删除完成后,再次安装 VisualSVN Server,不再提示 "Repositories' is not a valid short file name" 这个错误了,顺利安装完成!

以上就是关于VisualSVN Server 安装提示错误 Repositories is not a valid short file name 的解决方案,希望大家喜欢。

相关推荐