サードパーティのツールを使用せずに、インストールされアクティブ化されたインスタンスのAdobe Acrobat Professionalのキーを見つける

サードパーティのツールを使用せずに、インストールされアクティブ化されたインスタンスのAdobe Acrobat Professionalのキーを見つける

以前に購入し、インストールしてアクティブ化した Acrobat Professional のコピーが複数あります。ただし、シリアル番号、Adobe オンライン アカウント ID、またはこれらに関する詳細が記載された文書はありません。

アップグレードされた Windows 7 PC にライセンスを移動する必要があります (現在使用している PC は Windows XP ですが、廃止される予定です)。

要件は、動くライセンスをアップグレードしたワークステーションに配布します。同じライセンスの複数のインスタンスを同時に実行しないでください。

注: ライセンスに関する情報があまりないため、Adobe サポートはあまり役に立ちません。

シリアル番号の抽出にサードパーティのツールを使用しないでください。

アクティベーションを中断せずにライセンスを転送できるように、レジストリまたはその他の場所からこの情報を取得する方法はありますか? ある場合、どのようにすればよいですか?

答え1

これは私がGoogleで数回検索した後に見つけたものです

ステップ 1: Adob​​e キー (暗号化済み) を見つける

以下のいずれかの方法を使用してください。

M1. SQLite DB の使用: アクティベーション情報は以下の場所に保存されます。

C:\Program Files (x86)\Common Files\Adobe\Adobe PCD\cache\cache.db

これはSQLite DBで、SQLite データベース ブラウザSQLiteデータベースブラウザを使用して、キーを探す必要がありますSN

M2. レジストリの使用:

32ビットOSの場合:

HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Adobe Acrobat\10.0\Registration\SERIAL

64ビットOSの場合:

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Adobe\Adobe Acrobat\10.0\Registration\SERIAL

10.0 を、使用している Adob​​e のバージョンに置き換えます

ステップ2: キーを復号化する

以下のいずれかの方法を使用してください。

M1: シリアルを復号化するJavaScriptコード:

function DecodeAdobeKey(sAdobeEncryptedKey)
{
    var regex=/[0-9]{24}/g;
    if(!regex.test(sAdobeEncryptedKey))
    {
        return 'corrupted serial';
    }
    var AdobeCipher = new Array(),index=0,sAdobeDecryptedKey='';
    AdobeCipher[index++] = '0000000001';
    AdobeCipher[index++] = '5038647192';
    AdobeCipher[index++] = '1456053789';
    AdobeCipher[index++] = '2604371895';
    AdobeCipher[index++] = '4753896210';
    AdobeCipher[index++] = '8145962073';
    AdobeCipher[index++] = '0319728564';
    AdobeCipher[index++] = '7901235846';
    AdobeCipher[index++] = '7901235846';
    AdobeCipher[index++] = '0319728564';
    AdobeCipher[index++] = '8145962073';
    AdobeCipher[index++] = '4753896210';
    AdobeCipher[index++] = '2604371895';
    AdobeCipher[index++] = '1426053789';
    AdobeCipher[index++] = '5038647192';
    AdobeCipher[index++] = '3267408951';
    AdobeCipher[index++] = '5038647192';
    AdobeCipher[index++] = '2604371895';
    AdobeCipher[index++] = '8145962073';
    AdobeCipher[index++] = '7901235846';
    AdobeCipher[index++] = '3267408951';
    AdobeCipher[index++] = '1426053789';
    AdobeCipher[index++] = '4753896210';
    AdobeCipher[index++] = '0319728564';
   
    //decode the adobe key
   for(var i=0;i<24;i++)
   {
       if (i%4 == 0 && i>0)
           sAdobeDecryptedKey += '-';
       sAdobeDecryptedKey += AdobeCipher[i].charAt( sAdobeEncryptedKey.charAt(i) );
   }
   return sAdobeDecryptedKey;
}

M2: シリアルを復号化する PowerShell コード

