如何在install script 中创建web 页面的快捷方式?
我的源码如下:
szCmdLine ="http://"+szServerIPDefault+":"+szServerPortDefault;
szPath=PROGRAMFILES ^"Internet Explorer"^"IEXPLORE.EXE"+" "+szCmdLine;
LongPathToQuote(szPath,TRUE);
MessageBox(szPath,SEVERE);
AddFolderIcon(FOLDER_DESKTOP,"中城协同办公系统",szPath,"",INSTALLDIR^"images"^"oa.ico",0,"",REPLACE);
MessageBox显示内容为:
c:\program files\Internet Explorer\IEXPLORE.EXE http://127.0.0.1:80
可安装完成后桌面快捷方式内的目标内容为
“c:\program files\Internet Explorer\IEXPLORE.EXE http:\127.0.0.1:80"
是何原因,小弟百思不得其解,请各位帮忙。