Quantcast
Channel: Configuration Manager 2007 Software Distribution forum
Viewing all 629 articles
Browse latest View live

Things to prepare for

$
0
0

massive software distribution

Hi guys,

Let's say I'd like to distribute more than 4000 packages to one of server DP, what should be prepared?

(assuming my ConfigMgr is working, we have tested one package deployment to the server DP and it's working as well.. just wanted to make sure massive package deployment with size of more than 500GB is not failing :))
Thanks.


---Packie



What is the best way to deploy different applications to two computers using 1 task sequence.

$
0
0

We are currently rolling out Windows 7 to our branch offices using Sccm 2007, MDT 2012. We have two offices in each building both with their own ip range and the same set of applications.

The task sequence is the same for both except that one office must get Office 2010 std and the other only to get Outlook, Excel viewer, power point viewer and Word Viewer. 

Could anyone tell me how best this can be achieved?

SCCM 2007 Package automaticaly retrying to all BDP and DP.

$
0
0

Hi,

I am facing an issue with package retrying automatically from Primary SCCM 2007 SP2 to all of the BDP and DP under afffevted primary.

Our SCCM Environment is:

One Central, Three Primar and above 20 BDP/DP.

I am requesting to all kindly help me to resolve this issue.

Thanks!

Ahmad

Copying Files to System 32 Folder

$
0
0

Hello All - I have been trying to Xcopy files from Network share in to my System32 Folder  but as a normal user logged in it requires elevated CMD prompt to copy files over .

Is there a way I can achieve the same using a simple Bat/VBS file :

@echo on
rem COPYING  SCREEN SAVER FILE TO SYSTEM32 FOlder

If not exist %systemroot%\System32\screensaver.scr" Xcopy "%logonserver%\netlogon\screensaver\Screensaver.scr"/y exit


Anand Shankar

'Share the distribution folder' question

$
0
0
I don't understand the purpose of the 'Share the distribution folder' option when creating a package.  I was trying to use that to share the data to a non-distribution point server (non-bdp as well) to save myself from having to create another distribution point at a small site.  When creating a share on the server, the test client is still pulling the package from a distribution point.  I can understand why this is happening if what I am looking to do is not possible.  Now if that's not possible, what reason would someone ever have to use it and not just do a standard distribution to the DP(s)?

MicroSoft Digital Image Starter Edition

$
0
0

I cannot register my copy of Microsoft Digital Image Starter Edition. I do have a product ID but it sends me to a "page cannot be found"

office 2007 distribution

$
0
0
I had this working at one point but since I had to rebuild the system I haven't been able to recreate the process correctly.

For testing purposes I copied the entire Office2k7 install directory locally to the C drive of a test machine.

The first part of the process works fine which is uninstalling Office Enterprise 2007.  
The command is:  setup.exe /uninstall enterprise /config .\enterprise.ww\uninstall.xml

The next step is to install ProPlus and I have modified the proplus.ww\config.xml as such:
 
<Configuration Product="ProPlus">
        <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Logging Type="standard" Path="%temp%" Template="Microsoft Office Professional Plus Setup(*).txt" />
        <Setting Id="Reboot" Value="never" />
</Configuration>

I also have placed the ProPlusSilentInstall.MSP file created from OCT at the top-root folder along with setup.exe and have tried a number of different install commands but to no avail.

setup.exe /adminfile ProPlusSilentInstall.MSP /config proplus.ww\config.xml  --> setup.exe ran in TaskMgr for a moment and disappeared
setup.exe /config proplus.ww\config.xml  -->  setup runs and says it finished successfully but it isn't listed in Start - Programs or in Add/Remove Programs


I tried moving the MSP file to the Updates folder and ran the same commands above with the same results.  


I feel like I'm running in circles.  Can someone clarify the correct procedure?

Thank you.

Sound Card Driver Rollback

$
0
0

we are planning for deployment of new drivers of Conexant 20672 SmartAudio HD for Existing Lenovo T520 systems having Windows 7 x64 OS. Is there any easy method to roll back drivers through SCCM.

Please suggest.


Prashant Patil


Errors Executing Batch Files for Post Application Installation Configuations

$
0
0

I'm super new to SCCM - still trying to figure a lot of things out.


Nearly all of our applications have post installation steps like applying a registry configuration (via either `regedit /s` or `reg add`), creating directories, copying files (license file, configuration file) and so on.  Since I've already created a bunch of applications, leveraging SCCM's nifty little feature that grabs all the app info from the MSIs, I'm now looking for how to accomplish 'the next step': applying the proper configurations.

I realize there are a variety of ways to accomplish this, but, one method I've seen time & time again is to create the application via the MSI, and then afterward change the command line to whatever script I want to run; which does the installation plus the extra actions.

Here's the process I've been following that's resulting in errors in SCCM but *not* in the script [read: batch file] I'm calling:

  1. Build the batch file that calls the installer and does the post installation configuration:
    1. Calls setup file (actual MSI or setup.exe etc) via relative path and any necessary parameters/arguments etc: "%~dp0Full_Installer\setup.exe" /S /v"/qb SERIALNUMBER=12345 /l*vx c:\Logs\ApplicationName.log"

    2. Performs a variety of operations: xcopy /r /ymd/mkdirreg add/deleteregedit /s; Each operation is redirected to >>!logfile! 2>>&1

  2. Test each batch file the follow this process:
    1. confirm no errors on screen during install
    2. confirm no errors in logs after install
    3. confirm application successfully installed, which means:
      1. checking the location of where the app is expected to install to verify its there and it works
      2. checking that all applicable changes were made successfully
        1. so I'm looking for registry entries, configuration files, directory creation etc - everything in the batch
      3. checking Programs and Features to validate its presence
  3. I repeat this process (all of Step 2 above) for the uninstall batch file to confirm it too completes successfully

With the batch files tested & confirmed working

  1. I create new Application in SCCM
  2. Select Windows Installer (*.msi file)
  3. Choose msi file from \\unc\path\application\fullinstaller\file.msi
  4. Make any necessary adjustments to the General information screen
  5. Close Application Wizard
  6. Edit Properties of newly created Application
  7. Go to Deployment Types tab
  8. Select the MSI entry in there & click Edit
  9. Go to the Content tab & alter directory
    1. During creation its pointed to \\unc\path\application\fullinstaller\file.msi
    2. While not always the case, the batch file actually lives one directory up in \\unc\path\application, so I'm adjusting it to point to that directory. instead
  10. Go to Programs tab
  11. Change Installation program to the batch file: install_myapp.cmd
  12. Change Uninstall program to the batch file: uninstall_myapp.cmd
  13. Click Apply & click OK

Ok, now that all my changes are made, I need to get this into the DP:

  1. I Deploy Content (if I haven't already done so)
    1. Right click on Application > Distribute Content > Add DP > Continue through Wizard
  2. Redistribute Content (especially if edits were made to existing applications)
    1. Right click on Application > Properties > content Locations > Select location > Click Redistribute
  3. Verify deployment/redistribution via Content Status > View Status
  4. Wait a little while (usually just a few minutes <5)

With that now complete, I'm ready to test the install/uninstalls via SCCM.  So I go to client workstation, load up Software Center & Locate application & click 'Install', and this is where things get strange.

  • Misreported Failure
  1. It successfully downloads but installation fails with a variety of errors (see below):
    1. Unable to make changes to your software.
      There was a problem applying changes to the software.  You can try again.  Or, if the problem continues, the information that is shown in the following section can assist your help desk in troubleshooting.
      Click OK to return to Software Center
      More Information
      The software change returned error code 0xVARIES(n).
  2. I check "Program Files (x86)" and I see the program installation directory & its populated with files.
  3. I check "Programs and Features" and I see the application listed.  I can uninstall, change & repair.
  4. I restart software center, refresh it a few times and the application is still listed under 'Available Software' and 'Installation Status'.
  5. If I click 'Retry' it immediately disappears from view
    1. What that means is: If I'm looking at 'Available Software' or 'Installation Status', the application vanishes from that 'tab', and appears under 'Installed Software' within 'Software Center'
  6. I reviewed the MSI manually but saw no "return value 3" entries; Passed the same log through WiLogUtil.exe and its not isn't showing any problems either.

So it actually did install successfully, yet something 'failed', or was translated as a failure, causing Software Center to believe the install failed.

  • Outright Failure
  1. With application 'X' installed, from the 'Installed Software' tab I click 'Uninstall' and like before I get an error:
    1. Unable to make changes to your software.
      There was a problem applying changes to the software.  You can try again.  Or, if the problem continues, the information that is shown in the following section can assist your help desk in troubleshooting.
      Click OK to return to Software Center
      More Information
      The software change returned error code 0xVARIES(n).
  2. I check "Program Files (x86)" and the other tasks - its still installed and everything is still in place.
  3. I don't create uninstall log files so I don't have anything to view, but again: running the uninstall batch file manually results in success.

I'm quite perplexed!

As I mentioned above, the install & uninstall errors vary:

  • The software change returned error code 0x1(1).
  • The software change returned error code 0x4(4).
  • The software change returned error code 0xFF(255).
  • The software change returned error code 0x87D00213(-2016411117).
  • The software change returned error code 0x87D00325(-2016410843).
  • The software change returned error code 0x87D01107(-2016407289).

Running the batch file to install/uninstall completes without error so either something unexpected is happening that SCCM interprets as an error, or, I made a mistake in the way I created the application.  I want to believe its something very simple that I'm missing or just not doing right.

When installing/uninstalling applications via Software Center, I'm looking at task manager to view the actual command line being run for the install, and in some situations, its incorrect.  In other situations the command line is correct, but, the actual install batch file (in c:\windows\ccmcache\random) is not the most recent one and/or its missing additional files that were recently added.


Perhaps this is the source of all my problems: The DP is not up to date/doesn't contain the latest changes made to the batch files.  (Because remember, as I mentioned above, the install/uninstall batch files currently work without issue when executed manually or in our current deployments.)

 

So maybe my question should be: If the below isn't the proper method for 'refreshing' the DP with the latest application data (updates to the install package, updated files etc), what is the proper method for doing so?

  1. Right click on Application > Deploy Content  & complete wizard (if I haven't already done so)
  2. Right click on Application > Properties > Content Locations > Select location > Click Redistribute > Click OK

Lastly, I'm a big log person.  All the batches log each operation and redirects the results (1> and 2>) to a log file for review.  It makes it super simple to see where something failed down the road.  SCCM includes a wealth of log files for various operations, and, in my humble opinion, its great but a bit overwhelming!

I know that the client logs are all stored in C:\Windows\CCM\Logs but there are over 100 logs in there and its not inherently obvious which log corresponds to which component or action of CM.  So, all that said, I'm happy to comb through with cmtrace to troubleshoot deeper & get a better understanding of the process, but I'm in need of help finding a good place to start.

  • Is there a resource available that provides a breakdown/definition of each of the logs in C:\Windows\CCM\Logs?
  • Is there something similar for the logs on the SCCM server itself?

SCCM 2007: data access tab on package: where is it for?

$
0
0

Hi,

I'm working mostly in SCCM 2012, now I have an SCCM 2007 in front of me. I'm a little confused on the DataAccess-tab. I read the Microsoft-article but it doesn't make me any wiser (http://technet.microsoft.com/en-us/library/bb693971.aspx). I made a new package but when I fill it in (yes, location is correct), it does not work, it does work when I don't fill it in.

Please clarify, why it is used, why you should or should not.


Jan Hoedt

Problem with "stuck" distribution points

Deploying Custom Office Templates

$
0
0

Hi, In a Test run I am following from this site how deploy custom office templates. Can someone explain in detail how to deploy with sccm 2007 Please. There are not very many resources online explaining in detail.

Regards,

Darrell

Install local printer Windows 7

$
0
0

Hi

Anyone know of a way to install printers locally on worgroup computers. (Cant install the printer from printserver) I have looked on some vbscript, but seems that they wont run on windows vista or windows 7. I Think powershell is the way to go, but have not found powershell script to do this.

Regards
Trond Erik

Software Distribution and 64-bit OS

$
0
0

Hi, I am having a difficult time getting any and all software dist. to Windows 7, 64 bit machines.  SCCM reports that the advertisement went through ok, but when I check these 64-bit machines, none of the changes I sent are made to the client.  32-bit machines work like a charm.  I've looked in execmgr on one of the clients and I see this:

Successfully raised SoftDistWaitingContentEvent event for program Java 6.30 execmgr 8/6/2013 8:29:25 AM 3768 (0x0EB8)
Execution Request for package 00000180 program Java 6.30 state change from WaitingDependency to WaitingContent execmgr 8/6/2013 8:29:25 AM 3768 (0x0EB8)
Persisting request for program Java 6.30 package 00000180 in state WaitingContent execmgr 8/6/2013 8:29:25 AM 3768 (0x0EB8)
Power lease started with ID = 7154 for 7200 seconds execmgr 8/6/2013 8:29:25 AM 6300 (0x189C)
OnContentAvailable program Java 6.30 NOT available, 0x80091007 execmgr 8/6/2013 8:29:38 AM 9592 (0x2578)
Raising event:
[SMS_CodePage(437), SMS_LocaleID(1033)]
instance of SoftDistAdvertHashMismatchEvent
{
 AdvertisementId = "00020460";
 ClientID = "GUID:316542AF-53EA-4981-A8AC-0DFAF0E74724";
 DateTime = "20130806122938.511000+000";
 MachineName = "L-temp1";
 PackageName = "00000180";
 ProcessID = 2268;
 ProgramName = "Java 6.30";
 SiteCode = "000";
 ThreadID = 9592;
};
 execmgr 8/6/2013 8:29:38 AM 9592 (0x2578)
Fatal error 0x80008602 enountered for program Java 6.30. This program will not retry. execmgr 8/6/2013 8:29:38 AM 9592 (0x2578)
CExecutionRequest::InvalidAndDeleteFromWmi Java 6.30 execmgr 8/6/2013 8:29:38 AM 9592 (0x2578)
CExecutionRequest::InvalidAndDeleteFromWmi Java 6.30 execmgr 8/6/2013 8:29:38 AM 9592 (0x2578)
Execution request deleted for package 00000180 program Java 6.30, advert 00020460 execmgr 8/6/2013 8:29:38 AM 9592 (0x2578)
In CExecutionManager::Notify execmgr 8/6/2013 8:34:40 AM 4420 (0x1144)
Policy deleted for advertisement 00020460 package 00000180 program Java 6.30 execmgr 8/6/2013 8:34:40 AM 4420 (0x1144)

This has been an ongoing problem for several months.  Of course, I now need to get a program out to 64-bit machines. grrr... Any help would be greatly appreciated.

Content never gets copied down to clients

$
0
0
Hello, I built a new Secondary Site. I've configured WebDAV and I've even added my file extension to the ApplicationHosts.config file.  I deploy a .CMD file to machines that hang off of my secondary site.   The package ID CN100332 shows up on the secondary site and the .CMD file is there.   But, on the target machines the .CMD file never shows up.  BUT.....the CN100332 folder does show up under the CACHE folder on the clients, it just has no content.

So I looked at the logs and nothing jumpped out.  It all looks like its working.  I looked in the advertisement status and I see this.

The program for advertisement "CN12036A has not yet started because the content for the package "CN100332" - "Null Deploy" (version 1) has not been acquired. Possible cause: The content for this program must be downloaded into the computer's cache, or the content could not be located. 
Solution: If the program is being downloaded, no action is required. The program will start once the download has been successfully completed. If the content can not be located, ensure that a distribution point with this content is available for this computer. Distribution point availability can be affected by roaming boundary configuration which is used to determine whether distribution points are classified as local or remote, or by enabling distribution points as protected distribution points. Distribution point availability can also be affected if you are using branch distribution points and the advertisement is configured with the option Run program from distribution point instead of Download content from distribution point and run locally. This is because branch distribution points do not support advertisements that are configured to run directly from a distribution point.


-------------------------------------------------------------------------------------------------------

So let me answer each part of this error message.

Solution: If the program is being downloaded, no action is required. The program will start once the download has been successfully completed.   -  Package IS on the secondary site server.  Just not on the clients.

If the content can not be located, ensure that a distribution point with this content is available for this computer.  Again it IS on the DP.

Distribution point availability can be affected by roaming boundary configuration which is used to determine whether distribution points are classified as local or remote, or by enabling distribution points as protected distribution points.   --  I have confirmed that the boundaires are correct for the site and they match the clients in the office I'm trying to deploy software too.


We are NOT using a BDP.



Why does it not install software on the client machines?

mqh7


Upgrading office 2003 to office 2007

$
0
0

 

hi wally

 

i have been wating a reply from the office forum,but still i didn't got any reply for my issue.thats why i put it again here

if i would summarize my issue

 

my testing client pc has already installed offfice 2003.i wanna upgrade this to office 2007 professional plus.so i customized it throuh office customize tool.

so i created a package for office 2007 through the office profesional plus cd.and i create a program.for the command line parameter i have given this

setup.exe/adminfile updates\customized.msp

the package is assiging to client.i checked the execmgr.log file. log file is ok.but no upgrade is happening.

as up to this deploying office 2007 through sms r2 guide helpd me a lot.but still im unable satisfy my client requirement.the office customization tool default behaviour is to remove previous product.

i checked this article but it supporting upto office 2003.

http://www.microsoft.com/technet/solutionaccelerators/cits/mo/swdist/pmsms/2003/pusmsoff.mspx

 

for the testing purposes to check the command is working or not i checked like this.

my client has office enterprise suite i tried the command which i mentioned above manualy.it prompts select a product after that the installation is silent and unistalling the office 2003 and installs office 2007.but if i would try SCCM it  assign to client after that nothing.i think because it need the user invention to select a product.

 

i have the office professional plus too so i tried the above command manually it popus it displays"please wait setup prepares the necessary file windows"after that nothing happening.i know this is not a issue in SCCM.i searched several times wally umfortunatly i cound find any article to do this.

is it possible to do this scenario. i need you're help.dont say put this question in to office forum.i dont have anybody to take  a support.

 

sanka.

 

QAT Undo & Redo Controls

$
0
0

Hi!

I'm trying to recreate just a few of the built-in contols in the QAT. I've been succesful with all of them except with Undo and Redo. The Ribbon Control List states that the Redo and Undo controls are gallery controls but when I use the <gallery idMso="Undo"> or redo I get an error warning from Custom UI Editor For Microsoft Office.

I'm wondering what's the correct way to do this.

Thanks in advance.

Bert

double sending appeared when send a big package from central site server to a DP

$
0
0

I am using SCCM2007R3. often time, I have the following problem:

1. I created a big package (bigger than 10GB) at central site server. then I send it to all DPs.

2. often times, for some DPs, after central site's backup job ran or server rebooted, there will be a duplicated sending to those DP, for same package.

3. those DPs, normally have not so good WAN connection.

anyone has similiar experience and if there is any workaround? this problem bothered me for quite long time and it is really annoying because it consumes double WAN traffic...

thanks in advance!   

Package got advertised on lot of machines - how?

$
0
0

Hi All

We deploy packages using Security groups in our environment.
Each Security group is linked to a collection which has a query.

Based on the security group membership, the machines get added to collections. A advertisement is applied on the collection

There were only 4 machines in the security group/Collection, but somehow got advertised to 9000 machines.

We are unable to figure out how 9000 machines got this advertisement. 

If we check the collection, it shows only 4 machines though.

Similar issue happened few times even before.

Package/Advertisement status under System Status is not helping.

How can we figure out how these machines got this advertisement? 

Please help.  

SCCM server keep refreshing the package with status maseges 2300 and 2301

$
0
0

In my environment, sccm 2007 central server is keep refreshing the packages(more than 100) continiously,

I had see an articlet for hotfix  KB978021 but that is also install in server,

don;t know what to do and what to update and remove for stop this package refresh,

even those packages are available in DPs

SMS Distribution Manager successfully created or updated package
SMS Distribution Manager successfully processed package
SMS Distribution Manager successfully processed package

It repeats it self hundreds of times on some DPs, and thousands of times on others. The thing is this is a task sequence, not a package, i'm not sure why or where i ever specified a DP for the TS.

Any ideas on how to clean them up?


Sharad Singh | My blogs: SharadTech | Twitter:@SinghSharaad | | Please remember to click “Mark as Answer” on the post that helps you.This can be beneficial to other community members reading the thread.

Viewing all 629 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>