Thread overview
D applications for MS Vista with manifest
Mar 12, 2007
Stefan Liebig
Mar 12, 2007
Carlos Santander
Mar 13, 2007
Stefan Liebig
Mar 13, 2007
Carlos Santander
Mar 17, 2007
Nicolai Waniek
March 12, 2007
Has anyone experience with this topic?

Have a look at: http://www.gregcons.com/KateBlog/AddingAManifestToAVistaApplication.aspx

I need to do that with D.
March 12, 2007
Stefan Liebig escribió:
> Has anyone experience with this topic?
> 
> Have a look at:
> http://www.gregcons.com/KateBlog/AddingAManifestToAVistaApplication.aspx
> 
> I need to do that with D.

I don't know how it is with Vista, but in XP you could just create your manifest as app.exe.manifest and keep it in the same directory as app.exe, and the OS would take it. Maybe the same works with Vista.

-- 
Carlos Santander Bernal
March 13, 2007
Carlos Santander Wrote:

> Stefan Liebig escribió:
> > Has anyone experience with this topic?
> > 
> > Have a look at: http://www.gregcons.com/KateBlog/AddingAManifestToAVistaApplication.aspx
> > 
> > I need to do that with D.
> 
> I don't know how it is with Vista, but in XP you could just create your manifest as app.exe.manifest and keep it in the same directory as app.exe, and the OS would take it. Maybe the same works with Vista.
> 
> -- 
> Carlos Santander Bernal

If have neither experience with manifests and XP. I will give your advice a try. Thanks! However, how can I embed the manifest within the executable?
March 13, 2007
Stefan Liebig escribió:
> Carlos Santander Wrote:
> 
>> Stefan Liebig escribió:
>>> Has anyone experience with this topic?
>>>
>>> Have a look at:
>>> http://www.gregcons.com/KateBlog/AddingAManifestToAVistaApplication.aspx
>>>
>>> I need to do that with D.
>> I don't know how it is with Vista, but in XP you could just create your manifest as app.exe.manifest and keep it in the same directory as app.exe, and the OS would take it. Maybe the same works with Vista.
>>
>> -- 
>> Carlos Santander Bernal
> 
> If have neither experience with manifests and XP. I will give your advice a try. Thanks!
> However, how can I embed the manifest within the executable?

It's been a while since I did that, but I think you linked it as a special resource, or something like that. I think DIG did that, but I'm not sure if it really worked.

-- 
Carlos Santander Bernal
March 17, 2007
have a look at the Microsoft Platform SDK: http://msdn2.microsoft.com/en-gb/library/ms649781.aspx



Stefan Liebig wrote:
> Carlos Santander Wrote:
> 
>> Stefan Liebig escribió:
>>> Has anyone experience with this topic?
>>>
>>> Have a look at: http://www.gregcons.com/KateBlog/AddingAManifestToAVistaApplication.aspx
>>>
>>> I need to do that with D.
>> I don't know how it is with Vista, but in XP you could just create your manifest as app.exe.manifest and keep it in the same directory as app.exe, and the OS would take it. Maybe the same works with Vista.
>>
>> -- 
>> Carlos Santander Bernal
> 
> If have neither experience with manifests and XP. I will give your advice a try. Thanks! However, how can I embed the manifest within the executable?