亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > HTML > 正文

tweakomatic hta 下載

2020-01-25 19:40:46
字體:
來源:轉載
供稿:網友
代碼如下:

<html> 

<head> 

<title>Tweakomatic 1.0</title> 

<HTA:APPLICATION  
     ID="objTweakomatic"  
     APPLICATIONNAME="Tweakomatic" 
     SCROLL="no" 
     SINGLEINSTANCE="yes" 
     WINDOWSTATE="maximize" 

</head> 

<style> 
BODY 

   background-color: buttonface; 
   font-family: Helvetica; 
   font-size: 8pt; 
   margin-top: 10px; 
   margin-left: 10px; 
   margin-right: 10px; 
   margin-bottom: 10px; 



.button 

   font-family: Helvetica; 
   font-size: 8pt; 



textarea 

   font-family: arial; 
   font-size: 8pt; 
   margin-left: 3px; 


select 

   font-family: arial; 
   font-size: 8pt; 
   width: 450px; 
   margin-left: 0px; 


td 

   font-family: arial; 
   font-size: 10pt; 


</style> 



<SCRIPT LANGUAGE="VBScript"> 

    Const adOpenStatic = 3 
    Const adLockOptimistic = 3 
    Const adUseClient = 3 
    DefaultComputer = "." 
    MasterFile = "" 
    RetrievalFile = "" 
    StartHelp = "To begin, select a manageable component, and then select a category of tasks. When you do so, a set of tasks will be displayed in the Task Area. Click a task and two scripts will automatically be created: one for configuring information, the other for retrieving information." 
    Help2 = "Select a category from the list of categories. When you do so, a set of tasks will be displayed in the Task Area. Click a task and two scripts will automatically be created: one for configuring information, the other for retrieving information." 
    Help3 = "Click a task and two scripts will automatically be created: one for configuring information, the other for retrieving information." 


Sub Window_Onload 
    Set objConnection = CreateObject("ADODB.Connection")  
    objConnection.Open "Provider= Microsoft.Jet.OLEDB.4.0; Data Source=tweakomatic.mdb" 
    Set objRecordset = CreateObject("ADODB.Recordset") 
    objRecordset.CursorLocation = adUseClient 
    objRecordset.Open "SELECT DISTINCT Tweaks.Component FROM Tweaks ORDER BY Tweaks.Component" , objConnection,  adOpenStatic, adLockOptimistic 
    objRecordSet.MoveFirst 
    strHTML = "<select style='width: 460' onChange=""GetCategoryInfo()"" name=ComponentList>"  
    strHTML = strHTML & "<option value= " & chr(34) & chr(34) & ">" 
    Do Until objRecordSet.EOF 
        strHTML = strHTML & "<option value= " & chr(34) & _ 
            objRecordSet.Fields.Item("Component") & chr(34) & _ 
                ">" & objRecordSet.Fields.Item("Component") 
        objRecordSet.MoveNext 
    Loop 
    strHTML = strHTML & "</select>" 
    ComponentArea.InnerHTML = strHTML 
    run_button.disabled = True 
    run_button2.disabled = True 
    save_button.disabled = True 
    save_button2.disabled = True     
    change_button.disabled = True 
    Master_button.disabled = True 
    Master_button2.disabled = True 
    show_button.disabled = True 
    show_button2.disabled = True 
    HelpArea.InnerHTML = StartHelp 
End Sub 



Sub Window_OnUnload 
   On Error Resume Next 
   Set objFSO = CreateObject("Scripting.FileSystemObject") 
   objFSO.DeleteFile "temp_script.sm" 
   Set objFSO = Nothing 
   self.Close() 
End Sub 


