<?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>topic Re: How to reset Macro authorizations in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144628#M505690</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Erich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is different in Windows 7.&amp;nbsp; See file &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;C:\Users\USERNAME%\AppData\Roaming\QlikTech\QlikView\Settings.ini&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;The file is structured much the same as the registry settings.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;Michael&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;PS: For some reason, I don't receive notifications about posts in the older threads.&amp;nbsp; It is safer to start new.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Oct 2012 14:49:32 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-10-10T14:49:32Z</dc:date>
    <item>
      <title>How to reset Macro authorizations</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144622#M505684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;when a new QV document with Macro inside is opened by a user, a pop-up asks him witch level of security he wants to set. Normally all users choose a wrong level and set a flag "save this value".&lt;/P&gt;&lt;P&gt;when it happens, the user can never change this parameter!&lt;/P&gt;&lt;P&gt;there is "ctrl+shift+M" key combination to reset temporarily the security, but at each new open the security value returns like first selection.&lt;/P&gt;&lt;P&gt;there is a way to re-set security value and ask again to the user the macro security level?&lt;/P&gt;&lt;P&gt;thanx, Dario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 23:19:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144622#M505684</guid>
      <dc:creator>partenope</dc:creator>
      <dc:date>2009-05-20T23:19:51Z</dc:date>
    </item>
    <item>
      <title>How to reset Macro authorizations</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144623#M505685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dario,&lt;BR /&gt;User's choice goes to the registry, see under ...\QlikTech\QlikView\ for checksums - there could be Block, Safe, and System, as I can recall. Delete all them completely, and after this user will have to re-enter the choice again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 23:25:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144623#M505685</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-20T23:25:54Z</dc:date>
    </item>
    <item>
      <title>How to reset Macro authorizations</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144624#M505686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dario,&lt;/P&gt;&lt;P&gt;At plugin install time we runa little vbs script which sets the registry to always trust the server - change 'myserverid' as appropriate:&lt;/P&gt;&lt;P&gt;Dim WshShell&lt;/P&gt;&lt;P&gt;Set WshShell = WScript.CreateObject("WScript.Shell")&lt;/P&gt;&lt;P&gt;' It does not matter if this is run more than once as it will just overwrite existing values&lt;BR /&gt;WshShell.RegWrite "HKCU\Software\QlikTech\QlikOcx\Settings for Qlikview Servers\", 1, "REG_SZ"&lt;BR /&gt;WshShell.RegWrite "HKCU\Software\QlikTech\QlikOcx\Settings for Qlikview Servers\Module Script System\", 1, "REG_SZ"&lt;BR /&gt;WshShell.RegWrite "HKCU\Software\QlikTech\QlikOcx\Settings for Qlikview Servers\Module Script System\myserverid", "", "REG_SZ"&lt;/P&gt;&lt;P&gt;WScript.Echo "(: Macros are now enabled :)"&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2009 00:02:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144624#M505686</guid>
      <dc:creator />
      <dc:date>2009-05-21T00:02:15Z</dc:date>
    </item>
    <item>
      <title>How to reset Macro authorizations</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144625#M505687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll try,&lt;/P&gt;&lt;P&gt;thanx to all!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2009 15:23:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144625#M505687</guid>
      <dc:creator>partenope</dc:creator>
      <dc:date>2009-05-21T15:23:38Z</dc:date>
    </item>
    <item>
      <title>How to reset Macro authorizations</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144626#M505688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by "Server ID?"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2009 21:21:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144626#M505688</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2009-11-09T21:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Macro authorizations</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144627#M505689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it still the only way to reset those settings? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 12:15:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144627#M505689</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2012-10-10T12:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Macro authorizations</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144628#M505690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Erich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is different in Windows 7.&amp;nbsp; See file &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;C:\Users\USERNAME%\AppData\Roaming\QlikTech\QlikView\Settings.ini&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;The file is structured much the same as the registry settings.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;Michael&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;amp;quot;Arial&amp;amp;quot;,&amp;amp;quot;sans-serif&amp;amp;quot;"&gt;PS: For some reason, I don't receive notifications about posts in the older threads.&amp;nbsp; It is safer to start new.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 14:49:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144628#M505690</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-10T14:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to reset Macro authorizations</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144629#M505693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess I got lucky! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Thank you a lot! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 15:59:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-reset-Macro-authorizations/m-p/144629#M505693</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2012-10-10T15:59:20Z</dc:date>
    </item>
  </channel>
</rss>

