<?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 get /NoSecurity into a .vbs file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888462#M309607</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But if you open the document manually and run Reload &lt;SPAN style="font-size: 13.3333330154419px;"&gt;are &lt;/SPAN&gt;you asked to Save document?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jun 2015 10:25:48 GMT</pubDate>
    <dc:creator>oleg_orlov</dc:creator>
    <dc:date>2015-06-24T10:25:48Z</dc:date>
    <item>
      <title>How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888453#M309598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using windows task scheduler and a .vbs file to automatically run some qlikview files.&lt;/P&gt;&lt;P&gt;Here is the code of the .vbs file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14351267670974666 jive_text_macro" jivemacro_uid="_14351267670974666" modifiedtitle="true"&gt;
&lt;P&gt;dim fso&lt;/P&gt;
&lt;P&gt;dim MyDoc&lt;/P&gt;
&lt;P&gt;dim MyApp&lt;/P&gt;
&lt;P&gt;dim qvwVerzeichnis&lt;/P&gt;
&lt;P&gt;dim vVerzeichnis&lt;/P&gt;
&lt;P&gt;dim vDirectory&lt;/P&gt;
&lt;P&gt;dim vDatei&lt;/P&gt;
&lt;P&gt;Dim intZaehler&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;set MyApp = CreateObject("QlikTech.QlikView")&lt;/P&gt;
&lt;P&gt;set fso = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;
&lt;P&gt;'Set fso = New FileSystemObject&lt;/P&gt;
&lt;P&gt;qvwVerzeichnis = "\\10.232.130.232\QlikView\data\02_Betriebsorganisation\TELSTAR\"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;REM TEAMSTATISTIK&lt;/P&gt;
&lt;P&gt;&amp;nbsp; intZaehler = 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp; SET vVerzeichnis = fso.GetFolder("\\DENW0043VF001\43daten\000Versicherungstechnik\ACD-Reporting\Teamreports\")&lt;/P&gt;
&lt;P&gt;&amp;nbsp; vDirectory = "\\DENW0043VF001\43daten\000Versicherungstechnik\ACD-Reporting\Teamreports\"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 'Anzahl der Dateien im Ordner (ohne Unterverzeichnisse):&lt;/P&gt;
&lt;P&gt;&amp;nbsp; For Each vDatei In vVerzeichnis.Files&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 'Prüfen, ob es eine Datei ist, die im Namen "Advocard Teamauswertung I HalfHr Prozent" enthält&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If Mid(vDatei.Name, 1, Len("Advocard Teamauswertung I HalfHr Prozent")) = "Advocard Teamauswertung I HalfHr Prozent" Then&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '--&amp;gt;Dateizähler erhöhen:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; intZaehler = intZaehler + 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp; End If&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Next&lt;/P&gt;
&lt;P&gt;REM QVW-Datei Teamreports öffnen und Skript starten&lt;/P&gt;
&lt;P&gt;if intZaehler &amp;gt;0 then&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set MyDoc = MyApp.OpenDoc (qvwVerzeichnis + "qvdACR_Teamstatistik.qvw","","")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set ActiveDocument = MyDoc&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.Reload&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set MyDoc = Nothing&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REM eingelesene Dateien in das Archivverzeichnis verschieben&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fso.MoveFile vDirectory + "Advocard Teamauswertung I HalfHr Prozent*.xls", vDirectory + "archiv\"&lt;/P&gt;
&lt;P&gt;end if&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;REM TELSTAR-Datenmodell&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 'QVW-Datei mit Datenmodell öffnen, Skript starten und speichern&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set MyDoc = MyApp.OpenDoc (qvwVerzeichnis + "TELSTAR_datenmodell.qvw","","")&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set ActiveDocument = MyDoc&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ActiveDocument.Reload&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ActiveDocument.Save&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;REM TELSTAR&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 'QVW-Datei TELSTAR öffnen, Skript starten und speichern&lt;/P&gt;
&lt;P&gt;&amp;nbsp; qvwVerzeichnis = "\\10.232.130.232\QlikView\data\Prod\TELSTAR\" ' für produktiv auskommentieren&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set MyDoc = MyApp.OpenDoc (qvwVerzeichnis + "TELSTAR.qvw","","")&lt;/P&gt;
&lt;P&gt;&amp;nbsp; set ActiveDocument = MyDoc&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ActiveDocument.Reload&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ActiveDocument.Save&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;MyDoc.GetApplication.Quit 'Qlikview schließen&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Set MyDoc = Nothing&lt;/P&gt;
&lt;P&gt;Set MyApp = Nothing&lt;/P&gt;
&lt;P&gt;Set fso = Nothing&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As one can see, i am using vbs because I have to check whether there is at least a file in the directory, run the qvw and then move the files to a different directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything works fine except for the last file Telstar.qvw. Only for this one qv asks to manually replace the file:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="150624 replace telstar.jpg" class="jive-image image-1" src="/legacyfs/online/90557_150624 replace telstar.jpg" style="height: 475px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;All other files are automatically saved even without using 'ActiveDocumentSave'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In different discussions I read about '/NoScript'. Is it possible to add this command in the .vbs file. If so - where?&lt;/P&gt;&lt;P&gt;Or is there any other possibility to run these kind of scripts automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Falko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 06:38:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888453#M309598</guid>
      <dc:creator>falko_thom</dc:creator>
      <dc:date>2015-06-24T06:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888454#M309599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the size of the &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;TELSTAR.qvw.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Try by giving &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;TELSTAR.qvw to other file name which is running fine.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Hope this will help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 07:09:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888454#M309599</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-06-24T07:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888455#M309600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Thom!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use &lt;SPAN style="font-family: 'courier new', courier;"&gt;SaveAs&lt;/SPAN&gt; instead &lt;SPAN style="font-family: 'courier new', courier;"&gt;Save&lt;/SPAN&gt;&lt;STRONG&gt;:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ActiveDocument.SaveAs(&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ActiveDocument&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;.GetPathName());&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Oleg Orlov&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 07:34:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888455#M309600</guid>
      <dc:creator>oleg_orlov</dc:creator>
      <dc:date>2015-06-24T07:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888456#M309601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the quick answers.&lt;/P&gt;&lt;P&gt;I tried both of them, but with no effect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I figured out, that TELSTAR.qvw is saved when the script is started. I disabled the feature in my user settings, but it didn't help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 08:53:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888456#M309601</guid>
      <dc:creator>falko_thom</dc:creator>
      <dc:date>2015-06-24T08:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888457#M309602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to close the document. &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Test it only for TELSTAR.qvw (add rem to other code). And you should be sure that after using &lt;SPAN style="font-family: 'courier new', courier;"&gt;Reload&lt;/SPAN&gt; method your macro is waiting while it will finish the reload.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;JScript:&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; color: #3d3d3d;"&gt;ActiveDocument.SaveAs(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; color: #3d3d3d;"&gt;ActiveDocument&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; color: #3d3d3d;"&gt;.GetPathName());&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'courier new', courier;"&gt;ActiveDocument.CloseDoc();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;VBScript:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; color: #3d3d3d;"&gt;ActiveDocument.SaveAs &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; color: #3d3d3d;"&gt;ActiveDocument&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; color: #3d3d3d;"&gt;.GetPathName;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'courier new', courier;"&gt;ActiveDocument.&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;CloseDoc&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 09:16:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888457#M309602</guid>
      <dc:creator>oleg_orlov</dc:creator>
      <dc:date>2015-06-24T09:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888458#M309603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you can try it without using Reload. If it works without reloading the problem can be with sequence of commands.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 09:22:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888458#M309603</guid>
      <dc:creator>oleg_orlov</dc:creator>
      <dc:date>2015-06-24T09:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888459#M309604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Oleg,&lt;/P&gt;&lt;P&gt;thanks again for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This really is crazy.&lt;/P&gt;&lt;P&gt;Every time I execute the .vbs-script qlikview asks me to overwrite the file TELSTAR.qvw. I have to confirm that I want to overwrite the existing file.&lt;/P&gt;&lt;P&gt;Even renaming the file and using different code as written did not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qlikview asks me to confirm overwriting the file just as the command 'ActiveDocument.Reload' is executed. Directly before running the qv script. (I added a REM in front of the line 'ActiveDocument.SaveAs ActiveDocument.GetPathName').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the only file where I am asked to confirm anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really have no clue...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 10:16:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888459#M309604</guid>
      <dc:creator>falko_thom</dc:creator>
      <dc:date>2015-06-24T10:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888460#M309605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can turn off in User Preferences option Save Before Reload (Save tab).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 10:23:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888460#M309605</guid>
      <dc:creator>oleg_orlov</dc:creator>
      <dc:date>2015-06-24T10:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888461#M309606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;already done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 10:23:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888461#M309606</guid>
      <dc:creator>falko_thom</dc:creator>
      <dc:date>2015-06-24T10:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888462#M309607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But if you open the document manually and run Reload &lt;SPAN style="font-size: 13.3333330154419px;"&gt;are &lt;/SPAN&gt;you asked to Save document?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 10:25:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888462#M309607</guid>
      <dc:creator>oleg_orlov</dc:creator>
      <dc:date>2015-06-24T10:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888463#M309608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It will help if you answer the following questions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if you open the document manually and run Reload &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;are &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;you asked to save document?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;.vbs-script&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; is running by the same user as User Preferences are set?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;does .qvw-file contain any macro or triggers?&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 12:02:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888463#M309608</guid>
      <dc:creator>oleg_orlov</dc:creator>
      <dc:date>2015-06-24T12:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888464#M309609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the problem is that this qvw has the "Initial Data Reduction..." option checked in Document Properties | Opening. If this option is set, then QV will automatically do a Save As... option to avoid the possibility of a reduced document overwriting the "unreduced" document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apart from clearing this option, I do not think there is a workaround, but perhaps someone else has an idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same thing happens if you open the document in the desktop and then try to save it. You could possibly invoke Qv.exe with the /R option from your script. This does not have the same problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 12:22:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888464#M309609</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-06-24T12:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888465#M309610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If so, problem may be solved by simply saving document before reload:&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 13px; font-family: 'courier new', courier; font-weight: inherit;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-weight: inherit; font-size: 13px; font-family: 'courier new', courier;"&gt;ActiveDocument.SaveAs &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-weight: inherit; font-size: 13px; font-family: 'courier new', courier;"&gt;ActiveDocument&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-weight: inherit; font-size: 13px; font-family: 'courier new', courier;"&gt;.GetPathName;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13px; font-style: inherit; font-family: 'courier new', courier; font-weight: inherit;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-weight: inherit; font-size: 13px; font-family: 'courier new', courier;"&gt;ActiveDocument.Reload&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-weight: inherit; font-size: 13px; font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13px; font-style: inherit; font-family: 'courier new', courier; font-weight: inherit;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-weight: inherit; font-size: 13px; font-family: 'courier new', courier;"&gt;ActiveDocument.Save&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-weight: inherit; font-size: 13px; font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding: 0 0 0 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;ActiveDocument.&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;CloseDoc;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 12:29:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888465#M309610</guid>
      <dc:creator>oleg_orlov</dc:creator>
      <dc:date>2015-06-24T12:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to get /NoSecurity into a .vbs file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888466#M309611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's it! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;the combination of yours and jonathan's answer finally made it for me!&lt;/P&gt;&lt;P&gt;Now I can really start to let task scheduler do it's daily job.&lt;/P&gt;&lt;P&gt;Thanks a lot! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/plus.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 10:48:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-NoSecurity-into-a-vbs-file/m-p/888466#M309611</guid>
      <dc:creator>falko_thom</dc:creator>
      <dc:date>2015-06-25T10:48:47Z</dc:date>
    </item>
  </channel>
</rss>

