<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Infrastructure</title>
        <link>http://geekswithblogs.net/PsudoKnowledgeBase/category/9469.aspx</link>
        <description>Infrastructure</description>
        <language>en-CA</language>
        <copyright>Geordie</copyright>
        <managingEditor>Martin.palmer@mjpalmer.com</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <item>
            <title>BizTalk DB Log File Explosion Due to Corrupt Index</title>
            <link>http://geekswithblogs.net/PsudoKnowledgeBase/archive/2009/06/17/biztalk-db-log-file-explosion-due-to-corrupt-index.aspx</link>
            <description>&lt;p&gt;&lt;font face=""&gt;I have just encounted an unusual database problem.  My dev BizTalk server suddenly ran out of space.  Initially I thought it was the transaction logs.  No luck there they were well within normal limits.  I did check the size ot the &lt;br /&gt;
'Microsoft SQL Server' directory.  It was over 8GB.  The volume was traced to the LOG directory.  SQL was pumping out 4 MB of error log every 10 seconds. After fighting with the server to free up some disk space, I checked out the error files.  The parts appear to be:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=""&gt;  ***Stack Dump being sent to C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\SQLDump7243.txt              &lt;br /&gt;
  * *******************************************************************************                                &lt;br /&gt;
  *                                                                                                                &lt;br /&gt;
  * BEGIN STACK DUMP:                                                                                              &lt;br /&gt;
  *   06/17/09 15:52:15 spid 54                                                                                    &lt;br /&gt;
  *                                                                                                                &lt;br /&gt;
  * CPerIndexMetaQS::ErrorAbort - Index corruption                                                                 &lt;br /&gt;
  *                                                                                                                &lt;br /&gt;
  * Input Buffer 510 bytes -                                                                                       &lt;br /&gt;
  *             EXECUTE msdb.dbo.sp_sqlagent_log_jobhistory @job_id = 0xBE810                                      &lt;br /&gt;
  *  129F3D1574AA4EB72EE897A6CCC, @step_id = 0, @sql_message_id = 0, @sql_sev                                      &lt;br /&gt;
  *  erity = 0, @run_status = 1, @run_date = 20090617, @run_time = 155201, @r                                      &lt;br /&gt;
  *  un_duration = 3, @operator_id_emailed = 0, @operator_id_netsent = 0, @op                                      &lt;br /&gt;
  *  erator_id_paged = 0, @retries_attempted = 0, @session_id = 65, @message                                       &lt;br /&gt;
  *  = N'The job succeeded.  The Job was invoked by Schedule 4 (Schedule).  T                                      &lt;br /&gt;
  *  he last step to run was step 1 (Purge).'                                                                      &lt;/font&gt;&lt;/p&gt;
&lt;font face=""&gt;
&lt;p&gt;&lt;br /&gt;
And&lt;/p&gt;
&lt;p&gt;  2009-06-17 15:52:14.55 spid56      Error: 8646, Severity: 21, State: 1. &lt;br /&gt;
  2009-06-17 15:52:14.55 spid56      Unable to find index entry in index ID 1, of table &lt;br /&gt;
  117575457, in database 'msdb'. The indicated index is corrupt or there is a &lt;br /&gt;
  problem with the current update plan. Run DBCC CHECKDB or DBCC CHECKTABLE. If &lt;br /&gt;
  the problem persists, contact product support. &lt;br /&gt;
  2009-06-17 15:52:15.24 spid54 Using 'dbghelp.dll' version '4.0.5' &lt;br /&gt;
  2009-06-17 15:52:15.24 spid54      **Dump thread - spid = 54, PSS = 0x0DDD32D0, EC = 0x0DDD32D8 &lt;br /&gt;
  2009-06-17 15:52:15.24 spid54      ***Stack Dump being sent to C:\Program Files\Microsoft SQL &lt;br /&gt;
  Server\MSSQL.1\MSSQL\LOG\SQLDump7243.txt &lt;br /&gt;
  2009-06-17 15:52:15.24 spid54      * ******************************************************************************* &lt;br /&gt;
  2009-06-17 15:52:15.24 spid54      * &lt;br /&gt;
  2009-06-17 15:52:15.24 spid54      * BEGIN STACK DUMP: &lt;br /&gt;
  2009-06-17 15:52:15.24 spid54      *   06/17/09 15:52:15 spid 54 &lt;br /&gt;
  2009-06-17 15:52:15.24 spid54      * 2009-06-17 15:52:15.24 spid54      * CPerIndexMetaQS::ErrorAbort - Index corruption&lt;/p&gt;
