Jump to content

balubeto

Member
  • Posts

    111
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Italy

Everything posted by balubeto

  1. Hi I am using Windows 8.1 Update and Windows ADK. Without using the ImageX command, how do I change the volume image flags values displayed with the Dism /Get-ImageInfo /ImageFile:"<WIM_File_Path>\<WIM_Name.wim" /Index:<Image_Index> command? Where are these values ​​stored? Thanks Bye
  2. Hi I am using Windows 8.1 Update and Windows ADK. How do I change the name and description of the volume images stored in a wim file without using the ImageX command? In other words, if I should change the name and description of 4 volume images contained in a wim file, as I should do to do this without using the ImageX command? Thanks Bye
  3. Hi I am using Windows 8.1 Update Enterprise 64 bit and Windows ADK. I noticed that, if I select the "Environment of the deployment tools and creations images" and I click on the "Run as Administrator" item of his Pop-Up menu and I mount on a iso image of windows 8.1 Update, when I run the command robocopy <Drive_Letter>:\"<Windows_Files_Path>" /e to copy all its files in a directory and the command dism /Mount-Image /ImageFile:"<Windows_Files_Path>"\install.wim /Index:<Image_Index> /MountDir:"<Mount_Directory_Path>" to mount an image volume, this error appears: Error: 0xc1510111Not have permission to mount and modify this image. However, if I copy these files through the "file explorer" window, the mounting of this volume image is working properly. How come? Thanks Bye
  4. I thought that, if I insert the ei.cfg file [Channel]Retail[VL]0 in the sources directory in my iso, I could choose the retail edition to install. That's right? Instead, how do I create the file Autounattend.xml to insert my two serial numbers that correspond to those of the Core and Professional? The DISM command mentioned above can be applied to each volume image stored in the file install.wim? If so, how do I do this? Thanks Bye
  5. Since the Windows Update 8.1 Update (Multiple Editions) MSDN iso includes the retail editions of the Core and Professional, how I should do to change this iso so that, during the installation, allow me to choose which edition to install? In addition, I would include in this iso my two serial numbers of installation (one for the Core and the other for the Professional) so that I should not insert any serial number during installation. So, what should I do to reach my goal? Thanks Bye
  6. Hi With Windows ADK, how do I create a single ISO that, at startup, allows to choose whether to run Windows PE 5.1 32 bit or 64 bit? Thanks Bye
  7. HI With Windows Search 4.0 for Windows 7, how do I insert a group of additional directories between the default directories to find this group of directories even if I will have to recreate a new index? THANKS BYE
  8. Excuse me, but, when I click on "new index", my additional directories disappear and only the default directory of the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search\CrawlScopeManager\Windows\SystemIndex\DefaultRules keys of the Windows registry are reintroduced. In other words, I might add, permanently, some additional directories to those keys. THANKS BYE
  9. HI How do, in Windows 7, I add a few directories (also belonging to a different partition from the system partition) to the default directories of Windows Search so that, when I create a new index, Windows 7 creates a new index with the default directories and my additional directories? THANKS BYE
  10. HI How do I completely delete the extra keys (in the Windows 7 registry) of the indexing system that indicate the directory that are no longer indexed or have been physically removed? THANKS BYE
  11. Poor little fellow , I care for your unfortunate situation, in which you do not get the answers you want, what a pity. [italian] L'erba voglio cresce soltanto nel giardino del Re [/italian] (the above translates roughly to "The grass "want" only grows in the King's garden") Yes, you can write them allright, if you LEARN how to. jaclaz Thus, someone can help me to write these commands? THANKS BYE
  12. Simple, I have not had the answer I wanted. Please, you I can write these Icacls commands? THANKS BYE
  13. HI In this image, I represented the system permissions of the C and D partitions: Using the Icacls command of Windows 7 Ultimate 64-bit, how do I change/add the permissions of the "Authenticated Users" user in the D:\ directory to coincide with those of the C:\ system directory? THANKS BYE
  14. HI I have the ISO images of Windows XP Pro SP3, Windows 7 32 bit, Windows 7 64 bit, custom Windows 7 32-64 bit and GParted 0.4.8.1. How do I make a boot USB stick so that I can choose whether to start the installation of a Windows system or start GParted? By chance, there is a complete guide to this? THANKS BYE
  15. HI Should I create a custom DVD of Windows 7 (all editions) to force the creation of three partitions: a boot partition, a system partition (C ) and a data partition (D) to automatically save the users directories in D:\Users\<Name-user-account>. The boot partition must be set to 100MB. Instead, the size of the other two partitions must be set directly by the person who will install Windows 7. So, how do I create this DVD? THANKS BYE
  16. HI Having Windows 7 Ultimate, how do I create the new Windows PE with all the utilities Microsoft? THANKS BYE
  17. HI How can I do to integrate the Enterprise edition in the edition Ultimate Retail to have, in a single DVD, all editions of Windows 7? THANKS BYE
  18. HI I wrote this RemovePending.vbs script used to delete multiple files at the end of a custom installation of Vista SP2 and, then, I inserted, in the SetupComplete.cmd file, the calls to this vbs script. Namely: Option Explicit Dim objFSO, objReg, objArgs Dim objFile, objFolder, objSubFolder Dim arrObjects, arrOldObjects, strKill Const HKEY_LOCAL_MACHINE = &H80000002 Set objFSO = CreateObject("Scripting.FileSystemObject") Set objArgs = Wscript.Arguments Set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\root\default:StdRegProv") objReg.GetMultiStringValue HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Control\Session Manager", "PendingFileRenameOperations", ArrOldObjects If isArray(arrOldObjects) Then strKill = Join(arrOldObjects, vbTab) If objArgs.Count = 0 Then Wscript.Echo "Script for scheduling files and folders for removal at next boot" & vbCrLf &_ "Syntax: RemovePending.vbs c:\folder" Wscript.Quit End If If objFSO.FolderExists(objArgs(0)) Then DeleteFolder objArgs(0) ElseIf objFSO.FileExists(objArgs(0)) Then KillObject(objArgs(0)) Else Wscript.Echo "Can't find path: " & objArgs(0) Wscript.Quit End If arrObjects = Split(strKill, vbTab) objReg.SetMultiStringValue HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Control\Session Manager", "PendingFileRenameOperations", ArrObjects If Err.number = 0 Then Wscript.Echo objArgs(0) & " was scheduled for removal at next boot." Else Wscript.Echo "Could not schedule object for removal" & vbCrLf & "Error: " & Err.Number & " " & Err.Description End If Private Sub DeleteFolder(strFolder) Set objFolder = objFSO.GetFolder(strFolder) For Each objSubFolder In objFolder.SubFolders DeleteFolder(objSubFolder.Path) Next For Each objFile In objFolder.Files objFSO.GetFile(objFile).Attributes = 0 KillObject objFile.Path Next objFSO.GetFolder(strFolder).Attributes = 0 KillObject strFolder End Sub Sub KillObject(strObject) If Len(strKill) > 0 Then strKill = strKill & vbTab strKill = strKill & "\??\" & strObject strKill = strKill & vbTab End Sub and, at the end of the SetupComplete.cmd file, I wrote: cscript %windir%\Setup\Scripts\RemovePending.vbs %windir%\Setup\Scripts cscript %windir%\Setup\Scripts\RemovePending.vbs %windir%\setupact.log cscript %windir%\Setup\Scripts\RemovePending.vbs %windir%\Logs\DPX\setupact.log cscript %windir%\Setup\Scripts\RemovePending.vbs %windir%\Panther\setupact.log cscript %windir%\Setup\Scripts\RemovePending.vbs %windir%\Panther\UnattendGC\setupact.log cscript %windir%\Setup\Scripts\RemovePending.vbs %windir%\setuperr.log cscript %windir%\Setup\Scripts\RemovePending.vbs %windir%\Logs\DPX\setuperr.log cscript %windir%\Setup\Scripts\RemovePending.vbs %windir%\Panther\setuperr.log cscript %windir%\Setup\Scripts\RemovePending.vbs %windir%\Panther\UnattendGC\setuperr.log shutdown /r /t 30 I noticed, however, that some files not are deleted as the %windir%\setupact.log and %windir%\setuperr.log files and the %windir%\Setup\Scripts directory. Why? P.S: If, however, having finished the installation, I write one of the following commands (%windir%\Setup\Scripts\RemovePending.vbs %windir%\setupact.log or %windir%\Setup\Scripts\RemovePending.vbs %windir%\setuperr.log or %windir%\Setup\Scripts\RemovePending.vbs %windir%\Setup\Scripts )from the command prompt of the administrator, the next time that I restart Vista, these objects are removed as scheduled. THANKS BYE
  19. How do I update this Windows AIK to RTM version? THANKS BYE
  20. However, this Windows AIK works correctly also on Vista SP2? THANKS BYE
  21. I noticed, however, that in "System Requirements" section of this page, there is no written "Vista SP2" but only "Vista SP1". Why? THANKS BYE
  22. Use: net use /? to obtain help. Please try to be more helpful. This is an example of my use of this command: net use z: \\server\share Password /user:UserName Full documentation here: http://technet.microsoft.com/en-us/library/bb490717.aspx Then, in a LAN without a domain, should I write: net use Letter:\\Server\Shared-Directory password-user /user:\\Server\Username Instead, in a LAN with domain, should I write: net use Letter:\\Server\Shared-Directory password-user /user:Domain-name\Username Right? THANKS BYE
  23. HI Where is Windows AIK for Vista SP2? THANKS BYE
  24. HI I have a computer with Vista Ultimate SP2 with a shared network folder protected by Login (Username and Password). With a CD of Windows PE, inserted in an another computer on the LAN, I would succeed, with a single command, to access the shared network folder placed on another computer. So how do I do this? THANKS BYE
  25. HI I have a list of users stored on a partition of a hard disk in the form \Users\<account-name> with their data. How do I create a custom installation of Vista SP1 that, by analyzing this list of directories, automatically creates all the accounts of this list? THANKS BYE
×
×
  • Create New...