Internet选项->安全->自定义级别->ActiveX控件 启用

解决方案 »

  1.   

    不过要小心,你可以用,别人的脚本也可以用的。
    至于别人用FileSystemObject来干什么 .... 天知道?
      

  2.   

    change the registry, see
    http://groups.google.com/groups?selm=03b201c0a514%248a9651d0%2419ef2ecf%40tkmsftngxa01&oe=UTF-8&output=gplaincopy the following code into change.vbs and run it in a DOS-Prompt:
    cscript change.vbsset shell = createobject("wscript.shell")
    '=====
    'Changing this under the HKLM makes it effective for all users
    'at next logon...
    '=====
    HKLM MyComputer key =  "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion"  
     &"\Internet Settings\Zones\0\"
    valuename = "Flags"
    shell.RegWrite HKLM MyComputer key & valuename, 1, "REG DWORD"
    '=====
    'Changing this under the HKCU makes it effective for this user
    'immediately and at every logon...
    '=====
    HKCU MyComputer key =  
      "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion"  
     &"\Internet Settings\Zones\0\"
    valuename = "Flags"
    shell.RegWrite HKCU MyComputer key & valuename, 1, "REG DWORD"msgbox "The 'My Computer' zone security " & vbcrlf  
         & "is now visible on the IE Security tab..."wscript.quit
      

  3.   

    then do as qiushuiwuhen said, but in "My Computer" zone
      

  4.   

    or change the following registry entries:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\InternetSettings\Zones\0
    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\InternetSettings\Zones\0changing the value for key "1201" to 0