-
Posts
600 -
Joined
-
Last visited
-
Days Won
10
Content Type
Profiles
Forums
Events
Everything posted by myselfidem
-
Inside tips.js about:function qdh(t,d,s) On line 49: function qdh(t,d,s){ position="main.js"; whatfunc="qdh()";We can change to (position): function qdh(t,d,s){ position="tips.js"; whatfunc="qdh()";Inside optionswizardtemplate_window.htm (values inside api.js) Errors on lines 199 and 200: <option value="12802">1280x768</option><option value="12803">1280x800</option>Change to: <option value="12803">1280x768</option> <option value="12804">1280x800</option>Thanks and regards
-
[Not solved but closed] Error code 999
myselfidem replied to Thiersee's topic in Windows Post-Install Wizard (WPI)
Could you paste your config.js file, please? Check the quotations inside your command! Cheers -
Create your own Autounattend.xml All-In-One (x86/amd64)
myselfidem replied to myselfidem's topic in Microsoft Windows 7
There are two methods for customizing disks and partitions with Autounattend.xml file: First using the sting and value to display the wizard and customize manually disks and partitions: <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration>Second do not display the wizard with stings and values already set:Example: <DiskConfiguration> <WillShowUI>OnError</WillShowUI> <Disk wcm:action="add"> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>1</Order> <Type>Primary</Type> <Size>100</Size> </CreatePartition> <CreatePartition wcm:action="add"> <Order>2</Order> <Size>10000</Size> <Type>Primary</Type> </CreatePartition> <CreatePartition wcm:action="add"> <Order>3</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Order>1</Order> <PartitionID>1</PartitionID> <Label>System</Label> <Format>NTFS</Format> <Active>true</Active> </ModifyPartition> <ModifyPartition wcm:action="add"> <Order>2</Order> <PartitionID>2</PartitionID> <Letter>C</Letter> <Label>SEVEN</Label> <Format>NTFS</Format> </ModifyPartition> <ModifyPartition wcm:action="add"> <Order>3</Order> <Format>NTFS</Format> <PartitionID>3</PartitionID> <Label>DATA</Label> <Letter>D</Letter> </ModifyPartition> </ModifyPartitions> </Disk> </DiskConfiguration>We can't merge the two methods or strings! -
Sehr gut! I always use my Autounattend.xml file with this option on my computer with multiboot OS (XP and Windows 7)! We can create also partitions and wipe the partition where we want install Windows 7. Grusse
-
No. Using the option wipe disk the full disk with all partitions will be wiped! But, we can keep the choice using Autounattend.xml file with: <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration>Like this we can only wipe the partition(s) needed! Cheers
-
[Closed] "Strange" issue integrating network driver.
myselfidem replied to Thiersee's topic in Win Toolkit
Yes, this happen also for me and if I install drivers for my computer, I disable the windows driver updates! Regards -
[Closed] "Strange" issue integrating network driver.
myselfidem replied to Thiersee's topic in Win Toolkit
You're so right! :dancing: -
[Addon] Java Runtime Environment 6.0 / 7.0 x86/x64
myselfidem replied to user_hidden's topic in SVCPACK Addons
Yes, you're right user_hidden, we can read on the same link above: Thanks and regards -
Notepad 2 mod 4.2.25.856 released! Thanks and regards
-
[Addon] Java Runtime Environment 6.0 / 7.0 x86/x64
myselfidem replied to user_hidden's topic in SVCPACK Addons
About java version 32 and 64 bit: FAQ: http://www.java.com/en/download/faq/java_win64bit.xml Regards -
Strange, because downloading French 'AdbeRdrLite11003_fr_FR.msi' works fine for me using IE! Thanks to Rick for adding French version
- 215 replies
-
- repack
- adobe reader
-
(and 1 more)
Tagged with:
-
Using Variable in config.js
myselfidem replied to gillesg's topic in Windows Post-Install Wizard (WPI)
@Kels Maybe you can distribute a corporate version and a public version: two separate versions? Regards -
Using Variable in config.js
myselfidem replied to gillesg's topic in Windows Post-Install Wizard (WPI)
Thanks, but I mean more code is needed and I'm not a coder and it's needed time to do ! Regards -
Using the value: true or false inside Autounattend.xml file and integrating activation files, the result is the same: 3 days remaining time to activate Windows! I think it is a limitation of VM Image VirtualBox Cheers and regards
-
No, there is no trouble! Using Oracle VM VirtualBox we can see: Remaining 3 days before activation (Tokens.dat and pkeyconfig.xrm-ms integrated) . But if I use Windows Updates, all updates are installed and Windows is already activated! Regards
-
Using Variable in config.js
myselfidem replied to gillesg's topic in Windows Post-Install Wizard (WPI)
Thank you for sharing. But the method seems complicated for an automated method for the user! However, the idea is interesting and deserves to be improved Regards -
[Slim] .NET Framework 4 Full x86/x64 (1-10-2016)
myselfidem replied to ricktendo's topic in Installer Repacks
Many thanks! Works fine. -
Using Variable in config.js
myselfidem replied to gillesg's topic in Windows Post-Install Wizard (WPI)
Could you share your example working? It seems a new function is needed to create a variable with WPI. -
Moi aussi mooms ! Merci d'avance.
-
[Slim] .NET Framework 4 Full x86/x64 (1-10-2016)
myselfidem replied to ricktendo's topic in Installer Repacks
Thanks Rick, I was thinking that the kb971891 was already integrated, and I use dotNET4sfxNoGUI according to your recommendations above (extracted inside the same directory) and works fine for me! Regards -
[Slim] .NET Framework 4 Full x86/x64 (1-10-2016)
myselfidem replied to ricktendo's topic in Installer Repacks
If we want add a Slim Language Pack inside Slim Microsoft .NET Framework 4.0 Full x86/x64, it seems we don't need now to add kb971891 for dotNET4 & LP installers using: Slim down your dotNET4(.5) & LP installers: http://adf.ly/1713566/msislim (msi.vbs.slimmers) Also, inside netfx4+lp_slim.vbs we can read: Thanks and regards -
Can't find correct usage for IF EXISTS
myselfidem replied to gillesg's topic in Windows Post-Install Wizard (WPI)
... -
Can't find correct usage for IF EXISTS
myselfidem replied to gillesg's topic in Windows Post-Install Wizard (WPI)
Thanks. Cheers and regards -
[AIO] Microsoft Visual B/C++/F#/J# Redistributable x86/x64
myselfidem replied to ricktendo's topic in Installer Repacks
Many thanks Rick for this update! -
Upload your logs files, using only WinToolkit, to see errors! You can also try to use bluescreenview.