Sub GetCategoryInfo() 
    On Error Resume Next 
    FilterValue = ComponentList.Value 
    Set objConnection = CreateObject("ADODB.Connection")  
    objConnection.Open "Provider= Microsoft.Jet.OLEDB.4.0; Data Source=tweakomatic.mdb" 
    Set objRecordset = CreateObject("ADODB.Recordset") 
    objRecordset.CursorLocation = adUseClient 
    objRecordset.Open "SELECT DISTINCT Tweaks.Category FROM Tweaks Where Component = '" & FilterValue & "'ORDER BY Tweaks.Category" , objConnection,  adOpenStatic, adLockOptimistic 
    objRecordSet.MoveFirst 
    CategoryArea.InnerHTML = "" 
    strHTML = "<select style='width: 460' onChange=""GetTaskInfo"" name=CategoryList>"  
    strHTML = strHTML & "<option value= " & chr(34) & chr(34) & ">" 
    Do Until objRecordSet.EOF 
        strHTML = strHTML & "<option value= " & chr(34) &_ 
            objRecordSet.Fields.Item("Category") & chr(34) &_ 
                ">" & objRecordSet.Fields.Item("Category") 
        objRecordSet.MoveNext 
    Loop 
    strHTML = strHTML & "</select>" 
    CategoryArea.InnerHTML = strHTML 
    TaskArea.InnerHTML = "<select size='15' name='D2'>" 
    HelpArea.InnerHTML= Help2 
    ScriptArea.Value = "" 
    RetrievalArea.Value = "" 
    run_button.disabled = True 
    run_button2.disabled = True 
    save_button.disabled = True 
    save_button2.disabled = True 
    change_button.disabled = True 
    Master_button.disabled = True 
    Master_button2.disabled = True 
    objRecordSet.Close 
    objConnection.Close 
End Sub 


Sub GetTaskInfo() 
    On Error Resume Next 
    FilterValue = ComponentList.Value 
    FilterValue2 = CategoryList.Value 
    Set objConnection = CreateObject("ADODB.Connection")  
    objConnection.Open "Provider= Microsoft.Jet.OLEDB.4.0; Data Source=tweakomatic.mdb" 
    Set objRecordset = CreateObject("ADODB.Recordset") 
    objRecordset.CursorLocation = adUseClient 
    objRecordset.Open "SELECT DISTINCT Tweaks.Task FROM Tweaks Where Component = '" & FilterValue & "' AND Category = '" & FilterValue2 & "'ORDER BY Tweaks.Task" , objConnection,  adOpenStatic, adLockOptimistic 
    objRecordSet.MoveFirst 
    TaskArea.InnerHTML = "" 
    strHTML = "<select size = '15' style='width: 460' onChange=""GetHelpText()"" name=TaskList>"  
    Do Until objRecordSet.EOF 
        strHTML = strHTML & "<option value= " & chr(34) &_ 
            objRecordSet.Fields.Item("Task") & chr(34) &_ 
                ">" & objRecordSet.Fields.Item("Task") 
        objRecordSet.MoveNext 
    Loop 
    strHTML = strHTML & "</select>" 
    TaskArea.InnerHTML = strHTML 
    HelpArea.InnerHTML= Help3 
    ScriptArea.Value = "" 
    RetrievalArea.Value = "" 
    run_button.disabled = True 
    run_button2.disabled = True 
    save_button.disabled = True 
    save_button2.disabled = True 
    change_button.disabled = True 
    Master_button.disabled = True 
    Master_button2.disabled = True 
    objRecordSet.Close 
    objConnection.Close 
End Sub 


