Scott Dorman

blog

  Home  |   Contact  |   Syndication    |   Login
  473 Posts | 9 Stories | 409 Comments | 55 Trackbacks

News


Post Categories

Image Galleries



Creative Commons License


Microsoft MVP


MCP Profile


Subscribers to this feed

Locations of visitors to this page

View blog authority

Add to Technorati Favorites

Windows Live Alerts

IM me

Scott [MVP]

Get Free Shots from Snap.com

Community Credit Hall of Fame

Get Feedghost

AddThis Social Bookmark Button

Xobni outlook add-in for your inbox

TechEd Bloggers

Party with Palermo

PDC 2008

Windows Live Translator

Twitter












Tag Cloud


Article Categories

Archives

Post Categories

Image Galleries

Resource Quotas

Prior to Vista, quotas were system-wide. Vista supports per-user hard resource quotas that cover:

  • CPU usage
  • working set minimum
  • page file usage
  • nonpaged pool
  • paged pool

Process and thread creation have new extended attributes contained in the STARTUPINFOEX structure and new API functions: *ProcThreadAttributeList.

Unfortunately, none of this information is documented yet, but keep an eye out. It promises to make quotas a lot more useful for the system administrators.

Symbolic File Links

NTFS has supported only symbolic directory links (junctions). There are tools that let you create symbolic file links but they are difficult to manage and keep track of through the operating system.

 

Vista now gives NTFS direct support for symbolic file links. For those of you who are Unix (or Linux) geeks you know these better as “soft links” (ln -s). Symbolic links are built using the NTFS reparse points just like junctions.

 

In order to create symbolic links you must have the “Create Symbolic Links” privilege which is, by default, only assigned to Administrators.

 

Assuming you have the right privileges, creating symbolic links can be done programmaticly using the CreateSymbolicLink API or the mklink.exe command line utility. The command line utility can also be used to create hard links.

posted on Saturday, June 17, 2006 3:13 PM