Lit des informations de registre dans un fichier spécifié et les copie sur la clé spécifiée
#include <WinAPIReg.au3>
_WinAPI_RegRestoreKey ( $hKey, $sFilePath )
$hKey |
Handle de la clé de registre ouverte. Ce handle est retourné par la fonction _WinAPI_RegCreateKey() ou _WinAPI_RegOpenKey(). Il peut également être l'une des clés prédéfinies suivantes: $HKEY_CLASSES_ROOT $HKEY_CURRENT_CONFIG $HKEY_CURRENT_USER $HKEY_LOCAL_MACHINE $HKEY_USERS |
$sFilePath | Le nom du fichier avec les informations de registre. Ce fichier est généralement créé en utilisant la fonction _WinAPI_RegSaveKey(). |
Succès: | Retourne 1. |
Échec: | Retourne 0 et définit @error <> 0, @extended peut contenir le code d'erreur du système. |
Le processus appelant doit le privilège $SE_RESTORE_NAME, sinon, la fonction échoue, et _WinAPI_GetLastError() retourne ERROR_PRIVILEGE_NOT_HELD (1314).
Si des sous-clés de la clé de registre spécifiée sont ouvertes, la fonction _WinAPI_RegRestoreKey() échoue.
_WinAPI_RegCreateKey, _WinAPI_RegOpenKey, _WinAPI_RegSaveKey
Consultez RegRestoreKey dans la librairie MSDN.
#include <APIRegConstants.au3> #include <MsgBoxConstants.au3> #include <WinAPIError.au3> #include <WinAPIHObj.au3> #include <WinAPIProc.au3> #include <WinAPIReg.au3> Local $aPrivileges[2] = [$SE_BACKUP_NAME, $SE_RESTORE_NAME] ; Active les privilèges "SeBackupPrivilege" et "SeRestorePrivilege" pour sauver et restaurer la ruche du registre Local $hToken = _WinAPI_OpenProcessToken(BitOR($TOKEN_ADJUST_PRIVILEGES, $TOKEN_QUERY)) Local $aAdjust _WinAPI_AdjustTokenPrivileges($hToken, $aPrivileges, $SE_PRIVILEGE_ENABLED, $aAdjust) If @error Or @extended Then MsgBox(BitOR($MB_ICONERROR, $MB_SYSTEMMODAL), 'Erreur', 'Vous n''avez pas les privilèges nécessaires.') Exit EndIf ; Enregistre "HKEY_CURRENT_USER\Software\AutoIt v3" dans reg.dat Local $hKey = _WinAPI_RegOpenKey($HKEY_CURRENT_USER, 'Software\AutoIt v3', $KEY_READ) If _WinAPI_RegSaveKey($hKey, @TempDir & '\reg.dat', 1) Then MsgBox(BitOR($MB_ICONINFORMATION, $MB_SYSTEMMODAL), '', '"HKEY_CURRENT_USER\Software\AutoIt v3" a été sauvegardé dans reg.dat.') Else MsgBox(BitOR($MB_ICONERROR, $MB_SYSTEMMODAL), '', _WinAPI_GetErrorMessage(@extended)) EndIf _WinAPI_RegCloseKey($hKey) ; Restaure "HKEY_CURRENT_USER\Software\AutoIt v3" en "HKEY_CURRENT_USER\Software\AutoIt v3 (Duplicate)" $hKey = _WinAPI_RegCreateKey($HKEY_CURRENT_USER, 'Software\AutoIt v3 (Duplicate)', $KEY_WRITE) If _WinAPI_RegRestoreKey($hKey, @TempDir & '\reg.dat') Then MsgBox(BitOR($MB_ICONINFORMATION, $MB_SYSTEMMODAL), '', '"HKEY_CURRENT_USER\Software\AutoIt v3" a été restauré en "HKEY_CURRENT_USER\Software\AutoIt v3 (Duplicate)".') Else MsgBox(BitOR($MB_ICONERROR, $MB_SYSTEMMODAL), '', _WinAPI_GetErrorMessage(@extended)) EndIf _WinAPI_RegCloseKey($hKey) ; Restaure les privilèges "SeBackupPrivilege" et "SeRestorePrivilege" par défaut _WinAPI_AdjustTokenPrivileges($hToken, $aAdjust, 0, $aAdjust) _WinAPI_CloseHandle($hToken) FileDelete(@TempDir & '\reg.dat')