&lt;p&gt;Searching for 'CPerIndexMetaQS::ErrorAbort - Index corruption' online led me to a post that suggested running the following SQL script from SQL Server Manager on the local machine.&lt;/p&gt;
&lt;p&gt;  DECLARE  tempcursor&lt;br /&gt;
  CURSOR&lt;br /&gt;
  READ_ONLY&lt;br /&gt;
  FOR &lt;br /&gt;
        select spid From master..sysprocesses&lt;br /&gt;
        where dbid = (select database_id from sys.databases where name = 'msdb')&lt;br /&gt;
  &lt;br /&gt;
  DECLARE @name int&lt;br /&gt;
  OPEN tempcursor&lt;br /&gt;
  &lt;br /&gt;
  FETCH NEXT FROM tempcursor INTO @name&lt;br /&gt;
  WHILE (@@fetch_status &amp;lt;&amp;gt; -1)&lt;br /&gt;
  BEGIN&lt;br /&gt;
        exec('kill ' + @name)&lt;br /&gt;
  &lt;br /&gt;
        FETCH NEXT FROM tempcursor INTO @name&lt;br /&gt;
  END&lt;br /&gt;
  &lt;br /&gt;
  Use msdb&lt;br /&gt;
  Go&lt;br /&gt;
  sp_dboption 'msdb', 'single_user', 'true'&lt;br /&gt;
  GO&lt;br /&gt;
  DBCC CHECKDB('msdb', REPAIR_REBUILD) &lt;br /&gt;
  go&lt;br /&gt;
  sp_dboption 'msdb', 'single_user', 'false'&lt;br /&gt;
  &lt;br /&gt;
  CLOSE tempcursor&lt;br /&gt;
  DEALLOCATE tempcursor&lt;/p&gt;
&lt;p&gt;The script found and repaired the corrupt index, as shown below.&lt;/p&gt;
&lt;p&gt;  DBCC results for 'sysdownloadlist'.&lt;br /&gt;
  There are 0 rows in 0 pages for object "sysdownloadlist".&lt;br /&gt;
&lt;font color="#ff0000"&gt;  DBCC results for 'sysjobhistory'.&lt;br /&gt;
  Repair:  Successfully deleted row in index "dbo.sysjobhistory, nc1" in database "msdb".&lt;br /&gt;
  Msg 8952, Level 16, State 1, Line 1&lt;br /&gt;
  Table error: table 'sysjobhistory' (ID 117575457). Index row in index 'nc1' (ID 2) does not match any data row. Possible extra or invalid keys for:&lt;br /&gt;
          The error has been repaired.&lt;br /&gt;
  Msg 8956, Level 16, State 1, Line 1&lt;br /&gt;
  Index row (1:1141:114) with values (job_id = '89F8A96E-AF2B-4BE9-B5E4-FEF3B8C94EC5' and instance_id = 466459) pointing to the data row identified by (instance_id = 466459).&lt;br /&gt;
&lt;/font&gt;  There are 6640 rows in 459 pages for object "sysjobhistory".&lt;br /&gt;
  CHECKDB found 0 allocation errors and 1 consistency errors in table 'sysjobhistory' (object ID 117575457).&lt;br /&gt;
  CHECKDB fixed 0 allocation errors and 1 consistency errors in table 'sysjobhistory' (object ID 117575457).&lt;/p&gt;
