如何在VBS中执行外部程序进行解压
  RAR的参数是如何的;
  如;
    覆盖原来文件
    解压路近

解决方案 »

  1.   

    shell "winrar x -r -y c:\a"
      

  2.   

    shell "winrar x -r -y c:\a 文件名"
      

  3.   

    shell函数,确切的应该是这样的:
       shell "winrar可执行文件的路径"& "x -r -y" & "解压缩路径"
      

  4.   

    在VBS中使用SHELL
    报错误,“
    类型不匹配"
      

  5.   

    回复人: luoluonet(螺螺) ( ) 信誉:100  
    对象不支持属性或方法
    wsh.shell
      

  6.   

    set wshshell=wscript.createobject("wscript.shell")
    '调用计算器程序
    wshshell.run "calc"