Sub GetHelpText() 
    FilterValue = TaskList.Value 
    Set objConnection = CreateObject("ADODB.Connection")  
    objConnection.Open "Provider= Microsoft.Jet.OLEDB.4.0; Data Source=tweakomatic.mdb" 
    Set objRecordset = CreateObject("ADODB.Recordset") 
    objRecordset.CursorLocation = adUseClient 
    objRecordset.Open "SELECT * FROM Tweaks WHERE Task = '" & FilterValue & "' ORDER BY Tweaks.Task" , objConnection,  adOpenStatic, adLockOptimistic 
    objRecordSet.MoveFirst 
    Do Until objRecordSet.EOF 
        strHTML = objRecordSet.Fields.Item("Help")  
        strText2 = "On Error Resume Next" & vbCrLf 
        strLocation  = objRecordSet.Fields.Item("RegistryLocation")  
        If StrLocation = "HKEY_CURRENT_USER" Then 
            strText = "HKEY_CURRENT_USER = &H80000001" & VbCrLf  
            strText2 = strText2 & "HKEY_CURRENT_USER = &H80000001" & VbCrLf 

            strText = strText & "strComputer = " & chr(34) & DefaultComputer & chr(34) & VbCrLf 
            strText2 = strText2 & "strComputer = " & chr(34) & DefaultComputer & chr(34) & VbCrLf 

            strText = strText & "Set objReg = GetObject(" & chr(34) & "winmgmts://" & chr(34) 
            strText2 = strText2 & "Set objReg = GetObject(" & chr(34) & "winmgmts://" & chr(34) 

            strText = strText & " & strComputer & " & chr(34) & "/root/default:StdRegProv" & chr(34) & ")" & VbCrLf 
            strText2 = strText2 & " & strComputer & " & chr(34) & "/root/default:StdRegProv" & chr(34) & ")" & VbCrLf 

            strText = strText & "strKeyPath = " & chr(34) & objRecordSet.Fields.Item("RegKey") & chr(34) & VbCrLf  
            strText2 = strtext2 & "strKeyPath = " & chr(34) & objRecordSet.Fields.Item("RegKey") & chr(34) & VbCrLf  

            strText = strText & "objReg.CreateKey " & strLocation & ", strKeyPath" & VbCrLf 

            strText = strText & "ValueName = " & chr(34) & objRecordSet.Fields.Item("RegValue") & chr(34) & VbCrLf 
            strText2 = strText2 & "ValueName = " & chr(34) & objRecordSet.Fields.Item("RegValue") & chr(34) & VbCrLf 

        Else 
            strText = strText & "HKEY_LOCAL_MACHINE = &H80000002" & vbCrLf 
            strText2 = strText2 & "HKEY_LOCAL_MACHINE = &H80000002" & vbCrLf 

            strText = strText & "strComputer = " & chr(34) & DefaultComputer & chr(34) & VbCrLf 
            strText2 = strText2 & "strComputer = " & chr(34) & DefaultComputer & chr(34) & VbCrLf 

            strText = strText & "Set objReg = GetObject(" & chr(34) & "winmgmts://" & chr(34) 
            strText2 = strText2 & "Set objReg = GetObject(" & chr(34) & "winmgmts://" & chr(34) 

            strText = strText & " & strComputer & " & chr(34) & "/root/default:StdRegProv" & chr(34) & ")" & VbCrLf 
            strText2 = strText2 & " & strComputer & " & chr(34) & "/root/default:StdRegProv" & chr(34) & ")" & VbCrLf 

            strText = strText & "strKeyPath = " & chr(34) & objRecordSet.Fields.Item("RegKey") & chr(34) & VbCrLf  
            strText2 = strText2 & "strKeyPath = " & chr(34) & objRecordSet.Fields.Item("RegKey") & chr(34) & VbCrLf 

            strText = strText & "objReg.CreateKey " & strLocation & ", strKeyPath" & VbCrLf 

            strText = strText & "ValueName = " & chr(34) & objRecordSet.Fields.Item("RegValue") & chr(34) & VbCrLf 
            strText2 = strText2 & "ValueName = " & chr(34) & objRecordSet.Fields.Item("RegValue") & chr(34) & VbCrLf 

        End If 

        strValueType = objRecordSet.Fields.Item("DataType") 

        If strValueType = "REG_DWORD" Then 
            strText = strText & "dwValue = " & objRecordSet.Fields.Item("DefaultValue") & VbCrLf 
            strText = strText & "objReg.SetDWORDValue HKEY_CURRENT_USER, strKeyPath, ValueName, dwValue" & VbCrLf 

            strText2 = strText2 & "objReg.GetDWORDValue HKEY_CURRENT_USER, strKeyPath, ValueName, dwValue" & VbCrLf 
            strEcho = "    Wscript.Echo " & chr(34) & FilterValue & ": " & chr(34) & ", dwValue" & vbCrLf 

        Else 
            strText = strText & "strValue = " & chr(34) & objRecordSet.Fields.Item("DefaultValue") & chr(34) & VbCrLf 
            strText = strText & "objReg.SetStringValue HKEY_CURRENT_USER, strKeyPath, ValueName, strValue" & VbCrLf 

            strText2 = strText2 & "    objReg.GetStringValue HKEY_CURRENT_USER, strKeyPath, ValueName, strValue" & VbCrLf 
            strEcho = "    Wscript.Echo " & chr(34) & FilterValue & ": " & chr(34) & ", strValue" & vbCrLf 

        End If 



        strText2 = strText2 & "If IsNull(strValue) Then" & VbCrLf 
        strText2 = strtext2 & "    Wscript.Echo " & chr(34) &  FilterValue & ":  The value is either Null or could not be found in the registry." & chr(34) & VbCrLf 
        strText2 = strText2 & "Else"  & vbCrLf     
        strText2 = strText2 & strEcho 

        strText2 = strtext2 & "End If"  

        objRecordSet.MoveNext 
    Loop 
    HelpArea.InnerHTML = strHTML 
    ScriptArea.Value = strText 
    RetrievalArea.Value = strText2 
    run_button.disabled = False 
    run_button2.disabled = False 
    save_button.disabled = False 
    save_button2.disabled = False 
    change_button.disabled = False 
    Master_button.disabled = False 
    Master_button2.disabled = False 
