Jump to content

noonereallycares

Member
  • Posts

    11
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Australia

Everything posted by noonereallycares

  1. According to the service manual, it supports a maximum capacity of 6.4gig. According to Lenovo, it supports a maximum capacity of 6.4gig. Be sure to keep an eye on the physical size of the HDD.
  2. To save your clients having to go through the process from scratch. Once they enter the key, they are up and running.
  3. How to include these extension to my unattended installation? Thanks Once you have installed Firefox, use firefox.exe -install-global-extension "extension.xpi"
  4. Try this: http://support.microsoft.com/default.aspx?...b;EN-US;q205524
  5. The Symantec Ghost Recovery CD is a WinPE environment, with all the parts of Ghost already installed. If should have come as a 2nd disk in your original set of disks.
  6. Are you logged in as an administrator? Is it possible that you have configured C:\Home to "read only" for general users? I don't see how deleting a non-system folder from the C:\ has any impact on the MBR.
  7. I always plan my IT systems on articles that were written 3 YEARS AGO
  8. I'm doing an install at the moment. It appears that your tip has solved the problem. Thanks. : My keyboard is a US layout. The is no Australian keyboard layout.
  9. Is there any way of stopping the US language from installing, that doesn't involve the use of nLite? I have successed in having XP install English (Australian), yet the US language remains. Am I missing something? Does M$ assume that we all want to speak the US form of the language, but don't know it yet? [RegionalSettings] LanguageGroup=1 SystemLocale=00000c09 UserLocale=00000c09 InputLocale=0c09:00000409 From what I can tell, the InputLocale settings requires the 409 option to tell it to use a US keyboard layout, but I may be wrong. Any tips would be greatly appreciated. Thanks.
  10. In my attempts to get ERD Commander tools to work within WinPE, I resorted to writing my own VBS script that will detect the local install of windows and pass these detail on to the ERD tool. Here it is: Dim WSHShell, FSO, dc, d, objArgs Set objArgs = Wscript.Arguments Set WSHShell = WScript.CreateObject("WScript.Shell") set FSO = WScript.CreateObject("Scripting.FileSystemObject") Set dc = FSO.Drives if Not FSO.FileExists(objArgs(0)) then Wscript.Echo "Usage: " & Chr(13) & " erdlogon.vbs cmdline [TargetRoot] " & Chr(13) & Chr(13) _ & "To execute override detected Target Root, specify the location of" & Chr(13) _ & "the Windows folder in place of TargetRoot." WScript.Quit(0) end if if objArgs.count = 2 then if FSO.FolderExists(objArgs(1)) then WSHShell.Environment("Process").item("target_root") = objArgs(1) end if else For Each d in dc if d.DriveType = 2 then if FSO.FileExists(d.Path & "\WINNT\system32\config\system") then if FSO.FileExists(d.Path & "\WINNT\system32\config\sam") then if FSO.FileExists(d.Path & "\WINNT\system32\config\default") then if FSO.FileExists(d.Path & "\WINNT\system32\config\software") then WSHShell.Environment("Process").item("target_root") = d.Path & "\WINNT" Exit For end if end if end if elseif FSO.FileExists(d.Path & "\WINDOWS\system32\config\system") then if FSO.FileExists(d.Path & "\WINDOWS\system32\config\sam") then if FSO.FileExists(d.Path & "\WINDOWS\system32\config\default") then if FSO.FileExists(d.Path & "\WINDOWS\system32\config\software") then WSHShell.Environment("Process").item("target_root") = d.Path & "\WINDOWS" Exit For end if end if end if end if end if Next end if WshShell.Exec objArgs(0) Set WSHShell = Nothing Set FSO = Nothing WScript.Quit(0) If anyone has any suggested improvements, just shout. BTW, it needs WSH support to be installed for it to run. I can help with this if anyone is having problems.
  11. have you tried manually loading the reg file and then running geoshell? I load my geoshell settings as part of my cd build, it works fine. Here's a screenshot:
×
×
  • Create New...