<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article &amp;quot;Personal edition key file is missing or corrupt&amp;quot; when opening a QlikView document created in QlikView Desktop 11.20 in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/quot-Personal-edition-key-file-is-missing-or-corrupt-quot-when/ta-p/1712082</link>
    <description>&lt;P&gt;&lt;BR /&gt;When trying to open a dashboard in the desktop client user is receiving the following error message: The personal edition key file is missing or corrupt.&lt;BR /&gt;The document had been created in QlikView 11.20 and not saved in a 12.xx version of the client.&lt;BR /&gt;The desktop client is &lt;STRONG&gt;licensed&lt;/STRONG&gt;, and not an actual personal edition.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Environment:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;LI-PRODUCT title="QlikView" id="qlikView"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;Desktop 12.30 or higher&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Personal edition key file is missing or corrupt.png" style="width: 941px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52047iF4E5E866CED127EC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Personal edition key file is missing or corrupt.png" alt="Personal edition key file is missing or corrupt.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="qlik-migrated-tkb-headings"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4 class="qlik-migrated-tkb-headings"&gt;Cause:&lt;/H4&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Format change for qvw files&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;BR /&gt;&lt;BR /&gt;Resolution:&lt;/SPAN&gt;&lt;/H4&gt;
&lt;P&gt;&lt;BR /&gt;Workaround is to check 'Yes, I want to continue', click 'Continue' and then save the file, Close the QV desktop and then re-open the QVW.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Personal edition key file is missing or corrupt - select Yes.png" style="width: 941px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52048iF3E84A9A5FB9BD64/image-size/large?v=v2&amp;amp;px=999" role="button" title="Personal edition key file is missing or corrupt - select Yes.png" alt="Personal edition key file is missing or corrupt - select Yes.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the desktop client is licensed, the warning about the 3 remaining attempts can be ignored.&lt;BR /&gt;&lt;BR /&gt;If a large number of documents need to be resaved, the following Powershell script can be used. It will reloads all the files stored in a chosen folder.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;INS&gt;Notes:&lt;/INS&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If the source files / data is not available then the reload will fail.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If the data source is not working / login is wrong it will fail.&lt;BR /&gt;&lt;BR /&gt;The script is provided &lt;FONT color="#FF0000"&gt;AS IT IS&lt;/FONT&gt;, with no warranty. Make sure to have a backup of the files in the chosen folder.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$logPath = ""
$failCount = 0

echo "Please select path to your QlikView binary."
echo "Example: C:\Program Files\QlikView"
echo "Press any key to continue..."

$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")

Add-Type -AssemblyName System.Windows.Forms
$FileBrowser = New-Object System.Windows.Forms.OpenFileDialog
$filebrowser.Filter = "qv.exe| qv.exe"
$FileBrowser.Title = "Please select QV.exe location:"
[void]$FileBrowser.ShowDialog()

$qvPath = $FileBrowser.FileName

clear

echo "Please select your QVW document path."
echo "Press any key to continue..."

$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")

Add-Type -AssemblyName System.Windows.Forms
$FolderBrowser = New-Object System.Windows.Forms.FolderBrowserDialog
$FolderBrowser.Description = "Please select your QVW document path..."
[void]$FolderBrowser.ShowDialog()

$docPath = $FolderBrowser.SelectedPath

$docList = Get-ChildItem -Path $docPath -Filter *qvw -Recurse | Select-Object -ExpandProperty FullName

clear

ForEach ($doc in $docList) {

Write-Host "Reloading $doc : " -ForegroundColor White -NoNewline

$reload = Start-Process $qvPath -ArgumentList "/R $doc" -Wait -PassThru

if($reload.ExitCode -gt 0){
$failCount = $failCount + 1
Write-Host "FAILED" -ForegroundColor Red
} else {
Write-Host "SUCCEEDED" -ForegroundColor Green
}
}

if($failCount -gt 0){
Write-Host "Reload batch complete. $failCount document(s) failed to reload." -ForegroundColor Red
} else {
Write-Host "Reload batch complete. No reload failures detected!" -ForegroundColor Green
}

echo "Press any key to close this window."

$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Mar 2021 09:36:20 GMT</pubDate>
    <dc:creator>Sonja_Bauernfeind</dc:creator>
    <dc:date>2021-03-30T09:36:20Z</dc:date>
    <item>
      <title>"Personal edition key file is missing or corrupt" when opening a QlikView document created in QlikView Desktop 11.20</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/quot-Personal-edition-key-file-is-missing-or-corrupt-quot-when/ta-p/1712082</link>
      <description>&lt;P&gt;&lt;BR /&gt;When trying to open a dashboard in the desktop client user is receiving the following error message: The personal edition key file is missing or corrupt.&lt;BR /&gt;The document had been created in QlikView 11.20 and not saved in a 12.xx version of the client.&lt;BR /&gt;The desktop client is &lt;STRONG&gt;licensed&lt;/STRONG&gt;, and not an actual personal edition.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Environment:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;LI-PRODUCT title="QlikView" id="qlikView"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;Desktop 12.30 or higher&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Personal edition key file is missing or corrupt.png" style="width: 941px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52047iF4E5E866CED127EC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Personal edition key file is missing or corrupt.png" alt="Personal edition key file is missing or corrupt.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="qlik-migrated-tkb-headings"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4 class="qlik-migrated-tkb-headings"&gt;Cause:&lt;/H4&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Format change for qvw files&lt;/SPAN&gt;&lt;/P&gt;