End Sub 


Sub RunConfigurationScript() 
   Set objFS = CreateObject("Scripting.FileSystemObject") 
   strTmpName = "temp_script.sm" 
   Set objScript = objFS.CreateTextFile(strTmpName) 
   objScript.Write ScriptArea.Value 
   objScript.Close 
   Set objShell = CreateObject("WScript.Shell") 
   strCmdLine = "wscript.exe //E:VBScript " & strTmpName 
   objShell.Run strCmdLine 
   strAction = "Configured value for " & TaskList.Value  
   ActionArea.InnerHTML = strAction 
End Sub 


Sub RunRetrievalScript() 
   Set objFS = CreateObject("Scripting.FileSystemObject") 
   strTmpName = "temp_script.sm" 
   Set objScript = objFS.CreateTextFile(strTmpName) 
   objScript.Write RetrievalArea.Value 
   objScript.Close 
   Set objShell = CreateObject("WScript.Shell") 
   strCmdLine = "wscript.exe //E:VBScript " & strTmpName 
   objShell.Run strCmdLine 
   strAction = "Retrieved value for " & TaskList.Value  
   ActionArea.InnerHTML = strAction 
End Sub 


Sub SaveConfigurationScript() 
   Set objFSO = CreateObject("Scripting.FileSystemObject") 
   strSaveFileName = InputBox("Please enter the complete path where you want to save your script (for example, C:/Scripts/MyScript.vbs).") 
   If strSaveFileName = "" Then 
      Exit Sub 
   End If 

   Set objFile = objFSO.CreateTextFile(strSaveFileName) 
   objFile.WriteLine ScriptArea.Value 
   objFile.Close 
   strAction = "Saved " & TaskList.Value & " to " & strSaveFileName 
   ActionArea.InnerHTML = strAction 
End Sub 


Sub SaveRetrievalScript() 
   Set objFSO = CreateObject("Scripting.FileSystemObject") 
   strSaveFileName = InputBox("Please enter the complete path where you want to save your script (for example, C:/Scripts/MyScript.vbs).") 
   If strSaveFileName = "" Then 
      Exit Sub 
   End If 
   Set objFile = objFSO.CreateTextFile(strSaveFileName) 
   objFile.WriteLine RetrievalArea.Value 
   objFile.Close 
   strAction = "Saved " & TaskList.Value & " to " & strSaveFileName 
   ActionArea.InnerHTML = strAction 
End Sub 


