|
From: Kyle R. <tac...@gm...> - 2012-07-13 14:54:51
|
I have a development machine which has no network connection, so the normal installer will not work. I have downloaded the 3.6 binaries, but can't find out how to actually install them so I can use WiX. How do I go about doing an offline install? |
|
From: Rob M. <ro...@ro...> - 2012-07-13 15:37:32
|
wix36.exe /layout On Fri, Jul 13, 2012 at 7:54 AM, Kyle Roach <tac...@gm...> wrote: > I have a development machine which has no network connection, so the normal > installer will not work. I have downloaded the 3.6 binaries, but can't > find out how to actually install them so I can use WiX. How do I go about > doing an offline install? > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > WiX-users mailing list > WiX...@li... > https://lists.sourceforge.net/lists/listinfo/wix-users > -- virtually, Rob Mensching http://RobMensching.com LLC |
|
From: Nick R. <nic...@ho...> - 2012-07-14 03:19:25
|
I guess there's a bug open about this. 3534099. If I disable the network adapter on my virtual machine and try the install with the /layout option, it fails (after I've chosen the layout directory). So possibly an offline install is still in the works? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-do-offline-install-of-WiX-3-6-RC-tp7579422p7579430.html Sent from the wix-users mailing list archive at Nabble.com. |
|
From: Bob A. <bo...@jo...> - 2012-07-14 03:41:26
|
On 13-Jul-12 23:19, Nick Ramirez wrote: > I guess there's a bug open about this. 3534099. That bug is resolved. If you need an offline installer, run 'wix36.exe /layout' on the same machine you downloaded wix36.exe from. -- sig://boB http://joyofsetup.com/ |
|
From: Nick R. <nic...@ho...> - 2012-07-14 04:13:06
|
Now it makes sense to me. Have to create the "offline" installer with the
/layout option and then take that to the offline machine and install it.
Tested it out on a Windows 7 x64 machine with no internet connection.
This may be more of a .NET Framework installer issue (this machine didn't
have .NET 4 full), but I got this error.
[7/13/2012, 23:59:44] === Logging started: 2012/07/13 23:59:44 ===
[7/13/2012, 23:59:44] Executable: C:\ProgramData\Package
Cache\06BECADB92A5FCCA2529C0B93687C2A0C6D0D610\redist\dotNetFx40_Full_setup.exe
v4.0.30319.1
[7/13/2012, 23:59:44] --- logging level: standard ---
[7/13/2012, 23:59:46] Successfully bound to the ClusApi.dll
[7/13/2012, 23:59:46] Error 0x80070424: Failed to open the current cluster
[7/13/2012, 23:59:46] Cluster drive map: ''
[7/13/2012, 23:59:46] Considering drive: 'C:\'...
[7/13/2012, 23:59:46] Considering drive: 'D:\'...
[7/13/2012, 23:59:46] Drive 'D:\' is rejected because of the unknown or
unsuitable drive type
[7/13/2012, 23:59:46] Drive 'C:\' has been selected as the largest fixed
drive
[7/13/2012, 23:59:46] Directory 'C:\0e4186ec10daad783f2b91153e5b4b\' has
been selected for file extraction
[7/13/2012, 23:59:46] Extracting files to:
C:\0e4186ec10daad783f2b91153e5b4b\
[7/13/2012, 23:59:47] Extraction took 875 milliseconds
[7/13/2012, 23:59:47] Executing command line:
'C:\0e4186ec10daad783f2b91153e5b4b\\Setup.exe /q /norestart
/ChainingPackage "WiX Toolset v3.6.3109.0" /pipe
NetFxSection.{E0459FB2-C0D3-4C5F-947C-3A2661C9E51B} /x86 /x64 /ia64 /web'
[7/14/2012, 0:9:48] Exiting with result code: 0x0
[7/14/2012, 0:9:48] === Logging stopped: 2012/07/14 00:09:48 ===
--
View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-do-offline-install-of-WiX-3-6-RC-tp7579422p7579436.html
Sent from the wix-users mailing list archive at Nabble.com.
|
|
From: Bob A. <bo...@jo...> - 2012-07-14 17:02:15
|
On 14-Jul-12 00:13, Nick Ramirez wrote: > Now it makes sense to me. Have to create the "offline" installer with the > /layout option and then take that to the offline machine and install it. Right, so if you're on a dual-homed machine, you download wix36.exe then run wix36.exe /layout to get the bits onto an internal file server. Or you use a flash drive. At some point, you had Internet connectivity.<g> So that's where you run /layout. > This may be more of a .NET Framework installer issue (this machine didn't > have .NET 4 full), but I got this error. It looks like it succeeded, though it took 10 minutes. > [7/13/2012, 23:59:46] Error 0x80070424: Failed to open the current cluster Harmless, unless you're running failover clustering on Windows Server. > [7/14/2012, 0:9:48] Exiting with result code: 0x0 That's the good news.<g> -- sig://boB http://joyofsetup.com/ |
|
From: Jimit N. <jim...@gm...> - 2012-07-14 13:15:00
|
Run the setup executable with the /layout command on a machine that does have connectivity. It should download all required files into a folder of your choosing. Copy that to your target machine then rerun setup as normal. Sent from my iPhone On 14 Jul 2012, at 04:23, "wix...@li..." <wix...@li...> wrote: > Re: [WiX-users] How to do offline install of WiX 3.6 RC? |
|
From: Nick R. <nic...@ho...> - 2012-07-14 14:05:44
|
jimitndiaye wrote > > Run the setup executable with the /layout command on a machine that does > have connectivity. It should download all required files into a folder of > your choosing. Copy that to your target machine then rerun setup as > normal. Right, that part I understand now. There was an error when installing .NET framework 4.0 on the target machine. I pasted in the log. This could be an issue only I'm seeing, but has anyone else installed an "offline" install on a machine that doesn't have .NET 4.0 framework full? I was using the installer with associated files created by the layout option. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-do-offline-install-of-WiX-3-6-RC-tp7579422p7579438.html Sent from the wix-users mailing list archive at Nabble.com. |