Sign in
Visual Studio Profiler Team Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
articles
colin
orcas
profiler
team system
tips
visual studio
vs2008
vs2010
vsts
Archive
Archives
December 2012
(1)
May 2011
(2)
April 2011
(1)
February 2011
(1)
December 2010
(1)
July 2010
(1)
June 2010
(3)
April 2010
(2)
February 2010
(2)
January 2010
(6)
December 2009
(5)
October 2009
(1)
June 2009
(1)
April 2009
(2)
February 2009
(1)
October 2008
(2)
September 2008
(2)
August 2008
(3)
July 2008
(4)
June 2008
(2)
May 2008
(1)
April 2008
(1)
October 2007
(1)
September 2007
(1)
June 2007
(1)
May 2007
(1)
April 2007
(1)
April 2006
(2)
August 2005
(2)
July 2005
(2)
June 2005
(3)
May 2005
(1)
April 2005
(9)
March 2005
(5)
February 2005
(1)
January 2005
(4)
November 2004
(1)
August 2004
(4)
July 2004
(1)
June 2004
(5)
May 2004
(7)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Visual Studio Profiler Team Blog
Profiling From the Command Line
Posted
over 9 years ago
by
profiler1
16
Comments
General Tips: /? is your friend. Until formal docs are written, you can see all the parameters that each command-line tool accepts by calling the .exe with the /? option. Do yourself a favor and set up the PATH environment variable. The "Visual...
Visual Studio Profiler Team Blog
The Visual Studio Profiler on Windows 8
Posted
5 months ago
by
Andrew B Hall - MSFT
13
Comments
Windows 8 brought a lot of great changes to Windows including a stronger security model and new capabilities for performance tools. I am excited about how the new capabilities allow us to deliver new performance tooling not previously possible, e.g. the...
Visual Studio Profiler Team Blog
How to profile ASP.NET and Silverlight at the same time
Posted
over 2 years ago
by
Andrew B Hall - MSFT
7
Comments
In Visual Studio 2010 SP1 we enabled the ability to profile Silverlight applications from the Visual Studio UI. Unfortunately there is a limitation where we cannot automatically attach to multiple processes on launch from inside Visual Studio, so...
Visual Studio Profiler Team Blog
Profiling is great! ... What does it do?
Posted
over 9 years ago
by
profiler1
7
Comments
The profiler has been gone from Visual Studio for awhile. I think... 6.0? Or maybe even 5.0 was the last incarnation. The core idea is to provide a tool to find those parts of your application that are preventing it from meeting performance goals, and...
Visual Studio Profiler Team Blog
What is the difference between Elapsed and Application Time?!
Posted
over 9 years ago
by
profiler1
6
Comments
This is the second in my series of posts on what the heck all these numbers mean in the profiler. In instrumentation mode, we give 4 varieties of statistics for each function in the reports: - Elapsed Inclusive - Elapsed Exclusive - Application...
Visual Studio Profiler Team Blog
What are Exclusive and Inclusive?!
Posted
over 9 years ago
by
profiler1
6
Comments
I wanted to address our most frequently asked question here. In the profiler reports we always report both an exclusive and inclusive statistic for each function. For instance, in sampling mode, each function in the function list reports “Exclusive...
Visual Studio Profiler Team Blog
Managing how you Profile .Net Code
Posted
over 9 years ago
by
profiler1
5
Comments
There are three environment variables needed for a .Net application you wish to profile. The profiler team has provided VSPerfCLREnv.cmd to set these variables for you. The switches for this helper file are: for trace (instrumentation) profiling: ...
Visual Studio Profiler Team Blog
Excluding Small Functions From Instrumentation
Posted
over 5 years ago
by
profiler1
3
Comments
In Visual Studio 2008, we added a feature to exclude small functions from instrumentation. A small function is a function that has very few instructions and makes no function calls (i.e. it’s a leaf). The idea behind this feature is that small functions...
Visual Studio Profiler Team Blog
VS2010 SP1: Silverlight 4 profiling from Visual Studio UI
Posted
over 3 years ago
by
profiler1
3
Comments
If you install recently published VS2010 SP1 Beta , you can discover that VS Profiler team enriched Silverlight profiling user experience. Previously I published few posts about VS2010 usage for those purposes, either through VS Profiler command...
Visual Studio Profiler Team Blog
Walkthroughs posted
Posted
over 9 years ago
by
profiler1
2
Comments
Rob Caron has posted a walkthrough for the profiler at the gotdotnet workspace . It is entitled “Profiling Managed Applications.” Any feedback in the comments is greatly appreciated as always.
Visual Studio Profiler Team Blog
VS2010: Silverlight 4 profiling
Posted
over 3 years ago
by
profiler1
2
Comments
Did you know that Visual Studio 2010 Profiler allows you to profile your Silverlight 4 applications? You didn’t? It does. This feature, however, is only partially integrated with Visual Studio UI, and you need to use command line tools to collect the...
Visual Studio Profiler Team Blog
VS2010: Silverlight 4 profiling from Visual Studio UI
Posted
over 3 years ago
by
profiler1
2
Comments
In my previous post I showed how VS2010 Profiler command line tools can be used to profile your Silverlight 4 application, as this feature is only partially integrated with Visual Studio UI. While we are working on a full integration story, let me show...
Visual Studio Profiler Team Blog
Disk Subsystem Performance Analysis for Windows
Posted
over 8 years ago
by
profiler1
2
Comments
Great primer on the art of analyzing storage subsystem performance: http://www.microsoft.com/whdc/device/storage/subsys_perf.mspx
Visual Studio Profiler Team Blog
Beta2 - Profiling a unit test in progress
Posted
over 8 years ago
by
profiler1
2
Comments
If you are using Visual Studio Team System Beta 2 and using the profiler on unit tests, there is a small issue that you should be aware of. Currently the IDE does not stop you from right clicking on a running unit test and clicking “Create Performance...
Visual Studio Profiler Team Blog
VS2010: Profiling In Progress (PIP)
Posted
over 3 years ago
by
profiler1
2
Comments
With Visual Studio 2010 we want to make it clearer when you are profiling your application within the Visual Studio IDE. To accomplish this we added a new control which we call ‘Profiling In Progress’ or PIP, which we show when you launch the profiler...
Visual Studio Profiler Team Blog
test your skills
Posted
over 9 years ago
by
profiler1
2
Comments
Rico posts some fun performance quizzes on his blog: http://weblogs.asp.net/ricom/archive/2004/08/18/216555.aspx [ejarvi]
Visual Studio Profiler Team Blog
New team blog posts
Posted
over 8 years ago
by
profiler1
2
Comments
There are a couple of new posts from some of the profiler team members: Steve Carroll answers the question “Why are there two copies of my function in Instrumentation mode function report?” And Ian Huff looks at how to profile signed binaries...
Visual Studio Profiler Team Blog
AngryRichard on Profiling Windows Services
Posted
over 8 years ago
by
profiler1
1
Comments
It's one of the most frequently asked internal support questions. This should help with the learning curve. http://blogs.msdn.com/angryrichard/articles/Profiling_Windows_Services.aspx [AngryRichard]
Visual Studio Profiler Team Blog
Larry Osterman on concurrency and scalability
Posted
over 8 years ago
by
profiler1
1
Comments
Larry Osterman is doing a really great series on concurrency and scalability issues. He's touching on how to identify them and some of the hidden places they manifest themselves. The great thing is that we've actually found similar issues in the profiler...
Visual Studio Profiler Team Blog
Rico Mariani has created a Perf Wiki on Channel 9
Posted
over 8 years ago
by
profiler1
1
Comments
Rico Mariani has started up a Perf Wiki on Microsoft’s Channel 9 community website . He’s started it out with a good collection of articles from his blog on writing high performance applications. The Perf Wiki is very much worth a look.
Visual Studio Profiler Team Blog
VS Quick Tip handy for profilers
Posted
over 9 years ago
by
profiler1
1
Comments
Recently we had some feedback that it was tough to get enough information from the performance reports on the screen at once since they are displayed in the source pane area of VS. One quick way to mitigate this is to use 'Full Screen' mode in VS. This...
Visual Studio Profiler Team Blog
A misconception and a brief geneology
Posted
over 9 years ago
by
profiler1
1
Comments
I saw a misconception on a blog summary of our DEV302 talk at TechEd that I wanted to clarify. The Team System Profiler (affectionately called F1 internally) is not just a combination of existing profiler add-ons available on MSDN. The product will...
Visual Studio Profiler Team Blog
Visual Studio Team System TechEd 2004 General Session Demo
Posted
over 9 years ago
by
profiler1
1
Comments
FYI - This is a video recording of the general session demo on Visual Studio Team System given at TechEd 2004 http://www.microsoft.com/downloads/details.aspx?FamilyID=f8538aa3-f12f-4c44-b6f6-c655ac08f1cf&DisplayLang=en [ejarvi]
Visual Studio Profiler Team Blog
.csv files from vsperfreport.exe
Posted
over 9 years ago
by
profiler1
1
Comments
Just this morning someone on an internal microsoft list pointed me to a promising looking (and free) .csv parsing tool - http://www.logparser.com/ It claims the ability to run SQL queries against CSV files. http://www.microsoft.com/technet/community/scriptcenter...
Visual Studio Profiler Team Blog
profiler video clips
Posted
over 9 years ago
by
profiler1
1
Comments
Here's a video clip of the profiler at work: http://download.microsoft.com/download/1/1/d/11d5f95b-f75d-4921-8a32-46a14c4d1448/Static%20Analysis-Perf.wmv Also PREfast and FxCop videos: http://www.microsoft.com/downloads/details.aspx?FamilyID...
Page 1 of 4 (97 items)
1
2
3
4