24 Sep, 2009
My solution on Social TechNet Forum.
Scenario
MOSS 2007 site setup using port 2000, so the URL looked like http://justsharepoint.com:2000 Read more... (562 words, estimated 2:15 mins reading time)
Having such a URL is not a great idea, especially when you have to type in the port number 2000! Why can’t we simply type in http://justsharepoint.com and be done with!!
11 Oct, 2008
As a developer, quite often you may have to recycle the application pool. IISReset is an option, alternatively you can just recycle a particular application pool.
Denny has a tip to just get this done!
cscript c:windowssystem32iisapp.vbs /a “[App_Pool_Name]” /r
Source
7 Oct, 2008
If you want to allow your blog visitors to comment on blog posts you will need to explicitly allow them to do so. To achieve this, you will need to setup unique permissions on your blog.
Here is the procedure:
1. Open http://your_blog_url/Lists/Comments/AllComments.aspx
2. Select Settings > List settings
3. Select Permissions and Management > Permissions for this list
4. Open Actions >Edit permissions (confirm this action when dialog pops-up)
Now you can setup unique permissions for this list. From this step forward you can add permissions for a specific user. The best approach is to give the Visitors group “Contribute” rights for this entire list. Read more... (151 words, estimated 36 secs reading time)
25 Apr, 2008
This post will show you how to configure client aliases for SQL Server. One of the security hardening measures is configuring non-standard port for SQL Server instances.
A default instance of SQL Server listens for connections on TCP port 1433. If a client computer is unable to connect to the database on TCP port 1433, it queries the SQL Server Resolution Service on UDP port 1434.
To protect the database server, you can block the standard ports used by SQL Server and configure your SQL Server instances to listen on a nonstandard port.
Configuring client aliases for SQL Server Read more... (218 words, 3 images, estimated 52 secs reading time)