function ConvertFrom-EncryptedAdobeKey {
    [CmdletBinding()]
    Param(
        [Parameter(Position=0, Mandatory=$true)] 
        [string]
        [ValidateLength(24,24)]
        $EncryptedKey
    )

    $AdobeCipher = "0000000001", "5038647192", "1456053789", "2604371895",
        "4753896210", "8145962073", "0319728564", "7901235846",
        "7901235846", "0319728564", "8145962073", "4753896210",
        "2604371895", "1426053789", "5038647192", "3267408951",
        "5038647192", "2604371895", "8145962073", "7901235846",
        "3267408951", "1426053789", "4753896210", "0319728564"
       
    $counter = 0

    $DecryptedKey = ""

    While ($counter -ne 24) {
        $DecryptedKey += $AdobeCipher[$counter].substring($EncryptedKey.SubString($counter, 1), 1)
        $counter ++
    }

    $DecryptedKey
}

M3: シリアルを復号化する VB コード:

Function DecodeAdobeKey(strAdobeEncryptedKey)
Dim AdobeCipher(24)
Dim strAdobeDecryptedKey, i, j
 
AdobeCipher(0) = "0000000001"
AdobeCipher(1) = "5038647192"
AdobeCipher(2) = "1456053789"
AdobeCipher(3) = "2604371895"
AdobeCipher(4) = "4753896210"
AdobeCipher(5) = "8145962073"
AdobeCipher(6) = "0319728564"
AdobeCipher(7) = "7901235846"
AdobeCipher(8) = "7901235846"
AdobeCipher(9) = "0319728564"
AdobeCipher(10) = "8145962073"
AdobeCipher(11) = "4753896210"
AdobeCipher(12) = "2604371895"
AdobeCipher(13) = "1426053789"
AdobeCipher(14) = "5038647192"
AdobeCipher(15) = "3267408951"
AdobeCipher(16) = "5038647192"
AdobeCipher(17) = "2604371895"
AdobeCipher(18) = "8145962073"
AdobeCipher(19) = "7901235846"
AdobeCipher(20) = "3267408951"
AdobeCipher(21) = "1426053789"
AdobeCipher(22) = "4753896210"
AdobeCipher(23) = "0319728564"
 
'decode the adobe key
for i = 0 To 23
if (i Mod 4 = 0 And i > 0) Then
'every 4 characters add a "-"
strAdobeDecryptedKey = strAdobeDecryptedKey & "-"
end if
 
'Grab the next number from the adobe encrypted key. Add one to 'i' because it isn't base 0
j = mid (strAdobeEncryptedKey, i + 1, 1)
 
'Add one to J because it isn't base 0 and grab that numbers position in the cipher
k = mid (AdobeCipher(i), j + 1, 1)
strAdobeDecryptedKey = strAdobeDecryptedKey & k
 
Next
DecodeAdobeKey = strAdobeDecryptedKey
End Function

M4: シリアルを復号化するJavaコード:

public static String decrypt(String encryptedKey) {
    String[] AdobeCipher = { "0000000001", "5038647192", "1456053789", "2604371895", "4753896210", "8145962073",
            "0319728564", "7901235846", "7901235846", "0319728564", "8145962073", "4753896210", "2604371895",
            "1426053789", "5038647192", "3267408951", "5038647192", "2604371895", "8145962073", "7901235846",
            "3267408951", "1426053789", "4753896210", "0319728564" };

    String sAdobeDecryptedKey = "";
    for (int i = 0; i < 24; i++) {
        if (i % 4 == 0 && i > 0)
            sAdobeDecryptedKey += '-';
        String ndx=encryptedKey.substring(i, i+1);
        int tmp=Integer.parseInt(ndx);
        sAdobeDecryptedKey += AdobeCipher[i].substring(tmp, tmp+1);
    }
    return sAdobeDecryptedKey;
}

ステップ3: 同じシリアル番号のソフトウェアをダウンロードしてインストールする

以下のリンクを使用して、公式 Adob​​e リポジトリから以前にインストールした Adob​​e ソフトウェアと同じバージョンをダウンロードします。

アドビ 10、11

アドビ8、9

アドビ 7- Adob​​e ProfessionalおよびStandardバージョン7のダウンロードシリアルキーはこちらから入手可能-ダウンロードの一部として提供されるシリアル番号は、CS2 または Acrobat 7 を正当に購入し、これらの製品を現在も使用し続ける必要のあるお客様のみが使用できます。(ダウンロードにはどれでもサインインするための Adob​​e ID - 購入時に使用した Adob​​e ID だけではありません)

参考文献:

JavaScript コード

PowerShell コード

VB コード

Adobe の cache.db に関するすべて (まあ、全部ではありませんが)

Adobe Acrobat のシリアル番号を見つける

関連情報