我在批处理文件中编写以下命令
REGSVR32 E:\Documents and Settings\All Users\Application Data\xyz.dll
运行此命令后,我收到以下错误
LodLibrary(e:\Documents) failed specified module could not be found.
如何解决此问题?
答案 0 :(得分:59)
在包含空格的路径周围加上双引号:
REGSVR32 "E:\Documents and Settings\All Users\Application Data\xyz.dll"
答案 1 :(得分:1)
CD E:\ Documents and Settings \ All Users \ Application Data
E:\ Documents and Settings \ All Users \ Application Data> REGSVR32 xyz.dll
答案 2 :(得分:0)
start "" AcroRd32.exe /A "page=207" "C:\Users\abc\Desktop\abc xyz def\abc def xyz 2015.pdf"
你可以试试这个,我最后做了,它有效!
答案 3 :(得分:0)
我做了一个**
自动网络连接器
**使用批处理文件。
突然间有一个名为" Data for Analysation"的网络驱动器,是的,双引号是正确的!
看起来有点不同但有效:
net use y: "\\share.blabla.com\Folder\Subfolder\Data for Analysation" /USER:domain\username PW /PERSISTENT:YES
提示的Thx :)