使用批处理文件打开网站时出现%20到0的问题

时间:2014-05-23 01:48:22

标签: internet-explorer batch-file web

我目前正在编写批处理文件以在IE中打开网站。 在我写的批处理文件中:

start https://mysite.net/personal/me/Shared%20Documents/1.docx

然而,当我运行批处理文件时,IE打开了网站:

https://mysite.net/personal/me/Shared0Documents/1.docx

请注意,从%20更改为0.因此,IE显示404错误。

如何在不修改IE的情况下让IE打开确切的链接?

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

你可以创建一个函数并使用%%%%2调用它,如下所示:

@echo off

call :test %%%%1 %%%%2 %%%%3 %%%%4 %%%%5 %%%%6 %%%%7 %%%%8 %%%%9
goto end

:test
start https://mysite.net/personal/me/Shared%20Documents/1.docx

:end

或者如果你想修改链接,你可以这样做:

start https://mysite.net/personal/me/Shared%%20Documents/1.docx