Sign In
Vista Compatibility 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
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
Vista application compatibility XP port
Windows Vista Application Compatibilty XP port
windows Vista Application Compatibilty XP port dllhost session 0
windows Vista Application Compatibilty XP port MSI sign certificate installer
Archive
Archives
June 2008
(1)
June 2007
(4)
May 2007
(1)
April 2007
(6)
February 2007
(3)
January 2007
(2)
December 2006
(3)
November 2006
(1)
October 2006
(9)
September 2006
(7)
MSDN Blogs
>
Vista Compatibility Team Blog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Vista Compatibility Team Blog
Moved
Posted
over 4 years ago
by
MSDNArchive
1
Comments
As you might have noticed from the silence, we have moved on. Here are blogs for Vineet , Patrick , Yves and Maarten . We're working on OEM Ready lately and have our hands full. For the original Vista AppCompat issues, you can keep going to Chris ...
Vista Compatibility Team Blog
Folding shirts
Posted
over 5 years ago
by
MSDNArchive
1
Comments
One of the nice things of being off-site with colleagues is that you learn interesting life enhancing tricks. Vishal taught me the Ninja t-shirt technique. I will never fold a t-shirt the same way again. Maarten
Vista Compatibility Team Blog
Let us Test and Debug Your Application
Posted
over 5 years ago
by
MSDNArchive
2
Comments
If you happen to be at Teched (or you know someone who is) we have a room setup to test your application for Vista compatibility issues. You can bring your application and we can troubleshoot it for problems. We have the debug experts from SWAT team and...
Vista Compatibility Team Blog
Integrity Level and the ROT
Posted
over 5 years ago
by
MSDNArchive
2
Comments
Integrity Levels result in surprising behavior. The other day I was looking at an accessibility application. Since accessibility applications need to be able to access applications that are potentially running with a MIC level of high, there is a setting...
Vista Compatibility Team Blog
Signed Binaries in Non-trusted Locations
Posted
over 5 years ago
by
MSDNArchive
1
Comments
When you inadvertently copy the complete cmd.exe to your quick launch bar instead of creating a shortcut, you get some interesting behavior on launching it elevated. Instead of good old trusted elevation prompt, we get the untrusted version. Interesting...
Vista Compatibility Team Blog
Is my Process Virtualized or Redirected?
Posted
over 5 years ago
by
MSDNArchive
0
Comments
In some scenarios it might be necessary to know whether a process is actually being redirected or not. A case in point is for example a library that is loaded and needs to know whether the host process and the library have an identical view of the virtualized...
Vista Compatibility Team Blog
Debugging LSASS
Posted
over 5 years ago
by
MSDNArchive
0
Comments
For some reason I had to debug LSASS (Local Security Authority Process) recently. Considering that LSASS is rather involved in the functioning of the system with respect to authorization checks, it is cumbersome to debug. The system deadlocks immediately...
Vista Compatibility Team Blog
Certification Freebie
Posted
over 5 years ago
by
MSDNArchive
0
Comments
I had mentioned in a previous post about handy certification tools. If that sparked your interest in getting your app certified, Microsoft is extending the offer for a refund for the cost of verification testing until the end of June. You only get a refund...
Vista Compatibility Team Blog
GetCurrentProcess fails on Net 1.1 on Vista
Posted
over 5 years ago
by
MSDNArchive
1
Comments
This little snippet compiled with .Net 1.1: using System; using System.Diagnostics; class Program { static void Main(string[] args) { try { Process c = Process.GetCurrentProcess(); ...
Vista Compatibility Team Blog
C2065: 'TOKEN_LINKED_TOKEN' : undeclared identifier
Posted
over 5 years ago
by
MSDNArchive
1
Comments
If you get error C2065: 'TOKEN_LINKED_TOKEN' : undeclared identifier when you try to compile a VC++ project that needs to get the linked token through GetTokenInformation, you need to get the Microsoft Windows SDK for Windows Vista . This...
Vista Compatibility Team Blog
SetThreadPriority from Run key
Posted
over 5 years ago
by
MSDNArchive
4
Comments
If you add an application to the Run key in the registry (HKLM\Software\Microsoft\Windows\CurrentVersion\Run), you'll notice that its threads are kept at Normal priority. You can call SetThreadPriority all day long, but it won't make a difference: the...
Vista Compatibility Team Blog
Vista Certification Testing Tools
Posted
over 5 years ago
by
MSDNArchive
1
Comments
In the lab we get a lot of questions about the Vista Certification logo program. There are two different logos you can get for your product: Works With Windows Vista This one is easy to get and everyone is recommended to go for this logo. Your app needs...
Vista Compatibility Team Blog
Very informative UAC blog post from Mark Russinovich
Posted
over 5 years ago
by
MSDNArchive
0
Comments
In his blog post "PsExec, User Account Control and Security Boundaries" Mark Russinovich shares some insight on the capabilities of UAC in Vista... ..." It should be clear then, that neither UAC elevations nor Protected Mode IE define new Windows security...
Vista Compatibility Team Blog
Internet Explorer caches settings
Posted
over 5 years ago
by
MSDNArchive
1
Comments
In the LoRIE doc for developers , it is mentioned that you can register your application as a broker with Internet Explorer by adding entries to: HKLM\SOFTWARE\Microsoft\Internet Explorer\Low Rights\ElevationPolicy Unfortunately IE doesn't pick...
Vista Compatibility Team Blog
Creating System DSNs on Vista
Posted
over 5 years ago
by
MSDNArchive
1
Comments
As stated in the MSDN article that all Keys under HKLM\Software are virtualized, there is still the HKLM\Software\ODBC\ODBC.INI key (For creating System DSNs) that will NOT be virtualized. The rationale behind this was that – Creating a System DSN would...
Vista Compatibility Team Blog
SHGetKnownFolderPath and the KNOWNFOLDERID
Posted
over 5 years ago
by
MSDNArchive
2
Comments
In Vista the CSIDL as used in SHGetFolderPath are no longer the way to go . The recommended APIs such as SHGetKnownFolderPath take a KNOWNFOLDERID or actually a REFKNOWNFOLDERID. If you're wondering where those are defined and can't find them, well, I...
Vista Compatibility Team Blog
Icons in 16 bit applications on Vista
Posted
over 5 years ago
by
MSDNArchive
1
Comments
As mentioned in the cookbook , 16 bit applications are not going to work on 64 bit Vista. This is nothing new: they didn't run on 64 bit XP or 64 bit Windows Server 2003 either. They are still running as usual on 32 bit Vista. There is however one change...
Vista Compatibility Team Blog
IPHelper API for kernel mode
Posted
over 6 years ago
by
MSDNArchive
0
Comments
The Cookbook mentions Networking: Kernel Mode IP Helper APIs . If you wonder where you can find them, they are the same as the usermode APIs. Only difference is the header. Instead of compiling against #include "iphlpapi.h", you compile against #include...
Vista Compatibility Team Blog
The manifest and the resource
Posted
over 6 years ago
by
MSDNArchive
0
Comments
When you add a manifest you need to make sure that you give it the right resource type. If for some reason your manifest is not being picked up and you've ruled out fusion caching , then make sure that you don't have this: But this: The first...
Vista Compatibility Team Blog
Creating a COM component returns ERROR_MORE_DATA
Posted
over 6 years ago
by
MSDNArchive
0
Comments
Under Vista you might get this error when you create a COM component ( 800700EA ERROR_MORE_DATA). Most likely the cause of your problem is that the registry for your CLSID is messed up. You can check by starting RegEdit and navigating to the CLSID. In...
Vista Compatibility Team Blog
Manifest and the fusion cache
Posted
over 6 years ago
by
MSDNArchive
2
Comments
When you have an application without a manifest and you try to elevate it with an external manifest , you might get frustrated and get to the conclusion that this external manifest thing is flaky at best. The scenario goes something like this. You...
Vista Compatibility Team Blog
Mark and Manmeet on .Net Show
Posted
over 6 years ago
by
MSDNArchive
0
Comments
Mark and Manmeet appeared on the .Net show last week. Enjoy: http://msdn.microsoft.com/theshow/episode.aspx?xml=theshow/en/episode059/manifest.xml Maarten
Vista Compatibility Team Blog
MSI uninstall gives unsigned dialog
Posted
over 6 years ago
by
MSDNArchive
4
Comments
This week we again had the honor of getting the expert advise of one of the Windows Installer PMs ( here and here ). He mentioned that when uninstalling a signed msi package you still get the scary this-package-is-unsigned dialog. Reason is that the installer...
Vista Compatibility Team Blog
rundll32.exe appwiz.cpl,NewlInkHere is back
Posted
over 6 years ago
by
MSDNArchive
2
Comments
For some reason it was quite common to use an undocumented (and hence unsupported and we-can-pull-rug-underneath-at-any-time) export from the appwiz.cpl called newlinkhere. This export was removed in Vista. Since this was quite a popular export (live...
Vista Compatibility Team Blog
Session 0 isolation, COM and COM+
Posted
over 6 years ago
by
MSDNArchive
1
Comments
Session 0 isolation is not limited to NT services. It also applies to COM+ server applications and COM out-of-process applications running under anything else than the interactive user. So all problems related to services living in a different Terminal...
Page 1 of 2 (37 items)
1
2