Sub ChangeValue() 
    strCurrent = ScriptArea.Value 
    NewValue = InputBox("Please enter the new value: ") 
    If NewValue = "" Then 
        Exit Sub 
    End If 
    ScriptType = Split(strCurrent, vbCrLf, -1) 
    If Left(ScriptType(6),2) = "dw" Then 
        If Not IsNumeric(NewValue) Then 
            Msgbox "You must enter a number when configuring DWORD registry values." 
            Exit Sub 
        End If 
        ScriptType(6) = "dwValue = " & NewValue 
    Else 
        ScriptType(6) = "strValue = " & chr(34) & NewValue & chr(34) 
    End If 
    strReplace = Join(ScriptType, vbcrlf) 
    ScriptArea.Value = strReplace 
    strAction = "Changed value for " & TaskList.Value & " to " & NewValue 
    ActionArea.InnerHTML = strAction 
End Sub 


Sub ChangeMasterFile() 
    If MasterFile = "" Then 
        strCurrentFile = "Currently you do not have an master script. " 
    Else 
        strCurrentFile = "Your current master script is " & MasterFile & ". " 
    End If 
    strMessage = strCurrentFile & "Please enter the path to the new master script: " 
    NewValue = InputBox(strMessage) 
    If NewValue = "" Then 
        Exit Sub 
    End If 
    Set objFSO = CreateObject("Scripting.FileSystemObject") 
    If objFSO.FileExists(NewValue) Then 
        MasterFile = NewValue 
        show_button.disabled = False 
    Else 
        CreateFile = Msgbox("This file does not exist. Would you like to create it",4) 
        If CreateFile = vbYes Then 
            objFSO.CreateTextFile(NewValue) 
            MasterFile = NewValue 
            show_button.disabled = False 
        End If 
    End If 
    strAction = "Changed name of master script to " & NewValue 
    ActionArea.InnerHTML = strAction 
End Sub 


Sub ChangeRetrievalFile() 
    If RetrievalFile = "" Then 
        strCurrentFile = "Currently you do not have a retrieval master script. " 
    Else 
        strCurrentFile = "You current retrieval master script is " & RetrievalFile & ". " 
    End If 
    strMessage = strCurrentFile & "Please enter the path to the new retrieval master script: " 
    NewValue = InputBox(strMessage) 
    If NewValue = "" Then 
        Exit Sub 
    End If 
    Set objFSO = CreateObject("Scripting.FileSystemObject") 
    If objFSO.FileExists(NewValue) Then 
        RetrievalFile  = NewValue 
        show_button2.disabled = False 
    Else 
        CreateFile = Msgbox("This file does not exist. Would you like to create it",4) 
        If CreateFile = vbYes Then 
            objFSO.CreateTextFile(NewValue) 
            RetrievalFile  = NewValue 
            show_button2.disabled = False 
        End If 
    End If 
    strAction = "Changed name of retrieval master script to " & NewValue 
    ActionArea.InnerHTML = strAction 
End Sub 



Sub SetComputerName() 
    strMessage = "Curently your scripts are using " & DefaultComputer & " as the default computer name. Please enter the new computer name. To run the script against the local computer, simply type a period (.) for the computer name: " 
    NewValue = InputBox(strMessage) 
    If NewValue = "" Then 
        Exit Sub 
    End If 
    DefaultComputer = NewValue 
    strAction = "Changed default computer name to " & NewValue 
    ActionArea.InnerHTML = strAction 
End Sub 


