BALTAGY Posted February 6, 2015 Posted February 6, 2015 (edited) I try to install Nod32 with settings i want so i made it in 32Bit but my problem in 64Bit when i try to import registry settings i find it at Wow6432Node Is there a code i can import this registry as x64 The code i used;!@Install@!UTF-8!GUIFlags="2+4+16+32+2048"GUIMode="1"Title="SPEED.net"Progress="Yes"BeginPrompt="Do you want to install NOD32 AntiVirus 8 ?"ExtractTitle="SPEED.net"ExtractDialogText="Please wait NOD32 will start the setup..."RunProgram="regedit.exe /S NOD32.reg"RunProgram="eav_nt64_ENU.msi";!@InstallEnd@!I also tried this code but it give me errorRunProgram="x64:regedit.exe /S NOD32.reg" Edited February 7, 2015 by BALTAGY Quote
OnePiece Posted February 6, 2015 Posted February 6, 2015 (edited) REG IMPORT /?REG IMPORT FileName [/reg:32 | /reg:64] FileName The name of the disk file to import (local machine only). /reg:32 Specifies the key should be accessed using the 32-bit registry view. /reg:64 Specifies the key should be accessed using the 64-bit registry view.Examples: REG IMPORT AppBkUp.reg Imports registry entries from the file AppBkUp.regPress any key to continue . . .Ciao. Edited February 6, 2015 by OnePiece Quote
BALTAGY Posted February 6, 2015 Author Posted February 6, 2015 REG IMPORT /?REG IMPORT FileName [/reg:32 | /reg:64] FileName The name of the disk file to import (local machine only). /reg:32 Specifies the key should be accessed using the 32-bit registry view. /reg:64 Specifies the key should be accessed using the 64-bit registry view.Examples: REG IMPORT AppBkUp.reg Imports registry entries from the file AppBkUp.regPress any key to continue . . .Ciao. Is this code works with 7zip? i tried this one but it give me errorreg import NOD32.reg /reg:64 Quote
OnePiece Posted February 6, 2015 Posted February 6, 2015 Try to do everything from a cmd file, if it works after try to use 7ZipSFX mod Ciao. BALTAGY 1 Quote
BALTAGY Posted February 6, 2015 Author Posted February 6, 2015 Here what i did I included NOD32.reg and NOD32.cmd in NOD32.7z cmd with codereg import NOD32.reg /reg:64then used this code;!@Install@!UTF-8!GUIFlags="2+4+16+32+2048"GUIMode="1"Title="SPEED.net"Progress="Yes"BeginPrompt="Do you want to install NOD32 AntiVirus 8 ?"ExtractTitle="SPEED.net"ExtractDialogText="Please wait NOD32 will start the setup..."RunProgram="hidcon:NOD32.cmd"RunProgram="eav_nt64_ENU.msi";!@InstallEnd@!and now everything works as it should be, Thanks @OnePiece Quote
BALTAGY Posted February 6, 2015 Author Posted February 6, 2015 (edited) In win8.1 i get ERROR: Error accessing the registry. I must disable administrator prompt by this registryWindows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]"EnableLUA"=dword:00000000Is there a way to run it as adminstrator with disable administrator prompt ? :g: Edited February 6, 2015 by BALTAGY Quote
mooms Posted February 6, 2015 Posted February 6, 2015 Right click on the file -> Run as Administrator. Quote
BALTAGY Posted February 6, 2015 Author Posted February 6, 2015 Right click on the file -> Run as Administrator.This didn't help the only thing that made it works is disable administrator prompt That's why i ask is there something i add to this code to make it run the cmd file as admin and pass this administrator promptRunProgram="hidcon:NOD32.cmd" Quote
OnePiece Posted February 6, 2015 Posted February 6, 2015 (edited) in 7ZipSFX or in Exe file add in resource manifest <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*" /> </dependentAssembly> </dependency> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> <security> <requestedPrivileges> <requestedExecutionLevel level="requireAdministrator" uiAccess="false"/> </requestedPrivileges> </security> </trustInfo> <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> <application> <!-- Windows Vista --> <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> <!-- Windows 7 --> <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> <!-- Windows 8 --> <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> <!-- Windows 8.1 --> <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> <!-- Windows 10 --> <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> </application> </compatibility></assembly>Ciao. Edited February 6, 2015 by OnePiece BALTAGY 1 Quote
BALTAGY Posted February 6, 2015 Author Posted February 6, 2015 (edited) Thanks so much this one works perfect, can i ask you 1- can i add this to any program i make, it will not effect the program it self, i mean for example this's antivirus program and when it remove viruses it need permistion to remove files in system so with this code it will not effect program permistions ?2- where i can update this code for upcoming windows? or what this code name so i can search for it Sorry i'm not good with codes i just try to edit some to do what help me in my work Edited February 6, 2015 by BALTAGY Quote
OnePiece Posted February 6, 2015 Posted February 6, 2015 (edited) in WinNT6.x (Windows Vista/7/8/10/Next) is a duty https://msdn.microsoft.com/en-us/library/bb756929.aspx to add\use always those line in manifest resourcehttps://msdn.microsoft.com/en-us/library/windows/desktop/hh848036(v=vs.85).aspxhttps://msdn.microsoft.com/en-us/library/aa374191(v=vs.85).aspxhttp://blogs.msdn.com/b/yvesdolc/archive/2009/09/22/the-new-compatibility-section-in-the-application-manifest.aspx Ciao. Edited February 7, 2015 by OnePiece BALTAGY 1 Quote
BALTAGY Posted February 6, 2015 Author Posted February 6, 2015 (edited) in WinNT6.x (Windows Vista/7/8/10/Next) is a duty https://msdn.microsoft.com/en-us/library/bb756929.aspx to add\use always those line in manifest resoursehttps://msdn.microsoft.com/en-us/library/windows/desktop/hh848036(v=vs.85).aspxhttps://msdn.microsoft.com/en-us/library/aa374191(v=vs.85).aspxhttp://blogs.msdn.com/b/yvesdolc/archive/2009/09/22/the-new-compatibility-section-in-the-application-manifest.aspx Ciao.Thank you, And if i made this code when i make java or flash player silent etc will not effect them ? Edited February 6, 2015 by BALTAGY Quote
OnePiece Posted February 7, 2015 Posted February 7, 2015 (edited) And if i made this code when i make java or flash player silent etc will not effect them ? No admin right in resource manifest only help that everything ends up OK Ciao. Edited February 7, 2015 by OnePiece BALTAGY 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.