
balubeto
Established Members-
Posts
61 -
Joined
-
Last visited
Everything posted by balubeto
-
The EI.cfg and pid.txt files with the retail editions
balubeto posted a question in unattended installs
Hi Since the Windows Update 8.1 (Multiple Editions) MSDN iso includes the retail editions of the Core and Professional, how do I create the EI.cfg and pid.txt files to make sure that, during the installation, Windows will allow to choose which Retail edition install without requiring any serial number? Thanks Bye -
Hi How do I discover if, on my computer, I have the Retail or VL version of Windows 8.1 Update? Thanks Bye
-
Are you really sure that the Dism command mount and unmount the ISO images? Thanks Bye
-
Hi Using the command prompt (not Powershell) in Windows 8.1 update, how do I mount and unmount an ISO image? Thanks Bye
-
Hi Using the command prompt in Windows 8.1 update, how do I mount and unmount an ISO image? Thanks Bye
-
Creating an single ISO for Windows PE 5.1 32/64 bit
balubeto replied to balubeto's question in Microsoft Deployment Toolkit (MDT)
According to you, following the guide mentioned above with Windows ADK for Windows 8.1 Update, the version 5.1 of Windows PE is automatically created or not? Thanks Bye -
Inserting the serial number in an ISO
balubeto posted a question in Microsoft Deployment Toolkit (MDT)
Hi With MDT 2013, Windows ADK and the Windows 8.1 Update 64 bit (multiple editions) MSDN ISO, how do I create an ISO that allows no more insert the serial number of the Core edition during the its installation? Thanks Bye -
The CopyProfile and DisableFirstRunWizard statements not work
balubeto replied to balubeto's question in unattended installs
The problem is this: If I do not put the DisableFirstRunWizard statement, Windows copies the custom profile of the Administrator account in the default profile. Instead, if I put this statement, Windows does execute neither CopyProfile nor DisableFirstRunWizard statement. How come? So, how do I solve this? Thanks Bye -
No icon on taskbar and no link in Start menu for all users
balubeto posted a question in unattended installs
During the installation ofWindows 7 SP1, I wentimmediately in Audit mode. So, after Icustomized Windows removing the default icons and links from the taskbar and the Start menu,I wrote thisUnattend.xml file <?xml version='1.0' encoding='utf-8'?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="generalize" wasPassProcessed="true"> <component name="Microsoft-Windows-Security-Licensing-SLC" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SkipRearm>1</SkipRearm> </component> <component name="Microsoft-Windows-PnpSysprep" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"> <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls> </component> </settings> <settings pass="specialize" wasPassProcessed="true"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CopyProfile>true</CopyProfile> </component> </settings> </unattend> and I put it in the %WINDIR%\Panther directory. Then, I wrote the sysprep /generalize /oobe /reboot command in a Command Promptwindow. Now, I've noticed that new users still have the default icons and linkon the taskbar andthe Start menu. How come? How do I prevent this? Thanks Bye -
The CopyProfile and DisableFirstRunWizard statements not work
balubeto posted a question in unattended installs
Hi I have written this Unattend.xml file <?xml version='1.0' encoding='utf-8'?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="generalize" wasPassProcessed="true"> <component name="Microsoft-Windows-Security-Licensing-SLC" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="[url="http://schemas.microsoft.com/WMIConfig/2002/State"]http://schemas.microsoft.com/WMIConfig/2002/State[/url]" xmlns:xsi="[url="http://www.w3.org/2001/XMLSchema-instance"]http://www.w3.org/2001/XMLSchema-instance[/url]"> <SkipRearm>1</SkipRearm> </component> <component name="Microsoft-Windows-PnpSysprep" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"> <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls> </component> </settings> <settings pass="specialize" wasPassProcessed="true"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="[url="http://schemas.microsoft.com/WMIConfig/2002/State"]http://schemas.microsoft.com/WMIConfig/2002/State[/url]" xmlns:xsi="[url="http://www.w3.org/2001/XMLSchema-instance"]http://www.w3.org/2001/XMLSchema-instance[/url]"> <CopyProfile>true</CopyProfile> </component> <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="[url="http://schemas.microsoft.com/WMIConfig/2002/State"]http://schemas.microsoft.com/WMIConfig/2002/State[/url]" xmlns:xsi="[url="http://www.w3.org/2001/XMLSchema-instance"]http://www.w3.org/2001/XMLSchema-instance[/url]"> <DisableFirstRunWizard>true</DisableFirstRunWizard> </component> </settings> </unattend> saving it in the%WINDIR%\Panther directory. So, I wrote the sysprep /generalize /oobe /rebootcommand to switch from OOBE to Audit mode. I have noticed that my custom default profile has not been saved, and that the wizard of IE still there. In other words, the <CopyProfile>true</CopyProfile> and <DisableFirstRunWizard>true</DisableFirstRunWizard> instructions did not work. How come? Thanks Bye