<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.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>Fort SQL - All Comments</title><link>http://blogs.technet.com/b/fort_sql/</link><description>Information about SQL Server security.</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: List of SQL Server Service Names</title><link>http://blogs.technet.com/b/fort_sql/archive/2010/05/31/list-of-sql-server-service-names.aspx#3567755</link><pubDate>Thu, 18 Apr 2013 22:48:56 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3567755</guid><dc:creator>Gary</dc:creator><description>&lt;p&gt;When checking SNMP for the SQL Agent running (The Dude) I had to observe case sensitivity; &amp;nbsp;SQL Agent runs as SQLAGENT.EXE, not sqlagent.exe&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3567755" width="1" height="1"&gt;</description></item><item><title>re: List of SQL Server Service Names</title><link>http://blogs.technet.com/b/fort_sql/archive/2010/05/31/list-of-sql-server-service-names.aspx#3548547</link><pubDate>Sat, 26 Jan 2013 21:15:17 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3548547</guid><dc:creator>Donald Jackson</dc:creator><description>&lt;p&gt;As a security analyst this list will be very helpful for writing database compliance checks for Nessus scanning.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3548547" width="1" height="1"&gt;</description></item><item><title>re: Remove Public and Guest Permissions</title><link>http://blogs.technet.com/b/fort_sql/archive/2010/02/04/remove-public-and-guest-permissions.aspx#3534372</link><pubDate>Fri, 23 Nov 2012 17:32:56 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3534372</guid><dc:creator>Declan</dc:creator><description>&lt;p&gt;Thank you. Such a neat scrip. And such tidy format. Man love.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3534372" width="1" height="1"&gt;</description></item><item><title>re: Alert On Low Disk Space, Including Mount Points</title><link>http://blogs.technet.com/b/fort_sql/archive/2012/08/01/alert-on-low-disk-space-including-mount-points.aspx#3532597</link><pubDate>Wed, 14 Nov 2012 19:28:39 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3532597</guid><dc:creator>lauraldo2</dc:creator><description>&lt;p&gt;Thank you so much for this tip and the script. &amp;nbsp;I find it a little more user-friendly to display the data in a table format. &amp;nbsp;See below for script that does that. &amp;nbsp;It takes the server name as a parameter, so it is to be used from the command line, but it can be easily modified to be run from a SQL Server Agent job.&lt;/p&gt;
&lt;p&gt;Thanks again,&lt;/p&gt;
&lt;p&gt;Aldo Gonzalez&lt;/p&gt;
&lt;p&gt;Param($ServerName)&lt;/p&gt;
&lt;p&gt;$freespaceprct = @{ expression={ [float] $_.freespace / $_.capacity * 100} ; label=&amp;#39;Freespace %&amp;#39;;format=&amp;quot;{0:N1}&amp;quot;;width=12;alignment=&amp;#39;right&amp;#39;}&lt;/p&gt;
&lt;p&gt;$sizeMB = @{ expression={ [float] $_.capacity / 1024 /1024}; label=&amp;#39;Size (MB)&amp;#39;;format=&amp;quot;{0:N1}&amp;quot;;width=10;alignment=&amp;#39;right&amp;#39;}&lt;/p&gt;
&lt;p&gt;$FreespaceMB = @{ expression={ [float] $_.freespace / 1024 /1024}; label=&amp;#39;Freespace (MB)&amp;#39;;format=&amp;quot;{0:N1}&amp;quot;;width=15;alignment=&amp;#39;right&amp;#39;}&lt;/p&gt;
&lt;p&gt;$deviceid = @{ expression={ $_.Name }; label=&amp;#39;Drive/MountPoint&amp;#39; }&lt;/p&gt;
&lt;p&gt;$Volumes = Get-WmiObject -namespace &amp;quot;root/cimv2&amp;quot; -computername $ServerName -query &amp;quot;SELECT Name, Capacity, FreeSpace FROM Win32_Volume WHERE DriveType&lt;/p&gt;
&lt;p&gt; = 2 OR DriveType = 3&amp;quot;&lt;/p&gt;
&lt;p&gt;$Volumes | sort-object -property freespace | ft $deviceid, $sizeMB, $FreespaceMB, $freespaceprct -autosize&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3532597" width="1" height="1"&gt;</description></item><item><title>re: Managed Service Accounts</title><link>http://blogs.technet.com/b/fort_sql/archive/2012/09/04/managed-service-accounts.aspx#3520389</link><pubDate>Sun, 16 Sep 2012 12:01:26 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3520389</guid><dc:creator>Prashant Jha</dc:creator><description>&lt;p&gt;Nice one..I hadn&amp;#39;t heard about it either. ;-)&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3520389" width="1" height="1"&gt;</description></item><item><title>re: The Easiest Way To Rebuild The master Database</title><link>http://blogs.technet.com/b/fort_sql/archive/2011/02/01/the-easiest-way-to-rebuild-the-sql-server-master-database.aspx#3513120</link><pubDate>Wed, 08 Aug 2012 11:42:07 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3513120</guid><dc:creator>Bhargav Lalisetti</dc:creator><description>&lt;p&gt;Very Nice...Its&amp;#39; good to Understand and easiest way..&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3513120" width="1" height="1"&gt;</description></item><item><title>re: SQL Server Ports</title><link>http://blogs.technet.com/b/fort_sql/archive/2012/07/03/sql-server-ports.aspx#3512284</link><pubDate>Thu, 02 Aug 2012 17:59:39 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3512284</guid><dc:creator>Quantum John</dc:creator><description>&lt;p&gt;Hi Freek,&lt;/p&gt;
&lt;p&gt;I wanted to be comprehensive, and if you&amp;#39;re using FTP as part of SQL Server replication, you&amp;#39;re definitely dependent on port 21. Likewise, I know DBAs who can normally manage an instance of SQL Server by remoting into the server, which means they&amp;#39;re dependent on port 3389. They are &amp;quot;SQL Server&amp;quot; ports, but they could be involved in SQL Server issues.&lt;/p&gt;
&lt;p&gt;JD&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3512284" width="1" height="1"&gt;</description></item><item><title>re: Remove Public and Guest Permissions</title><link>http://blogs.technet.com/b/fort_sql/archive/2010/02/04/remove-public-and-guest-permissions.aspx#3511730</link><pubDate>Tue, 31 Jul 2012 14:41:06 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3511730</guid><dc:creator>John</dc:creator><description>&lt;p&gt;Great article specifically refresing DoD STIGS. &amp;nbsp;Script works great on SQL 2012 as I am in the process of applying STIGS to SQL 2012 now.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3511730" width="1" height="1"&gt;</description></item><item><title>re: Making STIG Compliance Much Easier</title><link>http://blogs.technet.com/b/fort_sql/archive/2009/10/13/making-stig-compliance-much-easier.aspx#3511007</link><pubDate>Thu, 26 Jul 2012 12:57:04 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3511007</guid><dc:creator>weakness</dc:creator><description>&lt;p&gt;how are you going to post a suggestion and not share the templates...........&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3511007" width="1" height="1"&gt;</description></item><item><title>re: SQL Server Ports</title><link>http://blogs.technet.com/b/fort_sql/archive/2012/07/03/sql-server-ports.aspx#3507460</link><pubDate>Wed, 04 Jul 2012 18:25:06 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3507460</guid><dc:creator>Freek Berson</dc:creator><description>&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;Some ports you mention, like e.g. 21 and 3389, I would not categorize as ports that SQL Server would use or be dependent upon.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Freek Berson&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://TheMicrosoftPlatform.net"&gt;themicrosoftplatform.net&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3507460" width="1" height="1"&gt;</description></item></channel></rss>