DeleteKey

DeleteKey 是用於刪除登錄機碼的函數。

語法

DeleteKey(路徑)

結果

0 – 刪除成功,故障時的錯誤代碼。

範例

該指令碼將刪除登錄機碼:

Function Main

Dim Ro As Object

Dim result As Integer

Set Ro = Registry.Connect("127.0.0.1")

result = ro.DeleteKey("SOFTWARE\Microsoft\testkey")

If result = 0 Then

Echo "已成功刪除值"

Else

Echo "無法刪除值,錯誤碼: " & result

End If

End Function