Jump to content

SunLion

Member
  • Posts

    60
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Brazil

Everything posted by SunLion

  1. Hello I'm trying to create an image for clean installation with autounattend.xml, but am having problems. My language is Portuguese-Brazil. In tests in VirtualBox are created two users: Administrator and Administrator-USUBDRVG. What am I doing wrong? Follow my autounattend.xml file I appreciate the help of the Advanced Autounattend.xml
  2. Note that: InstallPath = %ProgramFiles% <== equivalent to "C:\Program Files" in 32 bit and "C:\Program Files (x86)" in 64 bit InstallPath = x86:%ProgramFiles% <== equivalent to "C:\Program Files" in 32 bit InstallPath = x64:%ProgramW6432% <== equivalent to "C:\Program Files" in 64 bit Also: x86: will only execute on 32bit x64: will only execute on 64bit %%T variable is equal to the InstallPath So you could try: 1 - If you choose to use "C:\Program Files" in 32 bit and "C:\Program Files (x86)" in 64 bit: ;!@Install@!UTF-8! GUIMode="2" Title="PaperCut & Printer Installer" InstallPath="%ProgramFiles%\\PaperCut Installer" BeginPrompt="Do you want to install the Papercut & Printer Installer?" RunProgram="cscript %%T\\PrinterVBS.vbs" ;!@InstallEnd@! 2 - Or, If you choose to use "C:\Program Files" in 32 bit and also "C:\Program Files" in 64 bit: ;!@Install@!UTF-8! GUIMode="2" Title="PaperCut & Printer Installer" InstallPath="x64:%ProgramW6432%\\PaperCut Installer" InstallPath="x86:%ProgramFiles%\\PaperCut Installer" BeginPrompt="Do you want to install the Papercut & Printer Installer?" RunProgram="cscript %%T\\PrinterVBS.vbs" ;!@InstallEnd@! Try and check if it works
  3. For winrar try this tool: http://www.wincert.net/forum/topic/11559-winrar-aio-x86x64-sfx-addon-maker/page-3%20-%20entry103182
  4. Hi Celtic, Also had the same problem and solved it like this: 1 – Added in the folder "update" only the extracted SP2 package; 2-Using McRip tips (mydigitallife.info), I created an installer for the other MSP using InnoSetup (can be done also with WinRAR), with the script below to install: @echo off TITLE McRip Office 2010 PRE SP3 Update Pack COLOR 1F IF EXIST "*.msi" ( for /F %%i in ('dir /b /o:n *.msi') do ( echo Update: %%i %%i /passive /norestart ) ) IF EXIST "*.msp" ( for /F %%i in ('dir /b /o:n *.msp') do ( echo Update: %%i %%i /passive /norestart ) ) EXIT This installer is run after installation of Office2010 in my Windows Post Install. Works like a charm
  5. You can try this installer: http://www.wincert.net/forum/topic/12295-legacy-net-framework-aio-for-xp-x86/
  6. I created the version 8 as guidelines from the link below: http://forum.avast.com/index.php?topic=81104.msg775764#msg775764
  7. I've added KB931125 to my list already. As for KB2934207, it didn't offer to me when I checked it, so I don't know what to do. Can anyone who got this update provide a direct download link so I can do some experiment to it? (Just use Wireshark to get the HTTP packets and grab the URL from inside them.) Microsoft did not provide a link to download the patch. At least I have not found. So I created the addon with the files installed on my system. http://support.microsoft.com/kb/2934207 I'm using the INF file below to disable the notification. Is working well. INF contents: [Version] Signature=$Windows NT$ Class=Base [DefaultInstall.NT] DelReg=ShotA.new AddReg=ShotB.new,ShotB.changed [shotA.new] [shotB.new] HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion","DisableEOSNotification",0x10001,1 HKCU,"Software\Microsoft\Windows\CurrentVersion","DisableEOSNotification",0x10001,1 CMD contents: start /wait rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %systemdrive%\TWEAKS\DisableEOSNotification.inf Put the INF file in folder: $OEM$\$1\TWEAKS And the CMD file to run it in the directory: $OEM$\$Docs\Default User\Menu Iniciar\Programas\Inicializar Attached files: https://www.mediafire.com/?1ye91sno18aig1j
×
×
  • Create New...