我试图通过取消注释文件中的以下行来更改svnserve.conf
后使用cmd创建一个svnserver,
anon-access = read
auth-access = write
命令在cmd中执行,是
sc create svnserver binpath= "C:\Program Files\TortoiseSVN\bin\svnserve.exe --service -r c:\Goods\Repo" DisplayName= "Subversion" depend= tcpip start= auto
但我收到错误
'sc' is not recognized as an internal or external command
我不确定我做错了什么。我已经安装了陆龟SVN客户端和Visual SVN服务器。 有人可以让我知道我在这里缺少什么。
答案 0 :(得分:3)
您需要在Path环境变量中添加sc.exe(“c:\ windows \ system32 \”)的路径。通过按Windows键+ Pause | Break然后选择高级系统设置来执行此操作 - 环境变量位于底部。只需在最后一个之后添加一个额外的条目 - 用分号分隔。如果无法做到这一点,只需给命令指定sc.exe的完整路径,例如
“c:\ windows \ system32 \ sc.exe”create svnserver ....