<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How to bypass the web page to save Internet Explorer 7 settings</title><link>http://blogs.msdn.com/b/askie/archive/2009/07/14/how-to-bypass-the-web-page-to-save-internet-explorer-7-settings.aspx</link><description>Hi everyone! &amp;#160; Here’s a quick blog to help users and administrators by-pass that initial web page asking you to save your settings after IE7 is installed… &amp;#160; After installing Internet Explorer 7 all users are supposed to save their settings,</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: How to bypass the web page to save Internet Explorer 7 settings</title><link>http://blogs.msdn.com/b/askie/archive/2009/07/14/how-to-bypass-the-web-page-to-save-internet-explorer-7-settings.aspx#10161723</link><pubDate>Fri, 06 May 2011 09:13:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10161723</guid><dc:creator>Mike Jones</dc:creator><description>&lt;p&gt;Try adding this to the logon script should work even if your users cannot run regedit&lt;/p&gt;
&lt;p&gt;reg add &amp;quot;hkcu\software\microsoft\internet explorer\main&amp;quot; /v RunOnceHasShown /d 1 /t reg_dword /f&lt;/p&gt;
&lt;p&gt;reg add &amp;quot;hkcu\software\microsoft\internet explorer\main&amp;quot; /v RunOnceComplete /d 1 /t reg_dword /f&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10161723" width="1" height="1"&gt;</description></item><item><title>re: How to bypass the web page to save Internet Explorer 7 settings</title><link>http://blogs.msdn.com/b/askie/archive/2009/07/14/how-to-bypass-the-web-page-to-save-internet-explorer-7-settings.aspx#9892232</link><pubDate>Mon, 07 Sep 2009 16:49:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9892232</guid><dc:creator>davethr</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Yes this will work if you are an administrator, but none of my users are able to run regedit or any registry editor, I have tried running the regedit in the logon script but it fails as the user cannot run regedit. i cannot find a way to do it in Gp policy either. can anyone think of a way to add this to the hive in some way?&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9892232" width="1" height="1"&gt;</description></item><item><title>re: How to bypass the web page to save Internet Explorer 7 settings</title><link>http://blogs.msdn.com/b/askie/archive/2009/07/14/how-to-bypass-the-web-page-to-save-internet-explorer-7-settings.aspx#9877256</link><pubDate>Thu, 20 Aug 2009 20:01:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9877256</guid><dc:creator>jon</dc:creator><description>&lt;p&gt;Got this to work in our terminal server environment....&lt;/p&gt;
&lt;p&gt;created a .vbs file and put it in the startup for all users&lt;/p&gt;
&lt;p&gt;' *** Check to reset IE7 settings once per server ***&lt;/p&gt;
&lt;p&gt;If oFSO.FileExists(&amp;quot;c:\documents and settings\&amp;quot; &amp;amp; objNet.UserName &amp;amp; &amp;quot;\IE7&amp;quot;) = True Then&lt;/p&gt;
&lt;p&gt;' &amp;nbsp;msgbox &amp;quot;file exists, quitting.&amp;quot;&lt;/p&gt;
&lt;p&gt;Else&lt;/p&gt;
&lt;p&gt;' &amp;nbsp;msgbox &amp;quot;Running configuration scripts now.&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Set oFile = oFSO.CreateTextFile(&amp;quot;c:\documents and settings\&amp;quot; &amp;amp; objNet.UserName &amp;amp; &amp;quot;\IE7&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp;oFile.close&lt;/p&gt;
&lt;p&gt; &amp;nbsp;o=ws.Regwrite(&amp;quot;HKCU\Software\Microsoft\Internet Explorer\Main\RunOnceComplete&amp;quot;, &amp;quot;1&amp;quot;, &amp;quot;REG_DWORD&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp;o=ws.Regwrite(&amp;quot;HKCU\Software\Microsoft\Internet Explorer\Main\RunOnceHasShown&amp;quot;, &amp;quot;1&amp;quot;, &amp;quot;REG_DWORD&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp;WScript.Sleep (6000)&lt;/p&gt;
&lt;p&gt; &amp;nbsp;o=ws.Regwrite(&amp;quot;HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\4\1001&amp;quot;, &amp;quot;3&amp;quot;, &amp;quot;REG_DWORD&amp;quot;)&lt;/p&gt;
&lt;p&gt;End If&lt;/p&gt;
&lt;p&gt;Also need to change HKEY_USERS\DEFAULT\software\microsoft\windows\current version\internet settings\zones\4 &amp;nbsp; then change Reg_Dword value 1001 from 0 to a 3. &amp;nbsp; &lt;/p&gt;
&lt;p&gt;Once this has been done you can then start logging users into the terminal server and they wont have to do a thing for settings.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9877256" width="1" height="1"&gt;</description></item><item><title>re: How to bypass the web page to save Internet Explorer 7 settings</title><link>http://blogs.msdn.com/b/askie/archive/2009/07/14/how-to-bypass-the-web-page-to-save-internet-explorer-7-settings.aspx#9835743</link><pubDate>Thu, 16 Jul 2009 18:20:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9835743</guid><dc:creator>Chirag Patel</dc:creator><description>&lt;p&gt;That totally worked!&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;CPatel.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9835743" width="1" height="1"&gt;</description></item></channel></rss>