Sub MasterConfigurationScript() 
    Set objFSO = CreateObject("Scripting.FileSystemObject") 
    If MasterFile = "" Then 
        strCurrentFile = "Currently you do not have a master script. " 
        strMessage = strCurrentFile & "Please enter the path to the new master script: " 
        NewValue = InputBox(strMessage) 
        If NewValue = "" Then 
            Exit Sub 
        End If 
            If objFSO.FileExists(NewValue) Then 
            MasterFile  = NewValue 
            show_button.disabled = False 
        Else 
            CreateFile = Msgbox("This file does not exist. Would you like to create it",4) 
            If CreateFile = vbYes Then 
                objFSO.CreateTextFile(NewValue) 
                MasterFile  = NewValue 
                show_button.disabled = False 
            Else 
                Exit Sub 
            End If 
        End If 
    End If 
    Set objFile = objFSO.OpenTextFile(MasterFile, 8) 
    objFile.WriteLine Chr(39) & "   " & TaskList.Value 
    objFile.WriteLine ScriptArea.Value 
    objFile.WriteLine vbCrLf & vbCrLf 
    objFile.Close 
    strAction = "Appended " & TaskList.Value & " to " & MasterFile 
    ActionArea.InnerHTML = strAction 
End Sub 


Sub MasterRetrievalScript() 
    Set objFSO = CreateObject("Scripting.FileSystemObject") 
    If RetrievalFile = "" Then 
        strCurrentFile = "Currently you do not have a retrieval master script. " 
        strMessage = strCurrentFile & "Please enter the path to the new master script: " 
        NewValue = InputBox(strMessage) 
        If NewValue = "" Then 
            Exit Sub 
        End If 
            If objFSO.FileExists(NewValue) Then 
            RetrievalFile  = NewValue 
            show_button2.disabled = False 
        Else 
            CreateFile = Msgbox("This file does not exist. Would you like to create it",4) 
            If CreateFile = vbYes Then 
                objFSO.CreateTextFile(NewValue) 
                RetrievalFile  = NewValue 
                show_button2.disabled = False 
            Else 
                Exit Sub 
            End If 
        End If 
    End If 
    Set objFile = objFSO.OpenTextFile(RetrievalFile, 8) 
    objFile.WriteLine Chr(39) & "   " & TaskList.Value 
    objFile.WriteLine RetrievalArea.Value 
    objFile.WriteLine vbCrLf & vbCrLf 
    objFile.Close 
    strAction = "Appended " & TaskList.Value & " to " & RetrievalFile 
    ActionArea.InnerHTML = strAction 
End Sub 


Sub ShowConfigurationScript() 
   Set objShell = CreateObject("WScript.Shell") 
   strCmdLine = "notepad.exe " & MasterFile 
   objShell.Run strCmdLine 
   strAction = "Opened file " & MasterFile & " in Notepad" 
   ActionArea.InnerHTML = strAction 
End Sub 



Sub ShowRetrievalScript() 
   Set objShell = CreateObject("WScript.Shell") 
   strCmdLine = "notepad.exe " & RetrievalFile 
   objShell.Run strCmdLine 
   strAction = "Opened file " & RetrievalFile & " in Notepad" 
   ActionArea.InnerHTML = strAction 
End Sub 


</SCRIPT> 



<body> 

 <BR> 
<table border="0" cellspacing="1" width="100%" id="AutoNumber1"> 
  <tr> 
    <td width = "50%"><b>  Select a manageable component from this list</b> 
    </td> 
    <td width = "50%"><b>  Select a task category from this list</b> 
    </td> 
  </tr> 
  <tr> 
    <td width="50%"> 
      <span id="ComponentArea"></span> 
    </td> 
    <td width="50%"><span id="CategoryArea"><select size="1" name="D1"></select></span></td> 
  </tr> 
</table> 


 <BR> 
<table border="0" cellspacing="1" width="100%" id="AutoNumber2"> 
  <tr> 
    <td width = "50%"><b>  Select an individual task from this list</b> 
    </td> 
    <td width = "50%"><b>Task description</b> 
    </td> 
  </tr> 
  <tr> 
    <td width="50%"><span id="TaskArea"><select size="15" name="D2"></span></td> 
    <td width="50%" valign="top"><font color="navy"><span id="HelpArea"></span></font></td> 
  </tr> 
</table> 




 <BR> 