&lt;p&gt;The log file generation has stopped and the server appears to be back to normal.&lt;/p&gt;
&lt;/font&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132890"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132890" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/PsudoKnowledgeBase/aggbug/132890.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Geordie</dc:creator>
            <guid>http://geekswithblogs.net/PsudoKnowledgeBase/archive/2009/06/17/biztalk-db-log-file-explosion-due-to-corrupt-index.aspx</guid>
            <pubDate>Wed, 17 Jun 2009 23:24:19 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/PsudoKnowledgeBase/comments/132890.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/PsudoKnowledgeBase/archive/2009/06/17/biztalk-db-log-file-explosion-due-to-corrupt-index.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/PsudoKnowledgeBase/comments/commentRss/132890.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Turning Off Data Execution Prevention (DEP)</title>
            <link>http://geekswithblogs.net/PsudoKnowledgeBase/archive/2009/06/03/turning-off-data-execution-prevention-dep.aspx</link>
            <description>If you can find the control panel for DEP, you will find there is not an option to turn it off.&lt;span style="mso-spacerun: yes"&gt;  &lt;/span&gt;This is not a terrible thing unless you are trying to troubleshoot a problem.&lt;span style="mso-spacerun: yes"&gt;  &lt;/span&gt;Then you want to eliminate it as an issue, to confirm that the application will work in the environment as a whole.  Then you can re enable it and try to configure DEP correctly to allow your application to function:
&lt;p class="MsoNormal"&gt;Access to DEP configuration panel-&lt;/p&gt;
&lt;p class="MsoListParagraphCxSpFirst" style="TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;1.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Click &lt;strong style="mso-bidi-font-weight: normal"&gt;Start&lt;/strong&gt;, click &lt;strong style="mso-bidi-font-weight: normal"&gt;Run&lt;/strong&gt;, type &lt;strong style="mso-bidi-font-weight: normal"&gt;sysdm.cpl&lt;/strong&gt;, and then click &lt;strong style="mso-bidi-font-weight: normal"&gt;OK&lt;/strong&gt;. &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpMiddle" style="TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;2.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;On the &lt;strong style="mso-bidi-font-weight: normal"&gt;Advanced&lt;/strong&gt; tab, under &lt;strong style="mso-bidi-font-weight: normal"&gt;Performance&lt;/strong&gt;, click &lt;strong style="mso-bidi-font-weight: normal"&gt;Settings&lt;/strong&gt;. &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpMiddle" style="TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;3.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;On the &lt;strong style="mso-bidi-font-weight: normal"&gt;Data Execution Prevention&lt;/strong&gt; tab, use one of the following procedures: &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpMiddle" style="MARGIN-LEFT: 72pt; TEXT-INDENT: -18pt; mso-list: l0 level2 lfo1; mso-add-space: auto"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;a.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Click &lt;strong style="mso-bidi-font-weight: normal"&gt;Turn on DEP for essential Windows programs and services only&lt;/strong&gt; to select the OptIn policy. &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpMiddle" style="MARGIN-LEFT: 72pt; TEXT-INDENT: -18pt; mso-list: l0 level2 lfo1; mso-add-space: auto"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;b.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Click &lt;strong style="mso-bidi-font-weight: normal"&gt;Turn on DEP for all programs and services except those I select&lt;/strong&gt; to select the OptOut policy, and then click &lt;strong style="mso-bidi-font-weight: normal"&gt;Add&lt;/strong&gt; to add the programs that you do not want to use the DEP feature.&lt;/p&gt;
&lt;p class="MsoListParagraphCxSpLast" style="TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;4.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Click &lt;strong style="mso-bidi-font-weight: normal"&gt;OK &lt;/strong&gt;two times.&lt;/p&gt;
&lt;p class="MsoNormal"&gt;There are actually 4 global configurations for DEP-&lt;/p&gt;
&lt;table style="mso-cellspacing: .7pt; mso-yfti-tbllook: 1184" cellspacing="1" cellpadding="0" border="0" class="MsoNormalTable"&gt;
    &lt;tbody&gt;
        &lt;tr style="mso-yfti-irow: 0; mso-yfti-firstrow: yes"&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal"&gt;&lt;strong style="mso-bidi-font-weight: normal"&gt;Configuration&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
            &lt;/td&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal" style="TEXT-ALIGN: center" align="center"&gt;&lt;strong style="mso-bidi-font-weight: normal"&gt;Description&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
            &lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr style="mso-yfti-irow: 1"&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal"&gt;&lt;strong style="mso-bidi-font-weight: normal"&gt;OptIn&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
            &lt;/td&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal"&gt;This setting is the default configuration. On systems with processors that can implement hardware-enforced DEP, DEP is enabled by default for limited system binaries and programs that "opt-in." With this option, only Windows system binaries are covered by DEP by default.&lt;/p&gt;
            &lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr style="mso-yfti-irow: 2"&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal"&gt;&lt;strong style="mso-bidi-font-weight: normal"&gt;OptOut&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
            &lt;/td&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal"&gt;DEP is enabled by default for all processes. You can manually create a list of specific programs that do not have DEP applied by using the System dialog box in Control Panel. Information technology (IT) professionals can use the Application Compatibility Toolkit to "opt-out" one or more programs from DEP protection. System compatibility fixes, or shims, for DEP do take effect.&lt;/p&gt;
            &lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr style="mso-yfti-irow: 3"&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal"&gt;&lt;strong style="mso-bidi-font-weight: normal"&gt;AlwaysOn&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
            &lt;/td&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal"&gt;This setting provides full DEP coverage for the whole system. All processes always run with DEP applied. The exceptions list to exempt specific programs from DEP protection is not available. System compatibility fixes for DEP do not take effect. Programs that have been opted-out by using the Application Compatibility Toolkit run with DEP applied.&lt;/p&gt;
            &lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr style="mso-yfti-irow: 4; mso-yfti-lastrow: yes"&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal"&gt;&lt;strong style="mso-bidi-font-weight: normal"&gt;AlwaysOff&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/p&gt;
            &lt;/td&gt;
            &lt;td style="PADDING-RIGHT: 0.75pt; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; PADDING-TOP: 0.75pt"&gt;
            &lt;p class="MsoNormal"&gt;This setting does not provide any DEP coverage for any part of the system, regardless of hardware DEP support. The processor does not run in PAE mode unless the /PAE option is present in the Boot.ini file.&lt;/p&gt;
            &lt;/td&gt;
        &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
