Jump to content

SunLion

Member
  • Posts

    60
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Brazil

About SunLion

Profile Information

  • OS
    Windows 10 x64

SunLion's Achievements

1

Reputation

  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
×
×
  • Create New...