Jump to content


Morpheus

Established Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by Morpheus

  1. I've a similiar problem like above this post. Installation of Windows 8.1 Pro works well. But Configuration Manager Client and the follwing software gets not installed. Domain integration worked well. After Login the prepartion of Win8.1 goes on: How to integrate this step into the TaskSequence? I don't want that the users have to wait after TaskSequence has finished. What are the problems of this two problems?
  2. I had too early panic. The Installation wasn't finished but it told me that it was also in configmgrsetup.log. 15 Minutes later all jobs are marked done. Looks as everything went fine at the end
  3. If it's just the native client try to exclude it
  4. Okay, i found the file which cause the problem. It was called System. After renaming to System.old I was able to update the distribution point again and everything was fine. So if you've this problem too, follow the above posted link and search for a file named 'Microsoft', 'Program' or 'System' and rename it.
  5. I tried to upgrade my SCCM 2012 SP1 CU3 to R2. The Installation went more or less fine. But it tells me that it is already finished. But not all Jobs are marked as done. Why that? New SCCM Console opens fine. Boot Images have the right version also Buildnummer is fine. I'm not sure now. It looks like the installation has finshed, but not at all...
  6. distmgr.log shows "Failed to start DP health monitoring task for package 'XY100001'. Error code: -1" Configuration Manager Client Package is still in progress. Found same problem here http://dbgriffin.wordpress.com/2013/03/01/configuration-manager-2012-failed-to-start-dp-health-monitoring-task/ but I can't find a file called 'Microsoft' or 'Program'. Problem has started after installing CU3 for SCCM 2012 SP1.
  7. I've got this error after Updating SCCM2012 SP1 with CU3. Configuration Manager Client Package shows since a week as PENDING. Because it's the default one no chance to make some config changes or cancel it. ​No solution yet. Does anyone have a hint?
  8. oaah, that's bad. Download 1GB to just install the software. That's very efficient.
  9. Are you using the right boot image (x64/x86)? Do you apply any drivers into these boot images? what does your smsts.log file say about the error?
  10. I'd like to run some application direct from the distribution point. But every time it dowloads the content first to the client. Even when I deinstall the application. The connection between client and server is definitely fast enough! Or do I've to deploy everthing via a Batch which will start the applications via the Network? That can't be the solution!
  11. Thanks. Thats the right way! But this will get my all the devices which this user has been loged in. And with this Query i would have to enter all usernames by myself. Because of that i created a USER COLLECTION with the Users which i need. But i can't deploy this application to the USER COLLECTION. Because of that i would like to create a DEVICE COLLECTION of this Users primary devices.
  12. I created a user collection from a AD object container. Now i'd like to create a device collection of this AD user collections primary devices? Does someone know how to do that?
  13. Hi everybody, Back from long holidays and already the first sccm problems. We deploy Win7 Prof since approximately 3 Months via SCCM . But nobody has noticed that the Accessories folder in the Start Menu is missing. So why on earth is this folder missing by a normal Win7 Installation? Any clue to fix this problem without a script which copy the folder to every users Start menu directory? have a nice day
  14. I found the problem. Turns out I had to use generell language code in the UILanguage instead of regional variant. As example for german: <UILanguage>de-DE</UILanguage> instead of <UILanguage>de-CH</UILanguage> same for English <UILanguage>en-US</UILanguage> instead of <UILanguage>en-AU</UILanguage> <SystemLocale>, <UserLocale> and so on can be set to regional variant.
  15. Do you've installed and configured the Software Update Point (SUP) role? How do your settings look?
  16. Where've you found that INF-Files are blocked? I could only find these: .asax .ascx .master .skin .browser .sitemap .config .cs .csproj .vb .vbproj .webinfo .licx .resx .resources .mdb .vjsproj .java .jsl .ldb .dsdgm .ssdgm .lsad .ssmap .cd .dsprototype .lsaprototype .sdm .sdmDocument .mdf .ldf .ad .dd .ldd .sd .adprototype .lddprototype .exclude .refresh .compiled .msgx .vsdisco .rules .INF extension is only mentioned here: <mimeMap fileExtension=".inf" mimeType="application/octet-stream" /> but in this section .exe is also listed.
  17. Om nope... hadn't thought at IIS yet. Is this a HotFix oder only a specification from a Mime-type?
  18. Hello, I created a new application which gets installed by a setup.exe with some commands setup.exe /silent /norestart /loadinf="inf/custom.inf" The file structure looks like: + Application [Folder] + setup.exe [File] + inf [Folder] + custom.inf [File] The content source is pointed at the application folder. When i install this application via the Software Center the content gets downloaded into ccmcache. But only the setup.exe. No inf-Folder and file. Consequently I get an error because the inf-file doesn't exist. Why? What is wrong? I don't get it!
  19. Do the applications work silently if you run their command in a cmd from a client? Maybe the application waits for some interventions. Do you download the content before installing or directly from the DP?
  20. I've still this Problem with the "Set up Windows" Screen. I created an unattended.xml File with the following content: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" 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"> <SetupUILanguage> <UILanguage>de-CH</UILanguage> <WillShowUI>Never</WillShowUI> </SetupUILanguage> <InputLocale>de-CH</InputLocale> <SystemLocale>de-CH</SystemLocale> <UILanguage>de-CH</UILanguage> <UILanguageFallback>de-CH</UILanguageFallback> <UserLocale>de-CH</UserLocale> </component> </settings> <settings pass="oobeSystem"> <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"> <InputLocale>de-CH</InputLocale> <SystemLocale>de-CH</SystemLocale> <UILanguage>de-CH</UILanguage> <UILanguageFallback>de-CH</UILanguageFallback> <UserLocale>de-CH</UserLocale> </component> </settings> <cpi:offlineImage cpi:source="catalog:xyz.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> What is still missing to pass this screen automatically?
  21. Make sure you've used Operating System Installers to create your Golden Image (Not Operating System Images for original image and golden image!). If you still have this problem, just add a “Set Task Sequence Variable” Action to your Task Sequence with Name OSDPreserveDriveLetter and value False. This will ignore the Driver letter stored in the WIM,
  22. Hello, How to add multiple installers in one package? I need to run 2 msi files for correct installation. One after the other. Both belong to the same application. I don't like to create two packages or use a script. Thanks Regards Morpheus
  23. I see the problem. But i don't now how to fix it. The Configuration Client haven't the setting which it needs. This is how the settings of the client look after OS Deploying: This is how it looks, when I install the client manually via msi-installer. Why are the settings not transfered when i install the client as a part of the OS Tasksequence?
  24. Yes it's set to the FQDN of my Server Do I really need to install the client on the golden image. Maybe it's a problem to install twice the client. I read somewhere that i've to create a new Package of the client instead of the client which exist on default in the Package location. Is that true? Do you have more ideas?
  25. Hi Phil Thanks for your help. I thought .net 4 gets installed with the SCCM Client. But also after install and restart I get the same error message. I also tried this aspnet_regiis.exe /iru This Hotfix is for 32bit. The Problem exist on a 64bit machine. I don't now if this error also exist on a 32bit machine. I can't find this hotfix for 64bit. What do they mean with "Terminal Services"? I think the problem is that the client does not find the server. I tried to add the server additionally in the tasksequence. But no goal. Regards
×
×
  • 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.