&lt;p class="MsoNormal"&gt;To turn off DEP globally, we must edit the Boot.ini file.&lt;span style="mso-spacerun: yes"&gt;  &lt;/span&gt;Here are some instructions and an example of a Boot.ini file.-&lt;/p&gt;
&lt;p class="MsoListParagraphCxSpFirst" style="TEXT-INDENT: -18pt; mso-list: l1 level1 lfo2"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;1.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Click &lt;strong style="mso-bidi-font-weight: normal"&gt;Start&lt;/strong&gt;, right-click &lt;strong style="mso-bidi-font-weight: normal"&gt;My Computer&lt;/strong&gt;, and then click &lt;strong style="mso-bidi-font-weight: normal"&gt;Properties&lt;/strong&gt;. &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpMiddle" style="TEXT-INDENT: -18pt; mso-list: l1 level1 lfo2"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;2.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Click the &lt;strong style="mso-bidi-font-weight: normal"&gt;Advanced&lt;/strong&gt; tab, and then click &lt;strong style="mso-bidi-font-weight: normal"&gt;Settings&lt;/strong&gt; under the &lt;strong style="mso-bidi-font-weight: normal"&gt;Startup and Recovery&lt;/strong&gt; field. &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpMiddle" style="TEXT-INDENT: -18pt; mso-list: l1 level1 lfo2"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;3.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;In the &lt;strong style="mso-bidi-font-weight: normal"&gt;System startup&lt;/strong&gt; field, click &lt;strong style="mso-bidi-font-weight: normal"&gt;Edit&lt;/strong&gt;. The Boot.ini file opens in Notepad. &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpMiddle" style="TEXT-INDENT: -18pt; mso-list: l1 level1 lfo2"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;4.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;In Notepad, click &lt;strong style="mso-bidi-font-weight: normal"&gt;Find&lt;/strong&gt; on the &lt;strong style="mso-bidi-font-weight: normal"&gt;Edit&lt;/strong&gt; menu. &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpMiddle" style="TEXT-INDENT: -18pt; mso-list: l1 level1 lfo2"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;5.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;In the &lt;strong style="mso-bidi-font-weight: normal"&gt;Find what&lt;/strong&gt; box, type &lt;strong style="mso-bidi-font-weight: normal"&gt;/noexecute&lt;/strong&gt;, and then click &lt;strong style="mso-bidi-font-weight: normal"&gt;Find Next&lt;/strong&gt;. &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpMiddle" style="TEXT-INDENT: -18pt; mso-list: l1 level1 lfo2"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;6.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;In the &lt;strong style="mso-bidi-font-weight: normal"&gt;Find&lt;/strong&gt; dialog box, click &lt;strong style="mso-bidi-font-weight: normal"&gt;Cancel&lt;/strong&gt;. &lt;/p&gt;
&lt;p class="MsoListParagraphCxSpLast" style="TEXT-INDENT: -18pt; mso-list: l1 level1 lfo2"&gt;&lt;span style="mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"&gt;&lt;span style="mso-list: Ignore"&gt;7.&lt;span style="FONT: 7pt 'Times New Roman'"&gt;       &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Replace policy_level with &lt;strong style="mso-bidi-font-weight: normal"&gt;AlwaysOff&lt;/strong&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;Example of a Boot.ini file with /NoExecute set to AlwaysOff-&lt;/p&gt;
&lt;p class="MsoNormal"&gt;[boot loader]&lt;br /&gt;
timeout=30&lt;br /&gt;
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS&lt;br /&gt;
[operating systems]&lt;br /&gt;
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect &lt;font color="#ff0000"&gt;&lt;strong&gt;/NoExecute=AlwaysOff&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;span style="FONT-SIZE: 11pt; FONT-FAMILY: 'Calibri','sans-serif'; mso-ansi-language: EN-US; mso-fareast-font-family: 'Times New Roman'; mso-fareast-theme-font: minor-fareast; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-bidi-theme-font: minor-bidi; mso-bidi-font-size: 10.0pt; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin"&gt;Source: &lt;a href="http://support.microsoft.com/kb/875352"&gt;http://support.microsoft.com/kb/875352&lt;/a&gt;&lt;/span&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132601"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=132601" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/PsudoKnowledgeBase/aggbug/132601.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Geordie</dc:creator>
            <guid>http://geekswithblogs.net/PsudoKnowledgeBase/archive/2009/06/03/turning-off-data-execution-prevention-dep.aspx</guid>
            <pubDate>Wed, 03 Jun 2009 21:29:24 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/PsudoKnowledgeBase/comments/132601.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/PsudoKnowledgeBase/archive/2009/06/03/turning-off-data-execution-prevention-dep.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/PsudoKnowledgeBase/comments/commentRss/132601.aspx</wfw:commentRss>
        </item>
        <item>
            <title>How to Turn Off 'Shut Down Tracker' on Server 2003.</title>
            <link>http://geekswithblogs.net/PsudoKnowledgeBase/archive/2009/01/19/how-to-turn-off-shut-down-tracker-on-server-2003.aspx</link>
            <description>&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black"&gt;How to remove the shutdown tracker.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;A: Start &amp;gt; Run MMC&lt;/span&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;File &amp;gt; Add/Remove Snap-in...&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;Add...&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;Group Policy Object Editor&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;Add&lt;/span&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;Finish&lt;/span&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;Close&lt;/span&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;OK&lt;/span&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;Local Computer Policy &amp;gt; Computer Configuration &amp;gt; Administrative Templates &amp;gt; System &amp;gt; Dbl-Click "Display Shutdown Event Tracker" and select Disabled.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;OK&lt;/span&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;File&lt;/span&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;Exi&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black"&gt;t&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black"&gt;To help differentiate between production and test I leave the Shut Down Tracker running on production servers and turn it of in development.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black"&gt;For Server 2008 try this post: &lt;font face="Arial"&gt;&lt;a href="http://www.win2008workstation.com/wordpress/2008/03/08/disabling-the-shutdown-event-tracker/"&gt;http://www.win2008workstation.com/wordpress/2008/03/08/disabling-the-shutdown-event-tracker/&lt;/a&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: black"&gt;Geordie&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128796"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=128796" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/PsudoKnowledgeBase/aggbug/128796.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Geordie</dc:creator>
            <guid>http://geekswithblogs.net/PsudoKnowledgeBase/archive/2009/01/19/how-to-turn-off-shut-down-tracker-on-server-2003.aspx</guid>
            <pubDate>Mon, 19 Jan 2009 22:34:32 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/PsudoKnowledgeBase/comments/128796.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/PsudoKnowledgeBase/archive/2009/01/19/how-to-turn-off-shut-down-tracker-on-server-2003.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/PsudoKnowledgeBase/comments/commentRss/128796.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>