<table border="0" cellspacing="1" width="100%" id="AutoNumber3"> 
  <tr> 
    <td width = "50%"><b>  Script for carrying out this task</b> 
    </td> 
    <td width = "50%"><b>  Script for retrieving the current task setting</b> 
    </td> 
  </tr> 
  <tr> 
    <td width="50%"> 
  <textarea rows="12" name="ScriptArea" cols="90"></textarea></td> 

    <td width="50%"> 
  <textarea rows="12" name="RetrievalArea" cols="90"></textarea></td> 

  </tr> 
</table> 

 <BR> 
<table border="0" cellspacing="1" width="100%" id="AutoNumber2"> 
  <tr> 
    <td width="50%"><input id=runbutton  class="button" type="button" value="Run Script" name="run_button"  onClick="RunConfigurationScript()"><input id=runbutton  class="button" type="button" value="Save Script"  name="save_button"  onClick="SaveConfigurationScript()"><input id=runbutton  class="button" type="button" value="Change Value"  name="change_button"  onClick="ChangeValue()"><input id=runbutton  class="button" type="button" value="Master Script" name="Master_button"  onClick="MasterConfigurationScript()"><input id=runbutton  class="button" type="button" value="ShowScript" name="show_button"  onClick="ShowConfigurationScript()"></td> 

    <td width="50%"><input id=runbutton  class="button" type="button" value="Run Script"  name="run_button2"  onClick="RunRetrievalScript()"><input id=runbutton  class="button" type="button" value="Save Script"  name="save_button2"  onClick="SaveRetrievalScript()"><input id=runbutton  class="button" type="button" value="Master Script" name="Master_button2" onClick="MasterRetrievalScript()"><input id=runbutton  class="button" type="button" value="ShowScript" name="show_button2"  onClick="ShowRetrievalScript()"></td> 
  </tr> 
</table> 





 <BR> 

<table border="0" cellspacing="1" width="100%" id="AutoNumber2"> 
  <tr> 
    <td width="100%"> <br><b>Tweakomatic Options</b>      <input id=runbutton  class="button" type="button" value="Set Computer Name" name="computer_name"  onClick="SetComputerName()"><input id=runbutton  class="button" type="button" value="Set Configuration Master Script" name="set_Master_file"  onClick="ChangeMasterFile()"><input id=runbutton  class="button" type="button" value="Set Retrieval Master Script" name="set_retrieval_button"  onClick="ChangeRetrievalFile()"></td> 
  </tr> 
  <tr> 
    <td width="100%"> <br><b>Last Action: </b><span id="ActionArea"></span></td> 
  </tr> 

</table> 

</body> 

