Jump to content

Sereby

Member
  • Posts

    187
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Germany

Everything posted by Sereby

  1. Hi there is a little bug when i INTEGRATE IE7 into the XP source: Normally there should be 4 Checkboxes. The Checkbox for Displaying the Internet Explorer Icon on the Desktop is just missing! If i INSTALL IE7 on a fresh XP, the Checkbox is still there. I know that this dialog is in shell32.dll file which isnt touched by IE7. So it must be a registry entrie which is added by a .dll or .ocx file or so but which file of ie7 adds this reg entries and which reg entrie let show this checkbox? I know how to enable the Desktop Icon with the registry but i would like to add a fix for this into my Internet Explorer 7 Addon ^^ Hope all did undertsand this and more i hope anybody can help me ^^ Sereby
  2. New version 8.1.1 available is it possible that you update the german extreme version ^^? edit: **** i should read before i post o.o i just saw that a new version is available here: http://www.computerbase.de/downloads/softw...e/adobe_reader/ but dont saw thats just for linux in 8.1.1
  3. as far as i know its impossible in vista to change the win directory
  4. 1. yes i'm sure that etfsboot.com is right because i make my vista dvds every time with this boot sector file 2. because mkisofs need the boot loader file in the destination folder.. whyever 3. because mkisofs need that 4. its working fine with other tool and same bootloader file
  5. he has only that image in the install.wim.. if you have an untouched dvd then its the value 4
  6. i know that i can use oscdimg or cdimage.. but is it in anyway possible to create it with mkisofs?
  7. how to manage that? i tryed it with the following command but its not working! mkisofs.exe -volid "Test" -udf -allow-multidot -relaxed-filenames -allow-leading-dots -N -l -d -D -joliet-long -duplicates-once -no-emul-boot -boot-load-size 4 -b boot/etfsboot.com -hide boot/etfsboot.com -hide boot.catalog -o "F:\test.iso" "F:\Betriebssysteme\Windows Vista\vistafinalde" the bootfile is already on the dvd in the boot folder
  8. Hi, i need a bit help from you guys and girls! the problem is the following: when i create a iso file with a .bat file with one of this commands its working fine! the dos window is filles with text and it creates the iso file. oscdimg.exe -n -b"F:\Betriebssysteme\Windows Vista\vistafinalde\boot\etfsboot.com" "F:\Betriebssysteme\Windows Vista\vistafinalde" "F:\test.iso" -lVISTAISOLABEL -o -m "C:\CDIMAGE.EXE" -l"VISTAISOLABEL" -h -j1 -b"F:\Betriebssysteme\Windows Vista\vistafinalde\boot\etfsboot.com" -x -o -m "F:\Betriebssysteme\Windows Vista\vistafinalde" "F:\test.iso" when i run this code in VB.NET via shell command its working, too! But when i try to read the output with the following code the output windows is empty so i cannot read out the % number. Dim Anwendung As System.Diagnostics.Process = New System.Diagnostics.Process() With Anwendung.StartInfo .FileName = """" & Application.StartupPath & "\Bin\oscdimg.exe""" If C0060.Checked = True Then .Arguments = "-n -b""" & willkommen.SourcePaths.SelectedItem & "\boot\etfsboot.com"" """ & willkommen.SourcePaths.SelectedItem & """ """ & TextBox2.Text & """ -l" & TextBox1.Text & " -o -m" Else .Arguments = "-n -b""" & willkommen.SourcePaths.SelectedItem & "\boot\etfsboot.com"" """ & willkommen.SourcePaths.SelectedItem & """ """ & TextBox2.Text & """ -lVISTAISOLABEL -o -m" End If .CreateNoWindow = False .RedirectStandardInput = True .RedirectStandardOutput = True .RedirectStandardError = True .UseShellExecute = False End With Anwendung.Start() the same with CDIMAGE.EXE! but i need to read out the % number because i want to update a progressbar until the iso will be created! please help me Sereby
  9. if you want it firegeier.. here my complete xml file <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing></servicing> <settings pass="specialize"> <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <FavoritesDelete>true</FavoritesDelete> <IEWelcomeMsg>false</IEWelcomeMsg> <Home_Page>about:blank</Home_Page> <UserAgent></UserAgent> <Window_Title_CN></Window_Title_CN> <PlaySound>false</PlaySound> </component> <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <InputLocale>0407:00000407</InputLocale> <SystemLocale>de-DE</SystemLocale> <UILanguage>de-DE</UILanguage> <UserLocale>de-DE</UserLocale> </component> <component name="Microsoft-Windows-SystemRestore-Main" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DisableSR>1</DisableSR> </component> <component name="Security-Malware-Windows-Defender" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DisableAntiSpyware>true</DisableAntiSpyware> </component> <component name="Microsoft-Windows-Security-Licensing-SLC-UX" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SkipAutoActivation>true</SkipAutoActivation> </component> <component name="Microsoft-Windows-Deployment" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <RunSynchronous> <RunSynchronousCommand wcm:action="add"> <Description>Disable UAC</Description> <Order>1</Order> <Path>cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f</Path> </RunSynchronousCommand> </RunSynchronous> </component> <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Identification> <JoinWorkgroup>MSHEIMNETZ</JoinWorkgroup> </Identification> </component> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ComputerName>Patrick-Rechner</ComputerName> <RegisteredOrganization>Sereby Corporation</RegisteredOrganization> <RegisteredOwner>Sereby</RegisteredOwner> <ShowWindowsLive>false</ShowWindowsLive> <TimeZone>W. Europe Standard Time</TimeZone> <StartPanelOff>true</StartPanelOff> <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled> </component> <component name="Microsoft-Windows-Printing-Spooler-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <RemoveMXDW>1</RemoveMXDW> </component> <component name="Microsoft-Windows-SQMApi" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CEIPEnabled>0</CEIPEnabled> </component> </settings> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SetupUILanguage> <UILanguage>de-DE</UILanguage> </SetupUILanguage> <InputLocale>0407:00000407</InputLocale> <SystemLocale>de-DE</SystemLocale> <UILanguage>de-DE</UILanguage> <UserLocale>de-DE</UserLocale> </component> <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1280</HorizontalResolution> <RefreshRate>85</RefreshRate> <VerticalResolution>960</VerticalResolution> </Display> <UserData> <ProductKey> <Key>not for you :)Key> <WillShowUI>OnError</WillShowUI> </ProductKey> <AcceptEula>true</AcceptEula> <FullName>Sereby</FullName> <Organization>Sereby Corporation</Organization> </UserData> <Restart>Restart</Restart> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Display> <ColorDepth>32</ColorDepth> <RefreshRate>85</RefreshRate> <HorizontalResolution>1280</HorizontalResolution> <VerticalResolution>960</VerticalResolution> </Display> <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <Themes> <DefaultThemesOff>false</DefaultThemesOff> </Themes> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <DisplayName>Sereby</DisplayName> <Name>Sereby</Name> <Group>Administrators</Group> </LocalAccount> </LocalAccounts> </UserAccounts> <VisualEffects> <FontSmoothing>On</FontSmoothing> </VisualEffects> <WindowsFeatures> <ShowInternetExplorer>true</ShowInternetExplorer> <ShowMediaCenter>false</ShowMediaCenter> <ShowWindowsMediaPlayer>true</ShowWindowsMediaPlayer> </WindowsFeatures> </component> </settings> <settings pass="generalize"> <component name="Microsoft-Windows-Security-Licensing-SLC" processorArchitecture="x86" 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> </settings> <cpi:offlineImage cpi:source="wim:F:/Betriebssysteme/Windows%20Vista/vistafinalde/sources/install.wim#Windows Vista ULTIMATE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>
  10. i use this code in the oobeSystem part <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <DisplayName>Sereby</DisplayName> <Name>Sereby</Name> <Group>Administrators</Group> </LocalAccount> </LocalAccounts> </UserAccounts> the only thing is that it asks at first logon for a new pwd! does anybody know what to change there that it dont ask for a new one?
  11. i'm planning to make a vista updatepack and all works great but that sfc dosnt say anything about wrong signatures i have to install the new .manifest files wich are within the hotfixes! for example a fix for ehrecobj.dll has the following manifest files in it: msil_ehrecobj_31bf3856ad364e35_6.0.6000.20485_none_8933309d6466bb01.manifest msil_ehrecobj.d_31bf3856ad364e35_6.0.6000.20485_none_c13906445879f6b1.manifest the last one has this content: <?xml version="1.0" encoding="utf-8"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v3" manifestVersion="1.0"> <assemblyIdentity name="ehRecObj.$D" version="6.0.6000.20485" processorArchitecture="msil" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" versionScope="nonSxS" /> <deployment /> <dependency discoverable="false"> <dependentAssembly dependencyType="install"> <assemblyIdentity name="ehRecObj" version="6.0.6000.20485" processorArchitecture="msil" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" versionScope="nonSxS" /> </dependentAssembly> </dependency> </assembly> this line is the best: <dependentAssembly dependencyType="install"> but how do i do that? howdo i run the manifest so that it installs the new one? hope you understand and can help me with that! Sereby
  12. i'm already working on a updatepack gui is almost finished so just wait
  13. lol you again.. could it be that you ahve anything against me? I only know from 2 type-errors and they are fixed.. your example was never in the lang file. If there would be really hundret or million of misspellings then say them and dont lie just because you don't like me
  14. ok ok.. little thing with big reaction ^^ http://www.msfn.org/board/index.php?showto...st&p=595179 Problem solved
  15. oscdimg -n -b"etfsboot.com" "F:\Betriebssysteme\Windows Vista\Unattended\Windows Vista RC2" "F:\Betriebssysteme\Windows Vista\Unattended\RC2.ISO" -o -m because with the vlite created iso it was bootable but after pressing any key it gave me some errors
  16. 1.Used german rc2 waik -> Working with all .wim 2. Used german rtm waik -> Working with all .wim 3. Used vlite 0.5 to create a slimemd down version (removed all) and created iso-> not worked.. 4. re-maked iso by myself with cdimage->worked 5. installed vista until the 2nd restart -> aborted and sayed that it couldnt install one or more components -> reset button pressed 6. tryed imagex-> nothing works.. 7. re-formated windows xp (C:)-> not working 8. installed vista on another partition (D:) -> still not working (but i can install vista) 9. formated other drives-> still not working until today its not working
  17. i used the normal german rtm waik since i used vlite 0.5 and tryed an installation which aborted with an error its no longer working. before that it worked great
  18. as i sayed in my first post.. yes i use rtm waik.. and as i sayed in my first post too.. its with every .wim file so final rc2 and rc1 and so on
  19. as i saied.. i have this everywhere.. within vista with admin account enabled withing xp fresh installed and so on.. all i tryed didnt worked
  20. hi as the topic says: i cannot longer mount any images! it says every time that the access is denies (like it would to if i mound a image and mount again) but the thing is i already formated today my windows partition my testwindows partition and my last partition C,D and F E not because there are all my programms and other infos stored which have to be saved first but what can i do now? i want to mount images I'm using the latest waik and this occures with EVERY .WIM file! Sereby
  21. Deutsch: ja habe ich 100x gemacht bis ich hier gelesen habe dass der filter in xp drin is also hab ich mal xp cd source angegeben und schwupp hat er ihn installiert! muss nurnoch neustarten english: *FUNZONE* learn german o.o better for me to translate *FONZONE-END* i tryed that 100x until i read here that this filter is installed with xp so i selected the xp source cd and it installed the filter! now i just have to reboot
×
×
  • Create New...