Автор: Kest (codingrus.ru)
Необходимо создать файл с расширением .manifest. Например для исполняемого файла converter.exe название должно быть converter.exe.manifest и скопировать код представленный ниже:
<?xml version="1.0" encoding="UCS-2" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="Microsoft.Windows.MigrationWizard" type="win32"/> <description>Мастер переноса файлов и параметров</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*"/> </dependentAssembly> </dependency> </assembly>
|