</html>
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
国产成人免费av| 国产美女主播一区| 欧美一级淫片播放口| 亚洲第一男人天堂| 久久精品国产91精品亚洲| 一本久久综合亚洲鲁鲁| 日韩在线中文字幕| 久久久精品中文字幕| 久久国产加勒比精品无码| 亚洲午夜未满十八勿入免费观看全集| 性色av香蕉一区二区| 美女视频久久黄| 久久久久久久久久久人体| 国产在线日韩在线| 欧美日韩亚洲精品一区二区三区| 国产精品欧美在线| xvideos亚洲| 日本精品va在线观看| 国产精品丝袜一区二区三区| 美女啪啪无遮挡免费久久网站| 久久精品国产免费观看| 91久久精品国产91久久性色| 另类视频在线观看| 国产日韩中文在线| 欧美一级淫片aaaaaaa视频| 欧美日韩国产二区| 久久久久北条麻妃免费看| 中文字幕精品视频| 国产亚洲精品久久久久动| 精品中文字幕视频| 精品亚洲夜色av98在线观看| yellow中文字幕久久| 中文字幕日韩视频| 成人黄色片在线| 欧美二区在线播放| 日韩av资源在线播放| 欧美精品在线观看91| 91色琪琪电影亚洲精品久久| 国产精品综合网站| 久久久精品免费视频| 亚洲va电影大全| 亚洲欧美国产一区二区三区| 久久精品久久久久久国产 免费| 国产成人一区二区在线| 午夜精品久久17c| 亚洲成人免费网站| 日韩精品视频中文在线观看| 日韩国产在线播放| 国产精品免费网站| 国产精品99久久久久久久久久久久| 国产成人aa精品一区在线播放| 精品亚洲一区二区三区在线播放| 自拍偷拍亚洲欧美| 国产精品视频精品视频| 2018中文字幕一区二区三区| 亚洲aa中文字幕| 日韩国产高清污视频在线观看| 91理论片午午论夜理片久久| 成人精品在线视频| 全亚洲最色的网站在线观看| 精品成人69xx.xyz| 日韩美女在线观看一区| 色老头一区二区三区| 国产亚洲成av人片在线观看桃| 久久福利视频网| 91国产一区在线| 97精品欧美一区二区三区| 韩国三级日本三级少妇99| 亚洲品质视频自拍网| 在线丨暗呦小u女国产精品| 亚洲欧洲第一视频| 亚洲人成电影网站| 57pao成人永久免费视频| 欧美久久精品一级黑人c片| 91精品中文在线| 国产精品久久久久国产a级| 欧美成人午夜激情在线| 日韩在线激情视频| 亚洲品质视频自拍网| 亚洲欧美国产一区二区三区| 欧美日韩激情视频8区| 久久亚洲综合国产精品99麻豆精品福利| 亚洲午夜未满十八勿入免费观看全集| 国产欧美日韩精品丝袜高跟鞋| 91高清视频在线免费观看| 成人做爰www免费看视频网站| 久久久久久69| 亚洲一区二区三区乱码aⅴ蜜桃女| 中文字幕一区二区三区电影| 久久精品2019中文字幕| 中文字幕免费精品一区| 日韩精品视频免费在线观看| 久久色精品视频| 91亚洲人电影| 亚洲国产古装精品网站| 欧美在线免费看| 懂色aⅴ精品一区二区三区蜜月| 日韩亚洲综合在线| 97精品伊人久久久大香线蕉| 日韩在线观看免费高清完整版| 国产精品一区二区女厕厕| 久久精品在线视频| 精品国产一区二区三区四区在线观看| 亚洲欧美在线一区| 欧美怡红院视频一区二区三区| 国产亚洲精品久久| 国产精品久久久久久久一区探花| 亚洲偷熟乱区亚洲香蕉av| 国产一区二区三区免费视频| 欧美国产第一页| 亚洲欧美在线一区| 久久久精品免费| 日韩国产欧美精品一区二区三区| 91精品久久久久久久| 久久综合免费视频影院| 久久久久久久一区二区| 国产精品国产三级国产aⅴ9色| 欧美片一区二区三区| 久久精品久久久久| 成人写真福利网| 日韩精品视频免费| 久久久久久久激情视频| 精品久久久国产| 亚洲老板91色精品久久| 国产一区二区久久精品| 亚洲第一视频网站| 亚洲第一视频在线观看| 91精品免费视频| 日韩高清不卡av| 成人激情在线观看| 亚洲天堂av网| 亚洲欧美激情精品一区二区| 亚洲精品国产精品乱码不99按摩| 97在线精品国自产拍中文| 久久97精品久久久久久久不卡| 97超级碰碰人国产在线观看| 中文字幕不卡av| 欧美色xxxx| 欧美成人免费全部观看天天性色| 国产在线观看精品一区二区三区| 92国产精品久久久久首页| 国产精品高潮呻吟久久av野狼| 日韩欧美中文免费| 性色av一区二区三区免费| 日韩电影中文字幕一区| 91精品国产成人| 欧美国产在线电影| 国产欧美精品va在线观看| 欧美三级欧美成人高清www| 亚洲欧美日韩一区二区在线| 亚洲va欧美va在线观看| 日韩乱码在线视频| 亚洲国产欧美久久| 一区二区三区国产在线观看| 欧美性69xxxx肥| 日韩欧美黄色动漫| 亚洲毛片一区二区| 亚洲欧洲在线免费| 久久夜色精品国产| 亚洲最大成人免费视频| 91精品国产99| 国产精品视频在线观看| 午夜精品一区二区三区在线| 中文字幕日韩欧美|