Return to site

Install Windbg Windows 2008 R2

broken image


  1. Install Windbg Windows 2012 R2
  2. Windows Update Repair Tool Server 20…
  3. Windows 2008 R2 Enterprise
  4. What Is Windows 2008 R2

We are excited to announce a preview version of a brand new WinDbg. We've updated WinDbg to have more modern visuals, faster windows, a full-fledged scripting experience, built with the easily extensible debugger data model front and center. I'll start this by saying that WinDbg Preview is using the same underlying engine as WinDbg today, so all the commands extensions and workflows you're used to will still work just as they did before.

Creating a W3WP Memory dump on Windows Server 2008 R2. Therefore, the first action to take when creating a memory dump of a W3WP worker process is to find which W3WP process you need to get the dump of. To do this, open IIS 7 and select the web site which is having the problem, in this example, let's assume the 'Default Web Site'. Then, in the Actions Pane select Basic Settings as shown in Figure 1.

Getting started

I know a lot of you are going to want to dive right in and try it out, so here are the things you should know before doing so. https://lepetkowsnajs1972.mystrikingly.com/blog/tekken-7-game-download-for-android-webly.

  • Installation – You can install the WinDbg Preview from the Store if you have Windows 10 Anniversary Update or newer at https://www.microsoft.com/en-us/store/p/windbg/9pgjgd53tn86 – WinDbg Preview uses some features from the Windows 10 Anniversary Update, so that's required for now. The Windows Store lets us release bug fixes and updates to you faster than we've ever been able to before, so make sure to stayed tuned to our blog and MSDN to learn the latest about the preview.
  • Feedback – Familiarize yourself a bit with the Feedback Hub! We've still got a long way to go before we cover all WinDbg features, and we'll be using the Feedback Hub to help us prioritize what you want us to work on. The Windows Insider website has a great overview on how to give good feedback – https://insider.windows.com/en-us/how-to-feedback. Once you've read that, just hit the ‘Feedback Hub' button on the home ribbon.
  • Questions – You're bound to have a lot of questions, so feel free to post them on this blog post, send feedback in the Feedback Hub or tweet @aluhrs13 and I'll do my best to answer. We'll be posting an FAQ on our blog sometime in the upcoming weeks.
  • Documentation – We've got some early documentation up on MSDN that's preliminary and subject to change at https://go.microsoft.com/fwlink/p/?linkid=854349. You can give us feedback or propose edits to that documentation by hitting 'Comments' or 'Edit' on any page. Also keep your eyes on our MSDN blog for more updates and tips.
  • Videos – We went to the Channel 9 studio and recorded a couple episodes of Defrag Tools to help explain some of the basics of WinDbg Preview.
    • Defrag Tools #182 – Tim, Chad and I go over the basics of WinDbg Preview and some of the features
    • Defrag Tools #183 – Nick, Tim and Chad use WinDbg Preview and go over a quick demo
    • Coming Soon – Bill and Andrew walk through the scripting features in WinDbg Preview

What's New

There are a lot of major changes, some of them under the hood and some of them really obvious. Here are my favorites or the things that people have told me they like the best.

Less intimidating

One of the words people often use to describe WinDbg is 'intimidating.' When you first open it, you get a dull gray screen and very little indication of what to do next. Once you're going outside of the stepping icons, it's difficult to tell what toolbar button or menu is what you want. With WinDbg Preview, we've taken a few steps to make it a bit easier for beginners.

  • Ribbon – Ribbons are great when icons don't do a great job of describing an action and when there are a lot of different contextual actions that are only sometimes relevant. Right now our ribbon is pretty barebones with the basics, but over time we'll be adding more ribbons for specific contexts while you're debugging.
  • Re-worked file menu – The new file menu makes it much more clear which options you have for starting and configuring your debugging session. The attach dialog is much cleaner and more organized now and, there's even a new option to launch your Store App or background tasks without needing to set it up with PLMDebug.exe.
  • Familiar source windows – Source windows now are better in pretty much every way and should look more like the source windows you're used to seeing in every other modern editor.

Quality of life improvements

Install Windbg Windows 2008 R2

WinDbg has gone a long time without any major quality of life improvements or modernizations. This has led a lot of people to doing registry hacks to get a prettier theme, or having a dozen icons pinned to their taskbar for each thing they debug often. We've taken some of these work-arounds and made them easy to access.

