Jump to content


Thomas M

Established Members
  • Posts

    23
  • Joined

  • Last visited

About Thomas M

  • Birthday 03/04/1984

Profile Information

  • Gender
    Male
  • Location
    Norway

Thomas M's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I have this program in the same place as Lucid in the Task Sequence. I've done this with Batch scripting and a registry file though. Bit of a manual job setting up the reg file, but it's working fine so far. I've got two files: Norway.cmd REG LOAD HKU\DU c:\Users\Default\NTUSER.DAT REG IMPORT %~dp0Norway.reg REG UNLOAD HKU\DU Norway.reg Windows Registry Editor Version 5.00 ;Control Panel\Region and Language\Formats. [HKEY_USERS\DU\Control Panel\International] "Locale"="00000414" "LocaleName"="nb-NO" "s1159"="" "s2359"="" "sCountry"="Norge" "sCurrency"="kr" "sDate"="." "sDecimal"="," "sGrouping"="3;0" "sLanguage"="NOR" "sList"=";" "sLongDate"="d. MMMM yyyy" "sMonDecimalSep"="," "sMonGrouping"="3;0" "sMonThousandSep"=" " "sNativeDigits"="0123456789" "sNegativeSign"="-" "sPositiveSign"="" "sShortDate"="yyyy-MM-dd" "sThousand"="." "sTime"=":" "sTimeFormat"="HH:mm:ss" "sShortTime"="HH:mm" "sYearMonth"="MMMM yyyy" "iCalendarType"="1" "iCountry"="47" "iCurrDigits"="2" "iCurrency"="2" "iDate"="1" "iDigits"="2" "NumShape"="1" "iFirstDayOfWeek"="0" "iFirstWeekOfYear"="2" "iLZero"="1" "iMeasure"="0" "iNegCurr"="12" "iNegNumber"="1" "iPaperSize"="9" "iTime"="1" "iTimePrefix"="0" "iTLZero"="1" ;Control Panel\Region and Language\Location\Current location. [HKEY_USERS\DU\Control Panel\International\Geo] "Nation"="177" ;Control Panel\Region and Language\Keyboards and Languages\Change Keyboards. ;Comment_Removing secondary keyboard to prevent users from mistakenly changing it with the keyboard shortcut. [HKEY_USERS\DU\Keyboard Layout\Preload] "1"="00000414" "2"=- ;Control Panel\All Control Panel Items\Notification Area Icons ;Always show all icons and notifications on the taskbar [HKEY_USERS\DU\Software\Microsoft\Windows\CurrentVersion\Explorer] "EnableAutoTray"=dword:00000000 ;My Computer\Folder Options ;Show extensions for known file types ;Show all folders in navigation pane [HKEY_USERS\DU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "HideFileExt"=dword:00000000 "NavPaneShowAllFolders"=dword:00000001 ;Internet Explorer 8 disable first run dialogue. [HKEY_USERS\DU\Software\Microsoft\Internet Explorer\Main] "IE8RunOnceLastShown"=dword:00000001 "IE8RunOncePerInstallCompleted"=dword:00000001 "IE8RunOnceCompletionTime"=hex: "IE8TourShown"=dword:00000001 "IE8TourShownTime"=hex: "IE8RunOnceLastShown_TIMESTAMP"=hex: ;Internet Explorer 8 Default search engine is Google, and allow searchbar updates. [HKEY_USERS\DU\Software\Microsoft\Internet Explorer\SearchScopes] "DefaultScope"="{6A8AC388-E60D-4E72-9552-AFBDAEF1E9BD}" "DownloadRetries"=dword:00000000 "DownloadUpdates"=dword:00000001 "Version"=dword:00000002 "UpgradeTime"=hex: ;Internet Explorer: Add Google as search engine [HKEY_USERS\DU\Software\Microsoft\Internet Explorer\SearchScopes\{6A8AC388-E60D-4E72-9552-AFBDAEF1E9BD}] "DisplayName"="Google" "URL"="http://www.google.co.uk/search?hl=en&q={searchTerms}&meta=" "ShowSearchSuggestions"=dword:00000001 "SuggestionsURL"="http://clients5.google.com/complete/search?hl={language}&q={searchTerms}&client=ie8&inputencoding={inputEncoding}&outputencoding={outputEncoding}" "OSDFileURL"="http://download.microsoft.com/download/9/f/4/9f4d1caf-3622-4dbd-872f-90a8a7e9fd52/Google_UK.xml" "FaviconURL"="http://www.google.co.uk/favicon.ico" ;Internet Explorer: Disable the Accelerator button popup when selecting text on a website [HKEY_USERS\DU\Software\Microsoft\Internet Explorer\Services] "SelectionActivityButtonDisable"=dword:00000001 ;Turn off messages about Windows Backup in the Action Center [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsBackup] "DisableMonitoring"=dword:00000001 I've done it this way as it was the first way that popped into my head. Don't know if it's a good enough method, or if perhaps Lucid's way is better? Stuff works in my environment though, but would appreciate a comment if anyone has some input.
  2. I was just working on this yesterday actually. Simple batch file and a reg file that I import to the default user profile. Basically the same procedure as Lucid explained.
  3. I install all software using task sequences myself, but I guess it's a bit slower than bundling it together with the image. However, I do not have to update my base image at all, and only make changes to the application packages. That saved me from having to create a new image when I deployed Office 2010.
  4. Ps. If anyone has a good solution to format the InstallDate string I'd be very happy. InstallDate=20100728133244.000000+120 Would prefer it to be in a readable format (2010-07-28 13:32:44) I know this can be done easily in PowerShell, but as we've still got some XP clients without the Powershell client I don't think that can be done. This is why I've decided to use a simple batch script to be run using the logon script. -Thomas
  5. I pull this info out in order to have a complete register of all our computer systems in case of theft or insurance issues. DNSHostName=XXX10001 Manufacturer=LENOVO Version=ThinkCentre A57 Model=970273G SerialNumber=LMXXXXX UserName=Domain\Username FullName=Lastname, Firstname Middlename Caption=Microsoft Windows 7 Enterprise Version=6.1.7600 OSArchitecture=64-bit InstallDate=20100728133244.000000+120 IPAddress={"10.0.0.2","fe80::19da:933c:93c4:51a1"} MACAddress=00:11:22:33:44:AA Here's the script @echo off WMIC PATH Win32_ComputerSystem Get DNSHostName /Value | FIND "=" WMIC PATH Win32_BIOS Get Manufacturer /Value | FIND "=" WMIC PATH Win32_ComputerSystemProduct Get Version /Value | FIND "=" WMIC PATH Win32_ComputerSystem Get Model /Value | FIND "=" WMIC PATH Win32_BIOS Get SerialNumber /Value | FIND "=" WMIC PATH Win32_ComputerSystem Get UserName /Value | FIND "=" WMIC PATH Win32_UserAccount where name="%username%" get FullName /value | FIND "=" WMIC PATH Win32_OperatingSystem Get Caption /Value | FIND "=" WMIC PATH Win32_OperatingSystem Get Version /Value | FIND "=" WMIC PATH Win32_OperatingSystem Get OSArchitecture /Value | FIND "=" WMIC PATH Win32_OperatingSystem Get InstallDate /Value | FIND "=" WMIC PATH Win32_NetworkAdapterConfiguration where "IPEnabled=true" Get IPAddress /Value | FIND "=" WMIC PATH Win32_NetworkAdapterConfiguration where "IPEnabled=true" Get MACAddress /Value | FIND "="
  6. Not sure if this helps, but I'll post it anyway. When I first setup the sccm site here, I reran the configuration wizard multiple times. I noticed that every time I did so, the share permissions for the SCCM client disappeared. So I put the SCCM files on a different server in order to avoid that problem. You might want to check the share permissions.
  7. I have had the same problem with the Lenovo W510. I suspect the problem is the same, so I will suggest you fetch the Ethernet drivers directly from Intel instead of using Dell's drivers. http://downloadmirror.intel.com/18713/a08/PROWin32.exe I added the driver to the boot images, and created a driver package for it.
  8. What does this bit of the registry file actually do? As far as I understand it stops CTFMON.EXE from running. Is this needed?
  9. C:\Users\(Username)\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar I could not find such a location for "all users" or "default user". A script that may help: http://blogs.technet.com/deploymentguys/archive/2009/04/08/pin-items-to-the-start-menu-or-windows-7-taskbar-via-script.aspx I didn't try this though..
  10. If you see no need to make an image, then don't do it I guess. I can't see a problem doing it the way you explain, but I guess you'll be the one to tell us if there are any problems
  11. Package and distribution point. No program as far as I know, but I've never been able to get that unattend.xml file to work properly. I just ended up using DISM to put the unattend.xml into the image.
  12. Thomas M

    PXE-boot Problem

    Try to add the test pc to the collection you have advertised the TS to again. What I usually see with my test PC is that I need to add it again every time I successfully run a OS install on it, as there's suddenly multiple objects in SCCM.
  13. How does your task sequence look? I think one of those steps give your computer the name. If you want to skip that you probably need to skip more settings like domain join etc. and do them manually. Did you consider just renaming the computers?
  14. Thanks for the replies. This would imply me either changing how the All Systems collection works, or create a new collection and change the advertisement. So lets say I do the latter, create a new collection and edit my advertisement. How will this affect the computers who have already run the advertisement? What I want to avoid is all the computers running the advertisement twice
  15. Does anyone know of a good step-by-step guide from setting up a server for Microsoft Forefront Client Security to deploying the client and updating definitions? Not that I don't know how to google, but I would like a place to also discuss the guide and improvements. Much like this place, forums with guides and active people trying to achieve the same things.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.