&lt;H4&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;BR /&gt;&lt;BR /&gt;Resolution:&lt;/SPAN&gt;&lt;/H4&gt;
&lt;P&gt;&lt;BR /&gt;Workaround is to check 'Yes, I want to continue', click 'Continue' and then save the file, Close the QV desktop and then re-open the QVW.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Personal edition key file is missing or corrupt - select Yes.png" style="width: 941px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/52048iF3E84A9A5FB9BD64/image-size/large?v=v2&amp;amp;px=999" role="button" title="Personal edition key file is missing or corrupt - select Yes.png" alt="Personal edition key file is missing or corrupt - select Yes.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the desktop client is licensed, the warning about the 3 remaining attempts can be ignored.&lt;BR /&gt;&lt;BR /&gt;If a large number of documents need to be resaved, the following Powershell script can be used. It will reloads all the files stored in a chosen folder.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;INS&gt;Notes:&lt;/INS&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If the source files / data is not available then the reload will fail.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If the data source is not working / login is wrong it will fail.&lt;BR /&gt;&lt;BR /&gt;The script is provided &lt;FONT color="#FF0000"&gt;AS IT IS&lt;/FONT&gt;, with no warranty. Make sure to have a backup of the files in the chosen folder.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$logPath = ""
$failCount = 0

echo "Please select path to your QlikView binary."
echo "Example: C:\Program Files\QlikView"
echo "Press any key to continue..."

$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")

Add-Type -AssemblyName System.Windows.Forms
$FileBrowser = New-Object System.Windows.Forms.OpenFileDialog
$filebrowser.Filter = "qv.exe| qv.exe"
$FileBrowser.Title = "Please select QV.exe location:"
[void]$FileBrowser.ShowDialog()

$qvPath = $FileBrowser.FileName

clear

echo "Please select your QVW document path."
echo "Press any key to continue..."

$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")

Add-Type -AssemblyName System.Windows.Forms
$FolderBrowser = New-Object System.Windows.Forms.FolderBrowserDialog
$FolderBrowser.Description = "Please select your QVW document path..."
[void]$FolderBrowser.ShowDialog()

$docPath = $FolderBrowser.SelectedPath

$docList = Get-ChildItem -Path $docPath -Filter *qvw -Recurse | Select-Object -ExpandProperty FullName

clear

ForEach ($doc in $docList) {

Write-Host "Reloading $doc : " -ForegroundColor White -NoNewline

$reload = Start-Process $qvPath -ArgumentList "/R $doc" -Wait -PassThru

if($reload.ExitCode -gt 0){
$failCount = $failCount + 1
Write-Host "FAILED" -ForegroundColor Red
} else {
Write-Host "SUCCEEDED" -ForegroundColor Green
}
}

if($failCount -gt 0){
Write-Host "Reload batch complete. $failCount document(s) failed to reload." -ForegroundColor Red
} else {
Write-Host "Reload batch complete. No reload failures detected!" -ForegroundColor Green
}

echo "Press any key to close this window."

$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 09:36:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/quot-Personal-edition-key-file-is-missing-or-corrupt-quot-when/ta-p/1712082</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2021-03-30T09:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: "Personal edition key file is missing or corrupt" when opening a QlikView document created in QlikView Desktop 11.20</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/quot-Personal-edition-key-file-is-missing-or-corrupt-quot-when/tac-p/2119957#M10196</link>
      <description>&lt;P&gt;I have the same problem but have the QV personal edition i.e. the desktop client is not licensed. Will that create problems is i have more that 3 files to reopen?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 11:26:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/quot-Personal-edition-key-file-is-missing-or-corrupt-quot-when/tac-p/2119957#M10196</guid>
      <dc:creator>danieldewet</dc:creator>
      <dc:date>2023-09-19T11:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: "Personal edition key file is missing or corrupt" when opening a QlikView document created in QlikView Desktop 11.20</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/quot-Personal-edition-key-file-is-missing-or-corrupt-quot-when/tac-p/2120372#M10218</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/158164"&gt;@danieldewet&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;QlikView Personal Edition can only open documents created by the same install. It is restricted to four recoveries (meaning, four documents which were not created by this specific install).&lt;/P&gt;
&lt;P&gt;Once you have exhausted your recovery attempts, you will no longer be able to access documents that you have created and, from that point on, you will only be able to create new documents using your current QlikView installation.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 11:02:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/quot-Personal-edition-key-file-is-missing-or-corrupt-quot-when/tac-p/2120372#M10218</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-09-20T11:02:28Z</dc:date>
    </item>
  </channel>
</rss>