BB King Blues Greatest Hits [Full Album] - BB King Blues Best Songs BB King Colection| New Album 2015 Greatest Hits Of BB King| The best songs of BB King Things You Did Not Know About B.B.King: B.B. B.b. king & friends 80 rar.

  • Dark theme – This one is pretty self-explanatory. A lot of people use dark themes in their editors and then flip over to the glaring brightness of WinDbg. Now it can match!
  • Recent targets – Instead of having to have your KDNET key and IP on a sticky-note on your monitor, WinDbg Preview will now remember all your recent sessions and some of the settings that you had during that session. You can quickly access them again from the recent targets list in the file menu.
  • Various window improvements – Many windows have gone a while without updates or just have glaring bugs. Some of the notable things we've done differently are that the disassembly window keeps its highlighting in the right spot when scrolled, and the memory window has better highlighting and scrolling. Many windows are also asynchronous now and loading can be cancelled by running another command.

Data model front and center

Hopefully you've heard about the debugger data model by now. If you haven't check out some of my older blog posts and our MSDN docs linked above. Up until now, the data model was only accessible through JavaScript and the dx command. With WinDbg Preview, we're putting the data model under the vast majority of what you see, making it much more extensible.

  • Extensible locals and watch – The data model is now powering the locals and watch windows. NatVis and JavaScript extensions that extend the data model will be reflected in those windows. You can even put LINQ queries into the watch window!
  • Model windows – There's a new type of window called a model window. Model windows will show the results of any model query in a normal hierarchy view or a table. You'll see in the FAQ that WinDbg Preview doesn't have a modules window, but you can use a model window to make your own with @$cursession.Modules! This also has the benefit that if you make a JavaScript extension that extends modules, it'll automatically update your window.
  • Built-in scripting environment – One of the biggest complaints with scripting and extending the debugger is having to go into an IDE to write and iterate on it. With WinDbg Preview you can write and execute your JavaScript and NatVis directly from the debugger. The script window has error highlighting, IntelliSense and easier execution of scripts.

Restrictions and other things worth noting

While we've got that big list of what's new and awesome, this is still a preview, so there's some things that you should be aware of:

  • At this point in the preview, we're only offering WinDbg Preview through the Windows Store. That means only devices running Windows 10 Anniversary Update can install it.
  • You might hit errors when trying to do something that requires elevation. You'll have to manually launch WinDbg Preview elevated.
  • The concept of a workspace is going to be changing a lot. A workspace in WinDbg Preview is vastly different from one in WinDbg. The MSDN documentation linked above has more information.

That's where we are today. The core experiences are there and we'll be releasing improvements faster than our normal pace now that we're shipping from the Windows Store. Please don't hesitate to send us feedback and feature requests in the Feedback Hub or in the comments below. We want your input as we move forward!

Quality formats – 480p, 720p, 1080p, Full HD. Get all episodes in single click. Torrent packed to the rafters season 4. This Australian comedy/drama concentrates on the Rafter household. Formats: mp4, mkv, avi.

Active8 years ago

My server suddenly started crashing every time I debug a chunk of code on my laptop which accesses the database on the server remotely. It's done it twice now, and I've stopped trying to debug my code until I can read the memory dumps from the server and see what happened.

Anyway, that's where I'm having troubles. I've downloaded and installed the Windows SDK for WinDbg as well as the Server 2008 RTM & SP2 Retail & Checked symbols, but WinDbg still yells at me that it doesn't have the correct symbols. Software fingerprint magic 4000 psi.

So, what do I have to do to get it to read the memory dump?

Thanks in advance for any suggestions!

John Gardeniers
25.1k99 gold badges4848 silver badges106106 bronze badges
Windows

WinDbg has gone a long time without any major quality of life improvements or modernizations. This has led a lot of people to doing registry hacks to get a prettier theme, or having a dozen icons pinned to their taskbar for each thing they debug often. We've taken some of these work-arounds and made them easy to access.

