-
Posts
9280 -
Joined
-
Last visited
-
Days Won
371
Everything posted by anyweb
-
Cannot remove management point Remove role is greyed out
anyweb replied to Fray's question in How do I ?
it sounds like it's by design, why do you want to remove the MP ? have you considered uninstalling the secondary altogether ? -
if it's failing to join the domain did you verify the domain join account by clicking on Verify after entering those details in the apply network settings step ? you need to press F8 during the Apply Operating System step to try and capture the SMSTS.log files (note theres more than the smsts.log file, there's also another one which may contain info about your failure called smsts-20130308-181903.log where the long string of numbers is the date/time can you try and recapture these logs directly after the Apply Network Settings step ? and again in any steps after Setup Windows and configmgr cheers niall
-
Multiple Windows Boot Manager entries under UEFI Section
anyweb replied to BrentL's topic in Configuration Manager 2012
are you doing a new computer scenario or refresh ? -
SCCM 2012 sp1 setup issue with sql 2008 R2
anyweb replied to nguil's topic in Configuration Manager 2012
and how are you specifying the remote SQL server and instance in the dialog ? -
Cannot select Operating system installer
anyweb replied to LimeLover's topic in Configuration Manager 2012
no you don't need to do a build and capture unless you want to use a captured wim with some settings and applications changed, and windows updates applied (for example) -
Multiple Windows Boot Manager entries under UEFI Section
anyweb replied to BrentL's topic in Configuration Manager 2012
did you see my post on installing the Surface here ? it works fine for me and no duplicate entries in the BCD menu... -
Summary: Microsoft appears ready to roll out the set of expected updates to its full set of core, Microsoft-developed Windows 8 applications, as rumored earlier this month. By Mary Jo Foley t looks like Microsoft is poised to update almost all of its core Microsoft-developed apps that shipped with Windows 8. At the start of this month, I posted that Microsoft was expected to provide updates to everything, from Windows Mail to Xbox Music, some time in March. On March 22, Windows SuperSite editor Paul Thurrott discovered a stack of updates that are "installation ready" for Windows 8. These include: Microsoft.BingTravel Microsoft.Camera Microsoft.Bing Microsoft.Reader Microsoft.BingNews microsoft.windowsphotos (Photos) Microsoft.BingFinance microsoft.microsoftskydrive Microsoft.XboxLIVEGames Microsoft.ZuneVideo Microsoft.BingWeather Microsoft.ZuneMusic (Xbox Music) microsoft.windowscommunicationsapps (Mail, Calendar, People, Messaging) Microsoft.BingMaps Microsoft.BingSports My original tipster said these apps would also be updated and made available for Windows RT this month. I've tried to find mention of pending updates on my Surface RT and so far cannot. (Wondering if anyone out there with a Windows RT device can see these. Chime in if so.) Update: It appears this same batch of updates is also coming to Windows RT. Brad Pelletier (@bardo77n) just sent me this screen shot from his Surface RT. I asked Microsoft again today for comment on when/if these major updates are going to be rolled out. I got a fresh, new "no comment." Microsoft officials have acknowledged publicly that the Windows team is aware that the first-party apps on Windows 8 and Windows RT have room for improvement. Many users have been especially disappointed in the Mail and Music apps for the product, claiming they feel more like betas than full, featured, polished products. Even though they're free, many of us Windows 8/Windows RT users feel that these apps, developed by the Windows team, just aren't very good. (The Windows 8/Windows RT apps built by the Bing AppEx team, on the other hand, have been quite solid and usable.) Microsoft is expected to deliver another set of major updates to all its core apps when it rolls out the Blue update for Windows 8 and Windows RT late this summer. via > http://www.zdnet.com/microsoft-expected-to-update-its-full-suite-of-built-in-windows-8-apps-7000013004/
-
Multiple Windows Boot Manager entries under UEFI Section
anyweb replied to BrentL's topic in Configuration Manager 2012
those are not BIOS options they are BCD options, To remove a boot entry option, use the BCDEdit /deletevalue command, more info http://msdn.microsoft.com/en-us/library/windows/hardware/ff542202(v=vs.85).aspx how are you imaging your Surface Pro ? -
azure dp - clients stuck at 0 %
anyweb replied to Jaekt's question in Troubleshooting, Tools, Hints and Tips
can the clients convert the cloud dp FQDN to an ip ? see Kent's post about that here -
SCCM 2012 sp1 setup issue with sql 2008 R2
anyweb replied to nguil's topic in Configuration Manager 2012
is SQL on the primary or remote, is it using the default instance or another one ? -
check your ccmsetup.log and client.msi.log files to see why it failed, nothing will work when the client is not installing correctly
-
attach the smsts.log file from your new failure so i can see what the messages are
-
How can I change a HKCU setting within Windows during an OSD deployment
anyweb replied to roshanbhavsar04's question in How do I ?
use the workaround i already explained or try this. -
you need to install applications AFTER the setup windows and configmgr step, and you also have a problem with your network drivers see verify the computer actually has an ip and can ping the FQDN of the management point
-
or recreate the deployment type
-
How can I change a HKCU setting within Windows during an OSD deployment
anyweb replied to roshanbhavsar04's question in How do I ?
the reg file with Defuser references will only work as part of the workaround i provided. when you manually run your file it works because you are a user and it's running it in user context, when you run it as a package it's running in system context and therefore failing. -
How can I change a HKCU setting within Windows during an OSD deployment
anyweb replied to roshanbhavsar04's question in How do I ?
if you are sending a package to a computer then that is a different case altogether, is a user logged on ? yes/no are you running the package as a user or as a computer, if running in system context (computer) then only the HKLM changes will apply (as in your case) you need to run it in User Context or use the workaround i've explained already... (you can run it in user context by deploying it to a device collection, with an Available purpose, and set the program to run as the current logged on user) have you tried doing this via a task sequence only (you can create a custom task sequence to do these steps...) -
How can I change a HKCU setting within Windows during an OSD deployment
anyweb replied to roshanbhavsar04's question in How do I ?
are you using the steps in a task sequence or just sending out a package 'job' to your computers.... -
How can I change a HKCU setting within Windows during an OSD deployment
anyweb replied to roshanbhavsar04's question in How do I ?
userprefs.reg is just an example file name using the example registry file i posted above, simply replace the file name userprefs.reg with your OWN registry file, you can create your own registry file by making the changes on your desired computer, and then exporting that registry key to a REG file. Once you have the reg file edit it and replace all lines that begin with [HKEY_CURRENT_USER\ with the following [HKEY_LOCAL_MACHINE\Defuser\ below is an example of that.... I've created a Registry file in notepad called visualFXsetting.reg containing the following... Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\Defuser\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects] "VisualFXSetting"=dword:00000002 save that file and in the following step, refer to the new registry file which is simply ONE file in a package cmd.exe /c reg.exe import "visualFXsetting.reg" like below... as this question is frequently asked and misunderstood i've changed the Topic title to be more descriptive of the actual problem. -
How can I change a HKCU setting within Windows during an OSD deployment
anyweb replied to roshanbhavsar04's question in How do I ?
you are trying to apply settings to the Current User section of the registry which won't work during a task sequence as the task sequence runs for Computers not users, you can get around this by mounting the registry hive for the Default User, making the changes using your chosen registry file which is pointing to this mount point, then commit the changes, what this will mean is that All new user profiles on that computer will get the change, here's an example of that for a Windows 7 deployment (you will need to adjust accordingly for Windows XP so that C:\Users becomes C:\Documents and Settings\) Below is an example for modifying HKCU settings for Windows 7 the first step will Load the Default User registry hive into a mountpoint called Defuser using a Run Command Line step like so cmd.exe /c reg.exe load HKEY_LOCAL_MACHINE\defuser c:\users\default\ntuser.dat in the next step we import the Registry file in another Run Command Line step this Registry file can be a file in a package. cmd.exe /c reg.exe import "Userprefs.reg" the important thing here is that the registry file refers to the mountpoint referenced in our first step, below is an example of that Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MediaPlayer\Preferences] "AcceptedEULA"=dword:00000001 "FirstTime"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsMediaPlayer] "GroupPrivacyAcceptance"=dword:00000001 ;Change start Page to windows-noob [HKEY_LOCAL_MACHINE\defuser\Software\Microsoft\Internet Explorer\Main] "Start Page"="http://www.windows-noob.com" "Default_Page_URL"="http://www.windows-noob.com" ;Add documents on desktop add My computer [HKEY_LOCAL_MACHINE\defuser\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel] "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000 "{59031a47-3f72-44a7-89c5-5595fe6b30ee}"=dword:00000000 "{871C5380-42A0-1069-A2EA-08002B30309D}"=dword:00000000 ;Adds recent docs on startmenu [HKEY_LOCAL_MACHINE\defuser\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Start_ShowRecentDocs"=dword:00000001 ;Intellimenus [HKEY_LOCAL_MACHINE\defuser\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] "Intellimenus"=dword:00000001 ; Remove Accept Eula for Adobe reader [HKEY_LOCAL_MACHINE\defuser\SOFTWARE\Adobe\Acrobat Reader\9.0\AdobeViewer] "EULA"=dword:00000001 "Launched"=dword:00000001 ; Remove Accept Eula for Adobe svg reader [HKEY_LOCAL_MACHINE\defuser\SOFTWARE\Adobe\Adobe SVG Viewer\3.03\EULA] "3.03x94"="accepted" ;set blank screensaver with a ten minute timeout [HKEY_LOCAL_MACHINE\defuser\Control Panel\Desktop] "ScreenSaveActive"="1" "SCRNSAVE.EXE"="C:\\Windows\\system32\\scrnsave.scr" "ScreenSaveTimeOut"="600" "ScreenSaverIsSecure"="1" ;Show extension for files [HKEY_LOCAL_MACHINE\defuser\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "HideFileExt"=dword:00000000 "SuperHidden"=dword:00000001 [HKEY_LOCAL_MACHINE\defuser\Software\Microsoft\Communicator] "AutoRunWhenLogonToWindows"=dword:00000000 "FirstTimeUser"=dword:00000000 "TourPlayed"=dword:00000001 and finally we commit the changes in another Run Command Line step cmd.exe /c reg.exe unload HKEY_LOCAL_MACHINE\defuser and that's all there is to it, using this methodology you can set any HKCU keys you want to be applied during an OSD task sequence cheers niall -
as long as the PXE providers are not on the same vlan you won't have an issue, if they are on the same vlan then you'll need to use timing or some other method to control which one answers first.
