Sign In
Bernhard Frank's WebLog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
No tags have been created or used yet.
Archive
Archives
April 2010
(1)
April 2008
(1)
March 2008
(2)
February 2008
(1)
January 2008
(1)
July 2006
(2)
February 2006
(1)
December 2005
(2)
September 2005
(1)
August 2005
(2)
March 2005
(1)
February 2005
(1)
January 2005
(1)
March, 2008
MSDN Blogs
>
Bernhard Frank's WebLog
>
March, 2008
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Bernhard Frank's WebLog
SQL server - a db user should only see his DB and no other.
Posted
over 4 years ago
by
Bernhard Frank
0
Comments
1) You got to remove the VIEW ANY DATABASE permission for the public group. (T-SQL) USE master Deny VIEW ANY DATABASE to public 2) to let the user see his database you must make this user the owner of the db when you create the database: ...
Bernhard Frank's WebLog
use icacls to apply read and execute permissions for "This folder, subfolder and files" (e.g. for IIS7 App Pool Isolation)
Posted
over 4 years ago
by
Bernhard Frank
1
Comments
icacls C:\inetpub\wwwroot\mysite\ /grant:r "IIS APPPOOL\mywebsitepool":(OI)(CI)(RX) guarantees that new files & directories put into this folder inherit the permissions that were set for the parent folder. More details on IIS7 Application pool...
Page 1 of 1 (2 items)