BB King Blues Greatest Hits [Full Album] - BB King Blues Best Songs BB King Colection| New Album 2015 Greatest Hits Of BB King| The best songs of BB King Things You Did Not Know About B.B.King: B.B. B.b. king & friends 80 rar.

  • Dark theme – This one is pretty self-explanatory. A lot of people use dark themes in their editors and then flip over to the glaring brightness of WinDbg. Now it can match!
  • Recent targets – Instead of having to have your KDNET key and IP on a sticky-note on your monitor, WinDbg Preview will now remember all your recent sessions and some of the settings that you had during that session. You can quickly access them again from the recent targets list in the file menu.
  • Various window improvements – Many windows have gone a while without updates or just have glaring bugs. Some of the notable things we've done differently are that the disassembly window keeps its highlighting in the right spot when scrolled, and the memory window has better highlighting and scrolling. Many windows are also asynchronous now and loading can be cancelled by running another command.

Data model front and center

Hopefully you've heard about the debugger data model by now. If you haven't check out some of my older blog posts and our MSDN docs linked above. Up until now, the data model was only accessible through JavaScript and the dx command. With WinDbg Preview, we're putting the data model under the vast majority of what you see, making it much more extensible.

  • Extensible locals and watch – The data model is now powering the locals and watch windows. NatVis and JavaScript extensions that extend the data model will be reflected in those windows. You can even put LINQ queries into the watch window!
  • Model windows – There's a new type of window called a model window. Model windows will show the results of any model query in a normal hierarchy view or a table. You'll see in the FAQ that WinDbg Preview doesn't have a modules window, but you can use a model window to make your own with @$cursession.Modules! This also has the benefit that if you make a JavaScript extension that extends modules, it'll automatically update your window.
  • Built-in scripting environment – One of the biggest complaints with scripting and extending the debugger is having to go into an IDE to write and iterate on it. With WinDbg Preview you can write and execute your JavaScript and NatVis directly from the debugger. The script window has error highlighting, IntelliSense and easier execution of scripts.

Restrictions and other things worth noting

While we've got that big list of what's new and awesome, this is still a preview, so there's some things that you should be aware of:

  • At this point in the preview, we're only offering WinDbg Preview through the Windows Store. That means only devices running Windows 10 Anniversary Update can install it.
  • You might hit errors when trying to do something that requires elevation. You'll have to manually launch WinDbg Preview elevated.
  • The concept of a workspace is going to be changing a lot. A workspace in WinDbg Preview is vastly different from one in WinDbg. The MSDN documentation linked above has more information.

That's where we are today. The core experiences are there and we'll be releasing improvements faster than our normal pace now that we're shipping from the Windows Store. Please don't hesitate to send us feedback and feature requests in the Feedback Hub or in the comments below. We want your input as we move forward!

Quality formats – 480p, 720p, 1080p, Full HD. Get all episodes in single click. Torrent packed to the rafters season 4. This Australian comedy/drama concentrates on the Rafter household. Formats: mp4, mkv, avi.

Active8 years ago

My server suddenly started crashing every time I debug a chunk of code on my laptop which accesses the database on the server remotely. It's done it twice now, and I've stopped trying to debug my code until I can read the memory dumps from the server and see what happened.

Anyway, that's where I'm having troubles. I've downloaded and installed the Windows SDK for WinDbg as well as the Server 2008 RTM & SP2 Retail & Checked symbols, but WinDbg still yells at me that it doesn't have the correct symbols. Software fingerprint magic 4000 psi.

So, what do I have to do to get it to read the memory dump?

Thanks in advance for any suggestions!

John Gardeniers
25.1k99 gold badges4848 silver badges106106 bronze badges
Gup3rSuR4cGup3rSuR4c
40622 gold badges1111 silver badges2626 bronze badges

1 Answer

Install Windbg Windows 2012 R2

For dont have this kind of issues the better choice is not to download the Symbols.

Instead you can use a Symbols Server. This is a Microsoft place where they have saved the most recent symbols and if you configure it in your WinDbg will download the exact symbols that it needs on demand.`

You define your symbols insted of a local hard drive path, something like: srvf:symbolswebsymbolshttp://msdl.microsoft.com/download/symbols.

Check at this link how to configue Web Symbols on WinDbg.

Regards.

Ricardo Polo

Windows Update Repair Tool Server 20…

Ricardo Polo

Windows 2008 R2 Enterprise

1,73911 gold badge1414 silver badges3535 bronze badges

What Is Windows 2008 R2

Not the answer you're looking for? Browse other questions tagged windows-server-2008debuggingdump or ask your own question.





broken image