Jump to content

redfive19

Member
  • Posts

    97
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by redfive19

  1. Has anyone been able to get drivers to integrate using MDT 2010? No matter what, it seems the drivers never get injected since after deployment, the video drivers are not there. Can someone point me in the right direction?
  2. I've been told that there is no way to skip it on the Professional version of Windows 7, only Enterprise (which is not in the RC!).
  3. Hi all, I've been trying to remove the Pre-Boot Authentication client that PointSec Full disk encryption installs. Basically, here's what I've done: Unlocked the drive using the procedure given to us by PointSec (I have full read/write access to the drive) Boot into WinPE 2.0 Wipe the drive using DISKPART clean all Apply the new image using Imagex When I reboot, I'm still prompted with the PBA (PointSec). I've tried using GDISK32 to zero out the drive as well. The vendor is saying that FIXBOOT will work but FIXBOOT isn't in PE 2.0. This is an automated process that needs to stay in PE 2.0. Any ideas guys?!? Thanks! -redfive
  4. format d: /FS:NTFS /v:Data /q /y You can guarantee the existence of D: if you use DISKPART prior to installing XP. I believe physical drives/partitions take letter precedence over DVD-ROM drives etc. Are you saying that D: will not always exist on every box you roll this out on? If that's the case, you can copy over a small dummy file (say source.txt) to the root of D: and have a batch file do a search in the root directories of all drives for existence of this dummy file. There's an example in the unattended guide for how to set the variable for the CD-ROM with this method. http://unattended.msfn.org/unattended.xp/view/web/59/
  5. Well, by your example, you would have to first format the partition. You should consider booting to a BartPE disk and running DISKPART (or scripting it). DISKPART can create all of your partitions and assign drive letters (even though these drive letters won't always be the same). You can also format these partitions in Bart PE. After that, you can pretty much run a regedit /s mydocs.reg (or whatever your reg file name is) from commandlines.txt You could also format the 2nd partition (after creating the drive letter in DISKPART) via the commandlines.txt.
  6. No you cannot BUT what you can do is create a batch file or VBS script to accomplish this and call it from commandlines.txt. Hope this helps.
  7. My $0.02... I'm a systems engineer for a large financial firm in the New York metro area and we're not upgrading to Vista till at least the first SP. Personally, I am not excited about Vista. It's pretty and all but in a lot of the early reviews I've read that games don't run any faster on it than on XP (I'm a gamer at home). Sometimes they even run slower. I am lucky enough that my system at home meets most of the req's but I would rather wait till all drivers and apps I use are finalized and working on Vista. Moreover, I am not completely gaga over the new features although the gadget bar is nice.
  8. Well looking at his screenshot, I can tell you that it will be different for every user who tries it. Reason is, the first part of the SAM ID (forgot the technical name for it) "S-1-5-18" is gonna be different. Definately makes this trickier. You should instead of using RegMon try RegShot to take snapshots before and after. Sometimes these keys are moved to a more permanent location.
  9. Here's the dirty way of doing it. You can have AutoIt write all of the values to the registry without using absolute paths. I'd love to do this for you but it'd take too long. RunWait('7z442.exe /S') sleep(200) Run(@ProgramFilesDir & '\7-Zip\7zFM.exe') WinWait('7-Zip File Manager', '') WinActivate('7-Zip File Manager', '') Send('!T') Sleep(100) Send('O') WinWait('Options', '') sleep(200) ControlClick('Options', '', 1023) ControlClick('Options', '', 'Button2') WinWait('7-Zip File Manager', '') WinClose('7-Zip File Manager', '')
  10. redfive19

    nLite 1.0.1 beta

    What TEXTMODE problems does this fix? I had a problem where my nvraid drivers weren't being properly integrated even though I followed all the steps by Fernando1 to integrate them with nLite. Would it fix that?
  11. np, I just realzied you also will DEF want to change WinWaitActive to WinWait Otherwise, if that window's not active, the script will halt till it is.
  12. if you send me the AutoIt window info text, I can send you the code. In fact, I am almost positive that the code I just posted might just work if there's only one button! Give it a try. Replace the Send('{ENTER}') with ControlClick('Reconfiguration Confirmation', '', 'Button1')
  13. Glad to hear! I love it when a plan comes together. As far as the ControlClick() goes, your best bet is to read the AutoIt help file. Basically it "clicks" a button for you instead of you sending enter. For instance: ControlClick('Reconfiguration Confirmation', '', 'Button1') Where 'Reconfiguration Confirmation' is the title of the window, '' is any text in the window and 'Button1' is the name of the button you want to click. You get the info the same way you got the title of that window - with the AutoIt Window Info tool. Hover over the 'OK' button or whatever button ENTER clicks. It should tell you what button name it is.
  14. try this. I don't know if both could ever exist together but who knows. I don't know your environment. $IA6PATH = FileExists(@ProgramFilesDir & '\checkpoint\integrity client\iclient.exe') $IA5PATH = FileExists(@ProgramFilesDir & '\zone labs\Integrity Client\iclient.exe') If $IA5PATH = 1 and $IA6PATH = 0 Then FileChangeDir(@ProgramFilesDir & '\Zone Labs\Integrity Client') Run('iclient.exe -config ' & '"\\(machinename)\C$\temp\reconfig\ServerIP.xml"') WinWaitActive('Reconfiguration Confirmation') Send('{ENTER}') Elseif $IA5PATH = 0 and $IA6PATH = 1 Then FileChangeDir(@ProgramFilesDir & '\checkpoint\integrity client') Run('iclient.exe -config ' & '"\\(machinename)\C$\temp\reconfig\ServerIP.xml"') WinWaitActive('Reconfiguration Confirmation') Send('{ENTER}') Elseif $IA5PATH = 0 and $IA6PATH = 0 Then Msgbox(0, 'None found', 'Neither was found.') endif That should work. I would personally use ControlClick() instead of that Send('{ENTER}'). That's risky if that window is not in focus. I like the FileChangeDir() command in there because I feel it's better to run arguments that way but it's just a matter of preference. You could also have AutoIt check the version of the iclient.exe if you wanted but that may be out of the scope of your needs. Tell me if that works. -Redfive
  15. I am right there with you Vince. I have the same mobo and the same problems. The good news? From all I've read (and I did have this up and running before) the nVidia raid blows away the Sil3114 also onboard.
  16. So don't even TOUCH the SATARAID folder? [EDIT] Okay I just integrated JUST the LEGACY folder and I still get the same blue screen on first boot. back to the drawing board... [/EDIT]
  17. Motherboard: A8N-SLI Premium Drivers used: Windows Vista Beta drivers Methods: 1.) I moved the required files into the SATARAID folder (NVATABUS.INF, NVATA.CAT, NVIDE.NVU and NVCOI.DLL). I then integrated the SATARAID folder as TEXTMODE. Everything installed fine (as it usually does) but on first boot, I get a blue screen with the 7B error (and no I didn't press F6 during the setup!). The blue screen says to CHKDSK etc. I've gotten this blue screen everytime - even before I learned your method. 2.) I then tried it with moving the drivers into the SATARAID folder and integrating both the SATARAID folder *AND* the LEGACY folder. Same blue screen. Should I integrate the LEGACY folder as PNP drivers? I am lost! THANK YOU FOR YOUR HELP! -Redfive
  18. "(LEGACY or SATARAID depending on your driver choice and preparation) " That's the part that confuses me. I followed your instructions to a T and I still get a blue screen asking me to chkdsk. I copied over all required files to the SATARAID folder. I don't quite know what I am doing wrong here. Should I integrate both the LEGACY & SATARAID folders? Thanks in advance -redfive
  19. [b]Fraps v2.7.3[/b] For some reason, this new Fraps won't install via /S like every other nullsoft app. So I wrote this little script to automate it. change to your liking.
  20. with all due respect, you should have silenced the install in your script but that's just my preference! I do however like the processwait() and processclose() in your script and am bummed that I didn't think of that.
  21. Opt('TrayIconHide', 1) RunWait('FlashFXP_34_Setup.exe /S') FileCopy(@ScriptDir & '\Sites.dat', @ProgramFilesDir & '\FlashFXP\Sites.dat', 1) Run(@ProgramFilesDir & '\FlashFXP\FlashFXP.exe') WinWait('FlashFXP v3.4.0 (build 1140) Evaluation') ControlClick('FlashFXP v3.4.0 (build 1140) Evaluation', 'Enter code..', 'TButton1') WinWait('Register FlashFXP v3.4.0 (build 1140)') $serial = (');<-- Separate the lines by & @CRLF & ControlFocus('Register FlashFXP v3.4.0 (build 1140)', 'OK', 'TMemo1') ControlSetText('Register FlashFXP v3.4.0 (build 1140)', 'OK', 'TMemo1', $serial) ControlClick('Register FlashFXP v3.4.0 (build 1140)', 'OK', 'TButton2') WinWait('FlashFXP', 'This copy of FlashFXP is now licensed') ControlClick('FlashFXP', 'This copy of FlashFXP is now licensed', 'Button1') Sleep(1000) WinWait('FlashFXP', '') WinClose('FlashFXP', '') I wrote this script today for v3.4.0 build 1140. It copies over my favorites (sites.dat) and if you don't need this, then you can cut that out.
  22. To find strings, you can use the StringInStr command I believe. HOWEVER, currently, AutoIt does not support website integration. BUT, someone wrote an IE UDF library that does this. Search the AutoIt forums, under Scripts and Scraps and look for the IE Automation Library.
  23. just to let you know, I am still experiencing the mp3 skipping with 7.2.0.3b. In fact, I don't know if the previous fix worked either cause I tried going back to it and no dice. I am also seeing the following error. I cannot change my toolbar view settings (see attached). I am downloading the full version of Nero to see if the problem still exists. Here's how I have it installing: Nero-7.2.0.3b_eng_lite.exe /VERYSILENT /LANG="English" /COMPONENTS="nero_core,nero_toolkit\nero_cdspeed,nero_toolkit\nero_cdspeed\cdspeed_help= Nero CD-DVD Speed Help,nero_toolkit\nero_drivespeed = Nero Drive Speed,nero_core\nero_videocd,nero_core\nero_audioplugins\mausau,nero_core\nero_audioplugins,nero_core\nero_api" [EDIT] Nvm, it exists in Nero full as well. I figured it out though. It's now under the Customize menu. There is a reg key it writes HKEY_USERS\S-1-5-xxxxxxxxx\Software\Ahead\Nero - Burning Rom\ENU_Settings\BCGToolbarParameters\LargeIcons: 0x00000000 the xxxxx's of course represent my long user ID but I am pretty sure this is NOT universal. Is there a way that I can make sure this gets applied on a machine level? [/EDIT] [EDIT 2] NVM! Found the 'master' key. HKEY_CURRENT_USER\Software\Ahead\Nero - Burning Rom\ENU_Settings\BCGToolbarParameters\LargeIcons [/EDIT2]
  24. I have the same exact problem. I can't silence this at all!
  25. Hmmm, isn't this in gina.dll? Sorry just throwing ideas out there.
×
×
  • Create New...