Jump to content


pascalloz

Established Members
  • Posts

    15
  • Joined

  • Last visited

pascalloz's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I started a validation task for 3 applications. (not very large, couple of megabytes, 40MB) but it is running for hours now. How can i stop this, since i cannot deploy the applications now.
  2. I have discovered that we have a different problem, and that could be the reason why it was not working al alone. Yesterday i was trying your script, and it was still not working. And when i was trying to adjust it, and redistribute i notice that the client did not always download the new (changed) package. So i cleared the local sccm client cache. And then i find out that the clients are receiving old package. But this could be my problem all alone. I was constantly adjusting my package and updating my distribution points. But the client kept receiving old data. So we have no idea for how long this is going on, but this is a bigg problem. But in some way this is a good thing to. Now i know (well at least have the feeling) that problem was not my knowledge or with iTunes or Quicktime or having problems with the batch files. It now seems like that the SCCM was distributing old (inconsistent) data all a long. We are trying to figure out why that is, and how we can solve this. Do you guys have any idea? or have you see this before?
  3. yes i am sure, i have looked everywhere
  4. i created a Quicktime application with an dependency of apple application support. That is working perfect. But now it needs to copy the Quicktime.qtp file in the appdata folder. But for some reason it will not do that. I have include the screenshots here below is the script: xcopy "%~dp0quicktime.qtp" "%AppData%\LocalLow\Apple Computer\Quicktime" /Y Or is there a better way to do that?
  5. Okay thanks for the tip. I thought i should start small. So i created a Quicktime application with an dependency of apple application support. That is working perfect. But now it needs to copy the Quicktime.qtp file in the appdata folder. But for some reason it will not do that. I have include the screenshots here below is the script: xcopy "%~dp0quicktime.qtp" "%AppData%\LocalLow\Apple Computer\Quicktime" /Y
  6. Okay thanks for the info, the problem was that i was using the package option instead of application option of sccm. But since itunes is dependant from the other packages how do i install the rest? Do i need to create a application folder, or do i need to create all the applications separately? And make them all dependant from each other? Like i said i am new to the packaging thing with sccm and this is pretty difficult application to get working correctly Thanks for all the help so far.
  7. i have also included the settings that i use for the package.
  8. "Is the application script installation behaviour set to System or User." what do you mean by this? what i want is that i can roll this package for any user. And then it needs to copy the preferences to the app data folder of the user. I have tried to replace the %userprofile% with c:\users\default\ but then it only copy the files to the default user profile and when i look at the profile for the user who is logged in it does not have the correct preference files. (just the default ones itunes and quicktime creates.)
  9. well i have tried that yes, but i thought (when i start troubleshooting) i did not need to use it for th mst. Because it is applying some settings of it.
  10. Hi all, I have been working on this for 2 weeks now (i had absolutely no sccm or package experience before that.) I am so close to get this thing working. I am trying to deploy itunes + quicktime with sccm 2012. I have created a script (which i have mostly got from the internet) and when i am running it from the share it finally does what it should do. But when i created a package, use the install.cmd as the command to run, with admin rights, for some reason it will not copy the files to the right location. The itunesprefs.xml and quicktime.qtp file to the right location. When i run the script manually it runs fine. When i deploy it with sccm the msi's are installed correctly but i miss a lot of settings that i have put in the itunes64.mst. (and i know it is using it, because one of the settings is removing desktop shortcut, and removing the read me file from the start menu) Like Accept EULA, don't update, or even ask about it, no bonjour (that gave me such a headache that i decided to install it anyway. ) So i solved it (after i have spend a day on trying different settings in the mst files, no luck )to copy the xml files after i made the extra settings to itunes and quicktime. I don't know if i have done something wrong but its working. well when i run the script manually. So i want it to deploy with sccm but i can't get the files in the correct location, perhaps there is something wrong with my script. I am hoping any of you guys would have a idea? this is my install.cmd @echo off @echo .:: Installing Apple Application Support ::. msiexec /i "%~dp0AppleApplicationSupport.msi" /qn @echo .:: Installing Apple Mobile Device Support ::. msiexec /i "%~dp0AppleMobileDeviceSupport64.msi" /qn @echo .:: Installing Bonjour x64 ::. msiexec /i "%~dp0Bonjour64.msi" TRANSFORMS=bonjour.mst /qn @echo .:: Installing QuickTime ::. msiexec /i "%~dp0QuickTime.msi" TRANSFORMS=QuickTime.mst /qn @echo .:: Installing iTunes x64 ::. msiexec /i "%~dp0iTunes64.msi" TRANSFORMS=iTunes64.mst /qn @echo .:: Copy the QuickTime settings ::. xcopy "%~dp0quicktime.qtp" "%USERPROFILE%\AppData\LocalLow\Apple Computer\Quicktime" /Y @echo .:: Copy the iTunes settings ::. xcopy "%~dp0itunesPrefs.xml" "%USERPROFILE%\AppData\Local\Apple Computer\iTunes" /Y xcopy "%~dp0iTunes\iTunesPrefs.xml" "%USERPROFILE%\AppData\Roaming\Apple Computer\iTunes" /Y exit 0
×
×
  • 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.