Sign In
Junfeng Zhang's Windows Programming Notes
Win32, Fusion, CLR, .Net Framework, and others
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
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
.NetFramework
Debugging
Fusion
General
Others
Pages
Troubleshooting
Vista
Win32
Archive
Archives
July 2009
(1)
May 2009
(1)
March 2009
(1)
February 2009
(1)
December 2008
(2)
November 2008
(1)
August 2008
(2)
July 2008
(2)
June 2008
(2)
April 2008
(4)
March 2008
(2)
February 2008
(4)
January 2008
(1)
November 2007
(3)
October 2007
(1)
September 2007
(1)
August 2007
(5)
July 2007
(9)
June 2007
(3)
April 2007
(2)
March 2007
(3)
February 2007
(1)
January 2007
(2)
December 2006
(2)
November 2006
(4)
October 2006
(6)
September 2006
(5)
August 2006
(8)
July 2006
(2)
May 2006
(2)
April 2006
(12)
March 2006
(9)
February 2006
(5)
January 2006
(2)
December 2005
(10)
November 2005
(7)
October 2005
(2)
September 2005
(3)
August 2005
(1)
July 2005
(6)
June 2005
(8)
May 2005
(17)
April 2005
(9)
March 2005
(6)
February 2005
(9)
December 2004
(7)
November 2004
(12)
October 2004
(16)
September 2004
(16)
August 2004
(15)
July 2004
(10)
May 2004
(6)
April 2004
(14)
March 2004
(19)
February 2004
(39)
January 2004
(6)
April, 2004
MSDN Blogs
>
Junfeng Zhang's Windows Programming Notes
>
April, 2004
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Junfeng Zhang's Windows Programming Notes
Image File Execution Options
Posted
over 8 years ago
by
Junfeng Zhang
25
Comments
There is well-known (or not so well-known, depending on what you do) feature in NT family system, called “Image File Execution Options”. It is really in the registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion...
Junfeng Zhang's Windows Programming Notes
AssemblyResolve Event
Posted
over 8 years ago
by
Junfeng Zhang
11
Comments
CLR uses documented heuristics to probe assemblies. If assembly can't be found through the standard heuristics, CLR will raise an AssemblyResolve event . You can subscribe AssemblyResolve event to provide the assembly in the case assembly can't be found...
Junfeng Zhang's Windows Programming Notes
Deployment in windows
Posted
over 8 years ago
by
Junfeng Zhang
2
Comments
Mike wrote a blog about deployment in windows. ( Versioning - source of all good or evil? ). There are some interesting comments. Deployment in windows is a huge problem. The vision of fusion, is to make deployment in windows easy, safe, secure and...
Junfeng Zhang's Windows Programming Notes
Slow appdomain shutdown
Posted
over 8 years ago
by
Junfeng Zhang
0
Comments
If you have a lot assemblies loaded in the appdomain, you may experience slow appdomain shutdown, coupled with CPU spike. This thread explained why. http://msdn.microsoft.com/newsgroups/default.aspx?dg=microsoft.public.dotnet.framework.performance&mid...
Junfeng Zhang's Windows Programming Notes
So which CLR will my app use?
Posted
over 8 years ago
by
Junfeng Zhang
0
Comments
We have shipped several versions of .Net framework: 1.0, 1.1, and 2.0 is on the horizon. All of them are side by side, meaning, someone may be using 1.0 CLR, at the same time, someone else is using 1.1 CLR. In the same process, there can be only one CLR...
Junfeng Zhang's Windows Programming Notes
Java class data sharing
Posted
over 8 years ago
by
Junfeng Zhang
5
Comments
Java 1.5 introduces class data sharing: http://java.sun.com/j2se/1.5.0/docs/guide/vm/class-data-sharing.html This looks a lot like .Net's ngen concept, except it only works on core classes(for .net's equivalence, mscorlib.dll). Maybe their next...
Junfeng Zhang's Windows Programming Notes
mscorlib.resources couldn't be found! Large parts of the BCL won't work!
Posted
over 8 years ago
by
Junfeng Zhang
0
Comments
Brian Grunkemeyer from BCL team answers one question about mscorlib.resources here: http://msdn.microsoft.com/newsgroups/default.aspx?dg=microsoft.public.dotnet.framework.clr&mid=586edffa-c09d-470d-ba23-a99832acabfa
Junfeng Zhang's Windows Programming Notes
KB 329065 Access Denied Error When You Make Code Modifications with Index Services Running
Posted
over 8 years ago
by
Junfeng Zhang
2
Comments
KB article 329065 describes how index services can affect ASP.NET. The root cause of the problem is CreateFile flag FILE_SHARE_DELETE. When the flag is specified, you will be able to delete the file, even it is in use by other applications. The...
Junfeng Zhang's Windows Programming Notes
Fusion binding log and IE cache
Posted
over 8 years ago
by
Junfeng Zhang
0
Comments
By default fusion uses IE cache for the binding log. If IE screwd up, fusion can't write/read binding log from IE cache. If that happens, you can clear IE cache, and fusion binding log should work after that. Of course, if you use custom log...
Junfeng Zhang's Windows Programming Notes
eWeeks announces Fourth Annual Excellence Award
Posted
over 8 years ago
by
Junfeng Zhang
1
Comments
http://www.eweek.com/article2/0,1759,1560543,00.asp Microsoft Visual Studio.Net 2003, Windows Server 2003 and Office OneNote 2003 are among the winner list. In addition, Office SharePoint Portal Server 2003, System Management Server 2003, Windows Right...
Junfeng Zhang's Windows Programming Notes
RegDeleteKeyEx
Posted
over 8 years ago
by
Junfeng Zhang
1
Comments
For applications running under WOW, they can't delete a reg key under 64bit hive using RegDeleteKey. They have to use RegDeleteKeyEx . RegDeleteKeyEx exist in advapi32.dll, only in 64bit OS.
Junfeng Zhang's Windows Programming Notes
Fusion Global Assembly Cache API
Posted
over 8 years ago
by
Junfeng Zhang
11
Comments
Fusion Global Assembly Cache API is not documented in MSDN, but it is documented in KB article 317540 http://support.microsoft.com/default.aspx?scid=kb;en-us;317540 . I have received many questions about how to use fusion APIs. In the coming weeks...
Junfeng Zhang's Windows Programming Notes
KEY_WOW64_64KEY and KEY_WOW64_32KEY
Posted
over 8 years ago
by
Junfeng Zhang
1
Comments
This is really about Win32 on Win64, or Windows on Windows, or short for WOW. MSDN has many information about 64 bits Windows here ( http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/html/64bitwindows.asp ). One particular piece...
Junfeng Zhang's Windows Programming Notes
Publisher Policy
Posted
over 8 years ago
by
Junfeng Zhang
3
Comments
Alan has a great discussion on assembly binding policies here ( http://blogs.gotdotnet.com/alanshi/commentview.aspx/d4edb084-c625-4b6e-8e5c-7c2580cfcee9 ). I'll just talk about publish policy here. MSDN documents how to create a publisher policy here...
Page 1 of 1 (14 items)