Content Type
Profiles
Forums
Events
Everything posted by ricktendo
-
Please vote: Vista/Win7/Win8 UAC support poll
ricktendo replied to Francesco's topic in Windows Post-Install Wizard (WPI)
6.2.9200 is RTM, I think 6.2.9201 will be SP1, etc Is that what you meant? -
Please vote: Vista/Win7/Win8 UAC support poll
ricktendo replied to Francesco's topic in Windows Post-Install Wizard (WPI)
That's the workaround I been using Edit: (Vista sp2 to Win7 ENU condition) RegKeyValue("HKLM\Software\Microsoft\Windows NT\CurrentVersion\CurrentVersion")=="6.0"&&RegKeyValue("HKLM\Software\Microsoft\Windows NT\CurrentVersion\CurrentBuild")>="6002"&&getOSlang()=="ENU"||RegKeyValue("HKLM\Software\Microsoft\Windows NT\CurrentVersion\CurrentVersion")=="6.1"&&getOSlang()=="ENU" -
Please vote: Vista/Win7/Win8 UAC support poll
ricktendo replied to Francesco's topic in Windows Post-Install Wizard (WPI)
Not change, if you can support both options would be nice This MSI LaunchCondition: In WPI could look like: getOSver2()>="6.0.6002"&&getOSver2()<="6.1" It would make WPI "future proof". You wont have to add a Win9/10/11 when/if another operating system comes out it will simply work, one would just have to increase the decimal point -
Please vote: Vista/Win7/Win8 UAC support poll
ricktendo replied to Francesco's topic in Windows Post-Install Wizard (WPI)
Would not take much to add Win8 support, since it pretty much runs same as it does on Win7 Also if you use 6.1.x/6.2.x/etc. it would allot be better, because you could also add service pack specific install support. For instance the Microsoft Camera Codec Pack is only compatible with Vista sp2 and not meant for Windows 8, would be nice if we could add these conditions in WPI -
Please vote: Vista/Win7/Win8 UAC support poll
ricktendo replied to Francesco's topic in Windows Post-Install Wizard (WPI)
Will you guys add support for getosver=Win8? Why do you guys use XP/Vista/Win7, would it not be better to use 5.1/6.0/6.1/6.2 etc? (future proof) -
[BUG+FIX] Dependencies are ignored on startup
ricktendo replied to Francesco's topic in Windows Post-Install Wizard (WPI)
My bad, was manually updating did not realize I could use the Auto Update function -
[BUG+FIX] Dependencies are ignored on startup
ricktendo replied to Francesco's topic in Windows Post-Install Wizard (WPI)
Sorry Kel but bug still present in 8.5.2 (don't think you added it correctly -
Try InstEd, it has a table editor that might give you a idea what the property of the dialog box for the pkey is
-
[BUG+FIX] WPI update ignores minor versions
ricktendo replied to Francesco's topic in Windows Post-Install Wizard (WPI)
Thanks -
[BUG+FIX] Dependencies are ignored on startup
ricktendo replied to Francesco's topic in Windows Post-Install Wizard (WPI)
FIXED!!! -
Its probably the way he nlited his disk and yes, I removed the 257 wuweb.dll to prevent any errors due to version mismatch
-
WPI Bug Report Thread
ricktendo replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
I thought the problem was because they were on the same line, but I moved one to the end on the last row and you still could not select either Sent you a PM with the link -
WPI Bug Report Thread
ricktendo replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
I have a problem with "Excludes" when theme is in horizontal mode: http://i3.lulzimg.com/5c36ed3d21.png (I cant check either of the two) Vertical up and down there is no problem selecting one or the other: http://i3.lulzimg.com/d5ae391582.png Here is my code: prog[pn]=['.NET Framework 4 Full']; uid[pn]=['DOTNETFX4FULL']; dflt[pn]=['yes']; forc[pn]=['no']; bit64[pn]=['no']; cat[pn]=['Microsoft']; pfro[pn]=['no']; cmds[pn]=['{x64} "%wpipath%\\Install\\dotNETfx\\netfx_core_x64.msi" /update "%wpipath%\\Install\\dotNETfx\\KB2468871-x64.msp" /qn','{x86} "%wpipath%\\Install\\dotNETfx\\netfx_core_x86.msi" /update "%wpipath%\\Install\\dotNETfx\\KB2468871-x86.msp" /qn','{x64} "%wpipath%\\Install\\dotNETfx\\netfx_extended_x64.msi" /update "%wpipath%\\Install\\dotNETfx\\KB2468871-x64.msp" /qn','{x86} "%wpipath%\\Install\\dotNETfx\\netfx_extended_x86.msi" /update "%wpipath%\\Install\\dotNETfx\\KB2468871-x86.msp" /qn','"%WinDir%\\Microsoft.NET\\Framework\\v4.0.30319\\ngen.exe" executequeueditems /nologo /silent','{x64} "%WinDir%\\Microsoft.NET\\Framework64\\v4.0.30319\\ngen.exe" executequeueditems /nologo /silent']; excl[pn]=['DOTNETFX4CORE']; gcond[pn]=['RegKeyExists("HKLM\\SOFTWARE\\Microsoft\\NET Framework Setup\\NDP\\v4\\Full")']; desc[pn]=['Microsoft .NET Framework 4 Full']; picf[pn]=['"%wpipath%\\Graphics\\Logos\\dotNETfx.png"']; picw[pn]=['0']; pich[pn]=['0']; textl[pn]=['Right']; pn++; prog[pn]=['.NET Framework 4 Client']; uid[pn]=['DOTNETFX4CORE']; dflt[pn]=['no']; forc[pn]=['no']; bit64[pn]=['no']; cat[pn]=['Microsoft']; pfro[pn]=['no']; cmds[pn]=['{x64} "%wpipath%\\Install\\dotNETfx\\netfx_core_x64.msi" /update "%wpipath%\\Install\\dotNETfx\\KB2468871-x64.msp" /qn','{x86} "%wpipath%\\Install\\dotNETfx\\netfx_core_x86.msi" /update "%wpipath%\\Install\\dotNETfx\\KB2468871-x86.msp" /qn','"%WinDir%\\Microsoft.NET\\Framework\\v4.0.30319\\ngen.exe" executequeueditems /nologo /silent','{x64} "%WinDir%\\Microsoft.NET\\Framework64\\v4.0.30319\\ngen.exe" executequeueditems /nologo /silent']; excl[pn]=['DOTNETFX4FULL']; gcond[pn]=['RegKeyExists("HKLM\\SOFTWARE\\Microsoft\\NET Framework Setup\\NDP\\v4\\Client")']; desc[pn]=['Microsoft .NET Framework 4 Client']; picf[pn]=['"%wpipath%\\Graphics\\Logos\\dotNETfx.png"']; picw[pn]=['0']; pich[pn]=['0']; textl[pn]=['Right']; pn++; -
Why use a CMD when you can use the SFX to install and detect what arch to use ;!@Install@!UTF-8! GUIMode="2" InstallPath="%Windir%\\Resources\\Themes" RunProgram="x64:%%T\\Cloud7\\UxStyle\\UxStylex64.msi [switches_here]" RunProgram="x86:%%T\\Cloud7\\UxStyle\\UxStylex86.msi [switches_here]" Delete="%%T\\Cloud7\\UxStyle" ;!@InstallEnd@! Note: you dont need Progress=No with GUIMode=2 and you have to use two backslashes (\\) in the path(s) Also: x86: will only execute on 32bit x64: will only execute on 64bit %%T variable is equal to the InstallPath
-
Building an Image in Audit Mode
ricktendo replied to justpooped's topic in Unattended Windows 7/Server 2008R2
Its allot better if you only install the apps you want in sysprep, then for updates/drivers you can use dism to integrate them without the need to install & capture -
gora has done a nice job keeping the program alive, updating the code a bit (with update checking and stuff) and he also updates the \bin & \lang files I have a updated/repacked installer with gora updates, I know this is not what you are asking for but just install it, then zip the files for a somewhat portable app http://www.wincert.net/forum/index.php?showtopic=9785
-
[RELEASE] Boooggy's WMP 11 direct integration solution
ricktendo replied to boooggy's topic in Application Add-Ons
KB970158, KB970159 and KB971286 all versions in one package uploaded (link fixed) -
I was able to incorporate Microsoft Update Client into my standalone Windows Update Agent installer (need to see about adding the MU shortcut) http://www.ryanvm.net/forum/viewtopic.php?p=124970#124970
-
Sidebar.exe /RegServer There may be a reg entry you need to add also
-
Good job!