Jump to content

jfmartel

Member
  • Posts

    195
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Canada

Posts posted by jfmartel

  1. Hi, I'm currently trying to integrate in the boom.wim image the appropriate driver for a new Lenovo M90 (desktop PC) without any success. Tried the 15.5 (latest) driver and now and going to try 12.2 and now the 12.1.1 and maybe more...

    Is there anyone that been successfull with the driver. When my LiteTouch process is starting is says that it couldn't find the share and driver for peripheral PCI\VEN_8086&DEV_10EF&SUBSYS_305917AA&REV_06 was not installed.

    Thank you

  2. Hi, is there a way to keep the current autoplay (which ask the user that to do when you insert a removable media) but to disable the action related to the autorun.inf.

    The autoplay thing isnt that bad because you can easily open the explorer when you insert a flash drive rather than opening "my computer" when you wan to access it. I'd like also to disable the autorun.inf in case a user want to browse from "my computer" and avoid to be infected with all those flash drive viruses.

    I've been reading a lot today on this subjet and I tried many registry tweak or gpo settings but in all case, the autoplay feature was disabled too.

    Thanks

  3. Hello, I've been using WDS to deploy Windows Vista for a couple month now. These last days I received some new laptop I have to add to my new installation template.

    I am using WDS to deploy unattended Vista installation. I'm not pushing images to workstation.

    So all my drivers are specified in the section: Microsoft-Windows-PnpCustomizationsNonWinPE\DriverPaths

    Each kind of driver has a seperate line.

    Everything is installing correctly, except on some model (right now a Dell E6500) for the video card that stays on VGA Generic Driver.

    When looking at the setup log it says for the video driver

    "[That driver inf file] is not a boot critical driver" and it stays like that.

    Anyone having the same issue?

    Thanks

  4. I think you refering to text mode drivers. Drivers which run at the blue screen stage(partition & copy down installation files) before you see any Xp installtion screens..?

    have you tired Roguespears text mode drivers for RIS..? Just overwrite exisitng files in i386 directory & try.

    http://www.doitrightconsulting.net/forum/viewtopic.php?t=315

    Thanks for the link.

    I usually prefer using retail driver on my system. Nothing again Rogue's work, but I like to make my own stuff :D

    JF

  5. Delete the stuff they talk in their KB and it should work. My files are over 4k on my server too.

    I do beleive what whould be under 4k is the section related to what you should delete.

    If you look at your driver file, you'll have a section for a large amount of language. In my case, since my server are english but my client are french, I only deleted the part in french and english and it worked.

    Good luck!

  6. Hello, I'd like to create a script that drops a file in the startup dir of each profile located on the computer.

    So far it's working pretty good, except for the profile that has space in its name. Exemple: Default User

    Here is what I got so far:

    REM Drops all profile name in a temporary file

    dir "%_rootProfile%" /a:d /b > %SystemDrive%\_Profile.txt

    REM Read the file, line by line, then verifies if if "ALL USERS", in that case we do nothing. Then verifies if Profile name is valid (We don't want to drop in System Dir: Exemple: NetworkService). If the 2 condition are ok, drops the scripts in the startup dir.

    for /f %%f in (c:\_Profile.txt) do (

    if not %%f=="All Users" (

    if exist "%_rootProfile%\%%f\%_startupDir%" (

    COPY "%_AppPath%\SetOfficeName.vbs" "%_rootProfile%\%%f\%_startupDir%")))

    Works great except when %%f = Default instead of "Default User"

    Any help is appreciated.

    Thanks

  7. Alright guys, over the few years I've worked on RIS, Intel network driver have been always an issue. Each new card was a pain in the *%($/ to get working.

    Finally, Microsoft have release a KB that tells you how to modify their driver to work with RIS.

    KB923831

    I was sceptical at first but I can tell you from what I saw so far that it fixed my problem.

    The brand new IBM X61 i reiceved (use 82566 Nic) is now working with my server.

    I really hope this helps you as much as it helped me. Took me 2 days to get that :D

    JF

  8. I had the same problem on my setup.

    Basically, you need 2 XML file. One should be the unattend Vista one, and the other one should be for the "boot". Just like the blue screen with RIS.

    That one should be linked inside the "Client" tab inside the properties of your main. Look under your MMC in WDS, right-click your server and go in properties.

    There link a XML file in the x86 architecture. Inside that file you should put all the WinPE config.

    For example mine include the language (I use french in my case) and this is where i delete the partition where i want to install Vista.

    x86-Microsoft-Windows-International-Core-WinPE-Neutral

    SetupUILanguage

    x86-Microsoft-Windows-Setup-Neutral

    DiskConfiguration

    WindowsDeployementService

    Good luck.

    Once this work, you should be able to smile a little before the week-end :D

  9. Ok here is my unattended file

    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <servicing></servicing>
    <settings pass="specialize">
    <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>TEST</ComputerName>
    <RegisteredOrganization>%MACHINEDOMAIN%</RegisteredOrganization>
    <RegisteredOwner>John Doe</RegisteredOwner>
    <TimeZone>US Eastern Standard Time</TimeZone>
    <StartPanelOff>false</StartPanelOff>
    <ProductKey></ProductKey>
    </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>
    <Credentials>
    <Domain>domaine</Domain>
    <Password>admin</Password>
    <Username>Administrator</Username>
    </Credentials>
    <JoinDomain>Domain</JoinDomain>
    <UnsecureJoin>false</UnsecureJoin>
    <DebugJoin>false</DebugJoin>
    </Identification>
    </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">
    <SystemLocale>fr-CA</SystemLocale>
    <UILanguage>fr-CA</UILanguage>
    <UILanguageFallback>fr-FR</UILanguageFallback>
    <UserLocale>fr-CA</UserLocale>
    <InputLocale>0c0c:00001009</InputLocale>
    </component>
    <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">
    <StartPages>
    <StartPage wcm:action="add">
    <StartPageKey>FSE</StartPageKey>
    <StartPageUrl>www.google.ca</StartPageUrl>
    </StartPage>
    </StartPages>
    </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>
    </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">
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <SkipMachineOOBE>true</SkipMachineOOBE>
    <SkipUserOOBE>true</SkipUserOOBE>
    <NetworkLocation>Work</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    </OOBE>
    <UserAccounts>
    <AdministratorPassword>
    <Value></Value>
    <PlainText>false</PlainText>
    </AdministratorPassword>
    </UserAccounts>
    <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
    <TimeZone>Eastern Standard Time</TimeZone>
    <AutoLogon>
    <Password>
    <Value>Value>
    <PlainText>false</PlainText>
    </Password>
    <Domain>domaine</Domain>
    <Enabled>true</Enabled>
    <LogonCount>1</LogonCount>
    <Username>WDS_Autologon</Username>
    </AutoLogon>
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <Order>10</Order>
    <CommandLine>\\server.domain.dom\REMINST\Addons\Script\cleanup.cmd</CommandLine>
    <Description>Registry tweak</Description>
    </SynchronousCommand>
    </FirstLogonCommands>
    </component>
    </settings>
    <settings pass="offlineServicing">
    <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" 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">
    <DriverPaths>
    <PathAndCredentials wcm:action="add" wcm:keyValue="1">
    <Credentials>
    <Domain>domaine.dom</Domain>
    <Password>admin</Password>
    <Username>administrator</Username>
    </Credentials>
    <Path>\\server.domain.dom\REMINST\Drivers\Net</Path>
    </PathAndCredentials>
    </DriverPaths>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:d:/vista_business.wim#Windows Vista BUSINESS" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

    This is what's inside my batch file

    set _AppPath=\\server.domaine.dom\REMINST\Addons
    Set _defaultuser=%PUBLIC%\..\Default

    REG LOAD HKLM\User "%_defaultuser%\NTUSER.DAT"
    regedit /s "%_AppPath%\Registry\regtweaks.reg"
    REG UNLOAD HKLM\User

    shutdown.exe -r -f -t 40 -c "Windows Vista will reboot"

  10. Hello, is there a way to temporary disable the UAC from popping authorization.

    I am running an unattended batch file on my first logon (Im logging with a domain account, that has local administrator rights).

    That batch files performs stuff like importing registry tweak and other stuff and need admin rights (even if Im logged with an admin account)

    If it's impossible, is there another way to do that?

    Thanks

  11. Hello, I finally managed to get a semi working build for my mass Vista deployment.

    I still have a couple bug which I don't know how to solve (read the doc but couldnt solve).

    1) It still ask me, in that language I want to use in my setup.

    2) Still ask me about the disk where I want to install.

    3) Doesn't join the domain. Network drivers are installed.

    Here is my file:

    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <servicing></servicing>
    <settings pass="specialize">
    <component name="Microsoft-Windows-Shell-Setup" >
    <ComputerName>TEST</ComputerName>
    <RegisteredOrganization>Domaine TEST</RegisteredOrganization>
    <RegisteredOwner>John Doe</RegisteredOwner>
    <TimeZone>US Eastern Standard Time</TimeZone>
    <StartPanelOff>false</StartPanelOff>
    <ProductKey>SOME-KEY-ARE</ProductKey>
    </component>
    <component name="Microsoft-Windows-UnattendedJoin" >
    <Identification>
    <Credentials>
    <Domain>domain.dom</Domain>
    <Password>adminpass</Password>
    <Username>administrator</Username>
    </Credentials>
    <JoinDomain>domaine.dom</JoinDomain>
    <UnsecureJoin>false</UnsecureJoin>
    <MachineObjectOU></MachineObjectOU>
    <DebugJoin>false</DebugJoin>
    </Identification>
    </component>
    <component name="Microsoft-Windows-International-Core" >
    <SystemLocale>fr-CA</SystemLocale>
    <UILanguage>fr-CA</UILanguage>
    <UILanguageFallback>fr-CA</UILanguageFallback>
    <UserLocale>fr-CA</UserLocale>
    <InputLocale>0c0c:00001009</InputLocale>
    </component>
    </settings>
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup">
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <SkipMachineOOBE>true</SkipMachineOOBE>
    <SkipUserOOBE>true</SkipUserOOBE>
    <NetworkLocation>Work</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    </OOBE>
    <UserAccounts>
    <AdministratorPassword>
    <Value>Encrypted_VALUE</Value>
    <PlainText>false</PlainText>
    </AdministratorPassword>
    <DomainAccounts>
    <DomainAccountList wcm:action="add">
    <Domain>domaine.dom</Domain>
    <DomainAccount wcm:action="add">
    <Group>Administrators</Group>
    <Name>Domain Admins</Name>
    </DomainAccount>
    </DomainAccountList>
    </DomainAccounts>
    </UserAccounts>
    </component>
    <component name="Microsoft-Windows-International-Core">
    <InputLocale>0c0c:00001009</InputLocale>
    <SystemLocale>fr-CA</SystemLocale>
    <UILanguage>fr-CA</UILanguage>
    <UserLocale>fr-CA</UserLocale>
    <UILanguageFallback>fr-CA</UILanguageFallback>
    </component>
    </settings>
    <settings pass="offlineServicing">
    <component name="Microsoft-Windows-PnpCustomizationsNonWinPE">
    <DriverPaths>
    <PathAndCredentials wcm:action="add" wcm:keyValue="1">
    <Credentials>
    <Domain>domaine</Domain>
    <Password>admin</Password>
    <Username>administrator</Username>
    </Credentials>
    <Path>\\server.domaine.dom\REMINST\Drivers\Net</Path>
    </PathAndCredentials>
    </DriverPaths>
    </component>
    </settings>
    <settings pass="windowsPE">
    <component name="Microsoft-Windows-Setup" processorArchitecture="x86" >
    <DiskConfiguration>
    <WillShowUI>OnError</WillShowUI>
    <Disk wcm:action="add">
    <WillWipeDisk>true</WillWipeDisk>
    <DiskID>0</DiskID>
    <CreatePartitions>
    <CreatePartition wcm:action="add">
    <Order>1</Order>
    <Extend>true</Extend>
    <Type>Primary</Type>
    </CreatePartition>
    </CreatePartitions>
    <ModifyPartitions>
    <ModifyPartition wcm:action="add">
    <Active>true</Active>
    <Extend>false</Extend>
    <Format>NTFS</Format>
    <Letter>C</Letter>
    <Order>1</Order>
    <PartitionID>1</PartitionID>
    </ModifyPartition>
    </ModifyPartitions>
    </Disk>
    </DiskConfiguration>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:d:/vista_business.wim#Windows Vista BUSINESS"/>
    </unattend>

    Any help is greatly appreciated.

    THANKS!

  12. Hi everyone, I am searching, exploring on this for a while now but I still haven't found any clear answer on this.

    Right now my deployment are done with RIS. I dont use RIPrep, I am working with SIF file and I am very pleased the way it works. I just would like to know what is now the replacement for this.

    Please be specific in your answer. I tried BDD and WDS but I don't know where to starts and Microsoft docs is not very clear. I tried a couple guide I found but still can't make it work the way I want. I usually think Microsoft docs is good, but on those products is just getting more confusing each time I read. There is SO MANY file to check and so many scenario.

    Any advices is more than welcome.

    Thanks

×
×
  • Create New...