Automate USER BASED PACKAGE installations in SCCM 2012

Hi All,
I want to automate the installation of software(in my case a user based package) from the Application Catalog.
Here is just some general information:
1. All software(Applications and Packages) deployed to Device Colllections will be published in Software Center
2. All software(Applications and Packages) deployed to User Based Collections will be published in the Application Catalog
3. Once software has been deployed from the Application Catalog, it is also available/visible in Software Centre .. this could be confusing for (scripted) test purposes!
To Automate installations i tested the following (Powershell) methods:
Methode 1 - Install Device Based Packages (This works)
$SoftwareCenter = New-Object -ComObject UIResource.UIResourceMgr
# to show applications
$Application = $SoftwareCenter.GetAvailableApplications() | where {$_.name -like $APPNAME}
# to install an application
$SoftwareCenter.ExecuteProgram($Application.id, $Application.PackageId, $true)
(once an User Based Package has been installed from the Application Catalog, it will be shown in the results of this method .. but initially it don't!!)
Method 2 - Install Device based Applications (This works)
Invoke-WmiMethod -Namespace root\ccm\clientsdk -Class CCM_Application -Name Install -ArgumentList 0,"xxAPP scope IDxx",$True,$False,1,1
Method 3 - Install User based Applications
Invoke-WmiMethod -Namespace root\ccm\clientsdk -Class CCM_Application -Name Install -ArgumentList 0,"xxAPP scope IDxx",$False,$False,1,1
(once an User Based Application has been installed from the Application Catalog, this method can be used .. but initially it can't!!)
Method 4 - Install User Based Packages (NOT WORKING)
This solution is based on an (scripted) installation from the Application Catalog. Information can be found on the following sites:
http://blogs.technet.com/b/configmgrteam/archive/2012/09/19/extending-the-application-catalog-in-system-center-2012-configuration-manager.aspx
http://allthingsconfigmgr.wordpress.com/2012/10/02/application-catalog-uncovered/#more-284
You can see the usable operations/methodes, by using the following URL in your SCCM 2012 environment:
http://YOURSITE/CMApplicationCatalog/ApplicationViewService.asmx
The method i tried for an installation part is 'installapplication', see example below:
$service.Installapplication($appid, $deviceid, $null)
This syntax is correct because it's giving a result that indicates the my command was correct(when i change the variables it produces an error), but that's it ... no application is installed.
For the record: the operations/methods 'RequestApplicationForUser and GetApplications' are working fine.
There is also log file 'ServicePortalWebService.log' on the Application Catalog Server in
C:\Program Files\SMS_CCM\CMApplicationCatalogSvc\Logs, where i can see that Installation call is (correctly) be done.
To be short:
Is there anybody who can tell me how to automate (with Powershell) an USER BASED PACKAGE installation?
With kind regards,
Hayo Veenstra

Thanks for your reaction.
What i want is creating shortcuts in the startmenu of a user, that initiates a SCCM software installation. We also use this method for our SCCM 2007 environment by initating advertisments. I do not want a required user deployments, because when that user
logs on on another machine (for a short time) .. all his/her software will be deployed. So i do not want to install unnescessary software .. only what a user initiates.
Do you have other suggestions?
I'm not sure about the shortcuts.  But, as for required deployments to users installing on all machines they log onto:  Not if you have User Device Affinity running for you.  You can set a requirement in the application to only install on a user's
primary device.  Another option that we often deploy is to use App-V to deploy a virtual version of that app if the device they logged onto is not their primary.  When they log off, it goes away.  This is all done using User Device Affinity. 
This is new in 2012. 

Similar Messages

  • Fasten the Process of MDT UDI OD Installation in SCCM 2012 R2 OSD

    Hi,
    I have implemented MDT UDI Task Sequence in SCCM 2012 R2 OSD. The issue  which I am facing is the UDI Installation progress is very slow. it is taking around 2 hours to complete the whole Installation. 
    Is there any way to fasten the Process of MDT UDI OD Installation in SCCM 2012 R2 OSD.
    Thanks & Regards,
    Sanjay Dubey

    Application installs can take awhile - it depends on what applications you're installing, and how many.  For instance, installing Office is clearly going to take longer than say 7-Zip.  How many applications are you installing during a normal OS
    deployment?  You can check the AppEnforce.log to see how long an application(s) is taking to install, as the start and end times are recorded.  
    As for the MDT Settings package, how many times are you calling this package?  My task sequence only calls it 5 times, and one of them is before you even get the UDI wizard, while the second and third is an either/or situation, depending on whether
    you do a refresh or a fresh PC build. 

  • Installation of SCCM 2012 R2 and SQL Server 2014 error

    Hello All,
    I am attempting to setup SQL Server 2014 and SCCM 2012 R2 but I keep running into an error stating that "Configuration Manager requires Microsoft SQL Server
    2008 SP2 w/ CU9........ all the way up to Microsoft SQL Server 2012 with CU2 or higher." I am using all evaluation versions for this configuration as we are looking to test and evaluate the products. I was trying it with SQL 2014 because I was running
    into the same error with SQL 2012 and according to "http://blogs.technet.com/b/configmgrteam/archive/2015/03/30/updated-sc2012-configmgr-sp1-and-sc2012r2-configmgr-support-sql-server-2014.aspx" SQL
    2014 is supported with SCCM 2012 R2. SQL is installed locally on the same box. 
    Any suggestions would be appreciated.
    Thanks,
    Tucker
    Update: When running the Pre-Req check these are some of the failed returns.....
    SQL Server Edition: Failed: Configuration Manager primary site and central administration site don't support SQL Server Express Edition
    Not sure why it is recognizing SQL Express as this is a new machine.
    SQL Server service running account: Failed: The logon account for the SQL Server service cannot be a local user account, NT SERVICE\<sql service name> or LOCAL SERVICE.  You must configure
    the SQL Server service to use a valid domain account, NETWORK SERVICE, or LOCAL SYSTEM.
    For the SQL Service I am using a domain account created specifically for this.

    This has nothing to do with moving or restoring. The kb article says "This hotfix provides updated versions of the setup files and enables new installations
    of the System Center 2012 R2 Configuration Manager site database role and the System Center 2012 Configuration Manager SP1 site database role in Microsoft SQL Server 2014"
    Torsten Meringer | http://www.mssccmfaq.de

  • How to inner join attribuet from user with system resource on sccm 2012 query

    Hi , I am using SCCM 2012. Trying to create a WQL query to get list of computers with department name and netbios names,etc. these are in USER  and SYSTEM RESOURCE  object type seperately. The query wizard doesn't allow me to choose sytem
    resource and USER attribute at same time. In JOIN, the inner join also doesn't have SYSTEM RESOURCE attribute class for me to join it with USER attribute class. Any way to resolve this issue so that I can get a query as mentioned?
    I tried the wql below and pasted to my test query, it gave an error. I guess it's because that wql is on sccm2007.
    Please advise,thanks!
    http://social.technet.microsoft.com/Forums/en-US/8c47f069-5390-45bd-a619-5f5498947baa/sccm-query-which-joins-system-resource-and-user-resource?forum=configmgrgeneral
    http://social.technet.microsoft.com/Forums/en-US/8c47f069-5390-45bd-a619-5f5498947baa/sccm-query-which-joins-system-resource-and-user-resource?forum=configmgrgeneral
    Thanks and best regards, -- KF

    Hi,
    Try the suggestion by Garth Jones or post a new thread at
    http://social.technet.microsoft.com/Forums/en-US/home?forum=ITCG
    I am not familiar with WQL, maybe you could get better help at the forum above.
    Juke Chou
    TechNet Community Support

  • WSUS installation on SCCM 2012 R2

    For the life of us we cannot install WSUS on our SCCM 2012 R2 server.
    We tried the \wsusutil.exe postinstall SQL_INSTANCE_NAME="ABC\SUSDB" CONTENT_DIR=X:\WSUS
    We keep getting this error message below, and the highlighted part is the problem.
    The account we are using has access to 'local admin' rights of the SCCM box. Also access to SQL
    We have the proper permissions on the folder, adding also Network Service, etc.
    We cannot get WSUS up and running and keep hitting a wall.   It will not create WSUS website
    Any suggestions would help.
    014-01-31 22:49:42  Setting content location...
    2014-01-31 22:49:42  Fetching ContentDir from registry store
    2014-01-31 22:49:42  Value is W:\WSUS
    2014-01-31 22:49:42  Swtching DB to multi-user mode......
    2014-01-31 22:49:42  Finished setting multi-user mode
    2014-01-31 22:49:42  Writing DB settings to registry...
    2014-01-31 22:49:42  Marking PostInstall done for UpdateServices-WidDatabase in the registry...
    2014-01-31 22:49:42  Starting service W3SVC
    2014-01-31 22:49:43  Configuring IIS...
    2014-01-31 22:49:43  Start: ConfigureWebsite
    2014-01-31 22:49:43  Configuring website on port 8530
    2014-01-31 22:49:43  System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
       at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
       at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
       at Microsoft.UpdateServices.Administration.UseCustomWebSite.ExecuteIisCustomAction(String arguments)
       at Microsoft.UpdateServices.Administration.UseCustomWebSite.Install(Int32 portNumber)
       at Microsoft.UpdateServices.Administration.UseCustomWebSite.InstallAndConfigure(IisConfiguration& iisConfiguration, Int32 newPortNumber)
       at Microsoft.UpdateServices.Administration.PostInstall.ConfigureWebsite(Int32 portNumber)
       at Microsoft.UpdateServices.Administration.PostInstall.Run()
       at Microsoft.UpdateServices.Administration.PostInstall.Execute(String[] arguments)

    Have you seen
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/e1003863-e331-46da-8803-e8625bb6324b/server-2012-wsus-postdeployment-configuration-fails-comprehending-the-log-file?forum=winserverwsus ?
    Jason | http://blog.configmgrftw.com

  • Offline installation of SCCM 2012 r2 Client

    Hi,
    I have to install SCCM 2012 Clients on some VPN client machines VPN Connectivity is slow i have to install the cleints offline.
    for this I have copied ccmsetup.exe  file on local machines and run below Command to complete the installation....
    clients are getting installed but taking a lot of time.. in that case i am still showing some files are downloading from SCCM server in ccmsetup.log 
    please suggest i don not want to download any files from sccm server for the installation on VPN client machines..
    how can i achieve this , i do not want to use any script to make a complex installation just i want to use manual command line as below .. should i copy the complete client folder to VPN client machines for the installation... such things i have also checked
    but in that case still files are being downloaded from SCCM Server.
    ccmsetup.exe
    ccmsetup.exe /mp:SCCM /logon SMSSITECODE=AWS FSP=SCCM
    Shailendra Dev

    hi Narcoticoo,
    here what is my exactly source directory is this D:\SCCMAgent
    or Sccm server ??
    you mean to say the installation is happening w/o any file copying from sccm server , and local source is in use D:\SCCMAgent
    for required file copying.. (that i specified in cmd) ?
    Shailendra Dev

  • Cumulative Update 4 installation for SCCM 2012 R2

    Hi all,
    This is  my first time installing a CU update on SCCM 2012.
    We have an environment with 15 Servers, 1 is a Primary and the other are Site System Servers.
    Would I need to install the CU4 update only to the Primary server? or would I have to deploy the CU4 to the other 14 Site Systems Servers.
    I've been reading the following
    http://support.microsoft.com/kb/3026739
    http://dekeukelaere.com/2014/01/30/implementing-configuration-manager-2012-sp1-cumulative-update-4/
    http://blogs.technet.com/b/configurationmgr/archive/2014/01/29/now-available-cumulative-update-4-for-system-center-2012-configuration-manager-service-pack-1.aspx
    And also if they don't have CU3 on them would I need to do that first, or would
    CU4 encompass previous updates.
    Cheers for any help on this matter.

    When they're only site systems with a role installed than those roles will be upgraded with the primary site installation. Here is one of the many nice posts about the installation process (and order):
    http://www.scconfigmgr.com/2015/02/03/install-configmgr-2012-r2-cu4-in-your-hierarchy/
    Also, you don't have to install CU3 first.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • How to uncheck "install new versions automatically" from INTERNET EXPLORER 11 from SCCM 2012

    We have deployed "Internet Explorer 11" application  through SCCM 2012 console .the deployed application was customized using "Internet Explorer customization wizard 11" tool.
    issue:
    we are getting  "install new versions automatically" check box as checked
    when we see from help about  "about internet Explorer"
    seeking solution:
    how to uncheck "install new versions automatically" check box from SCCM 2012 console.
    please let me know if we have any solution for this instant
    thanks,
    Gc.Hanumareddy

    Hi,
    For option: "install new versions automatically", we can simply prevent it via GPO or registry (the registry entry can also be deployed via GPO)
    Computer Configuration - Administrative Templates - Windows Components - Internet Explorer - Install new versions of Internet Explorer automatically
    Or
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main]    
    "EnableAutoUpgrade"=dword:00000000
    Yolanda Zhu
    TechNet Community Support

  • Slipstreaming CU3 during first installation of SCCM 2012 R2

    Hi
    I am working on automating a SCCM 2012 R2 installation. During a scripted installation using Powershell I want to install CU3. What I want to know is, can I install CU3 with the same command line I use to install SCCM?
    For example:
    Setup.exe /Script C:\MyInstallScript.ini Patch=Z:\CU3.exe
    or
    Start-Process "Z:\SetUp.exe" -ArgumentList "/Script C:\MyInstallScript.ini /Patch= Z:\CU3.exe"
    If this is not possible can I install CU3 in the same Powershel script I use to Install SCCM 2012 R2? For example:
    Start-Process "Z:\SetUp.exe" -ArgumentList "/Script C:\MyInstallScript.ini" -Wait
    Start-Process "Z:\CU3.exe" -ArgumentList "/Quiet" -Wait
    Or something like that. Thanks!

    Hmm can I run the CU3 exe in the same ps script I use to install sccm 2012 R2? Like so:
    Start-Process "Z:\SetUp.exe" -ArgumentList "/Script C:\MyInstallScript.ini" -Wait
    Start-Process "Z:\CU3.exe" -ArgumentList "/Quiet" -Wait
    Or do I have to run it in two different scripts? Because there is a need for a reboot or something.
    The above is small part of the script I use of course.

  • After SUP install event id 1 appearing after installation of SCCM 2012 R2

    I've just built a SCCM 2012 R2 environment.  All appears ok, there aren't any noticable errors within SCCM.  However since installing the SUPs on my CAS and two secondary sites I noticed the following alert appearing in event viewer.
    Event ID 1 - Critical
    System.NullReferenceException\r\nObject reference not set to an instance of an object.\r\n   at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryPropertySingleItem.get_IntegerValue()
       at Microsoft.ConfigurationManagement.AdminConsole.SoftwareUpdateHelper.DisplayUtilities.GetSupSyncStatusIcon(Object sender, ScopeNode scopeNode, IResultObject resultObject, AssemblyDescription& resourceAssembly)\r\n
    Has anyone seen this before?  Should I be concerned?
    (SQL is installed locally.  I've used a named instance.)
    Thanks

    Sorry - my mistake.  We have 1 CAS and 2 Primary Sites.  We have already had a discussion about our need for a CAS - see link
    http://social.technet.microsoft.com/Forums/en-US/0702f44e-8d8c-47cc-a825-5750d70a4cbd/replication-link-failing-or-degraded?forum=configmanagergeneral
    I have checked all the logs above.  SUPSetup.log says installation successful and there are no errors in the wsusctrl.log, wsyncmr.log and wcm.log log files.
    I haven't yet synchronized the software Updates for one of the Primaries with the CAS, as I was planning to kick this off this evening.  The other Primary has sync'd with the CAS no problem.

  • SQL 2012 Enterprise SP1 installation for SCCM 2012 R2

    I am just starting to install SQL 2012 with SP1 Enterprise for SCCM 2012 R2.
    Does anyone have a step by step guide for this install please
    I am planning to install SQL 2012 with SP1 Enterprise as a physical install which I intend to geo cluster later on
    Also I am thinking of installing WSUS on a separate server and get my SCCM 2012 servers (1 primary and 3 secondary) to use this server - would appreciate some help on how this can be setup as well

    That doesn't make sense to me. Both versions are fully supported on virtual and physical platforms.
    Also, I'm with Garth - local SQL all the way.
    Here are my thoughts on the subject
    http://www.gerryhampsoncm.blogspot.ie/2013/10/configmgr-sql-some-tips.html
    ConfigMgr is not a real-time product like Exchange, for example. A certain amount of downtime can be tolerated. I would spend more time implementing a robust backup solution, rather than trying to implement high availability.
    You should be able to recover a ConfigMgr site from SQL backup in a couple of hours.
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Windows Updates are not getting download after installation of SCCM 2012 SP1

    I have installed SCCM 2012 SP1 step by step as per microsoft documents, Now I am getting error while downloading windows updates from microsoft site.
    Error by WCM.log : System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport
    connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host
    Error By wsyncmgr: DB Server not detected for SUP XYZ.com from SCF File. skipping.
    Sync failed: WSUS update source not found on site KSL. Please refer to WCM.log for configuration error details.. Source: getSiteUpdateSource
    STATMSG: ID=6703 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_WSUS_SYNC_MANAGER" SYS=KSL-MUM-SCCM01.KSEC.KotakGroup.com SITE=KSL PID=3688 TID=4752 GMTDATE=Tue May 21 10:59:06.745 2013 ISTR0="getSiteUpdateSource" ISTR1="WSUS
    update source not found on site KSL. Please refer to WCM.log for configuration error details." ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
    I have reinstall my SUP on site server, i have my WSUS & site server is on same server. I have kept my sup setting as per requirment (8530 & 8531)
    Kindly suggest is any other settings need to be done on server side.

    Yes, I know this is an old post, but I’m trying to clean them up. Did you solve this problem, if so what was the solution?
    From your log snip-it, it looks like the firewall is causing your problem. Temporary turn off the firewall and see if that solves your problem.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Automate import applications(app-v) in sccm 2012

    Hi,
    I wonder it there are some ready made tools to import applications, specifically app-v in SCCM 2012.
    F.e. an excel-sheet/csv that is filled in with predefined fields and then can import applications.
    Pls advise.
    J.
    Jan Hoedt

    The only community tool that I know is SCCM 2012 Application Importer, see:
    https://sccmappimp.codeplex.com/
    AFAIK, this tool doesn't work with App-V applications, yet.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • OSD Request User State Storage fails after SCCM 2012 upgrade to R2

    After SCCM upgrade from SP1 to R2 OSD fails on Request User State Storage. Error:
    Task sequence: XXXXX has failed with the error code (0x00004005). For more information, contact your system administrator or helpdesk operator.
    In smsts.log:
    =================================
    <![LOG[Certificate is a self signed certificate. It will not be checked for revocation or expiration.]LOG]!><time="09:27:37.133-120" date="03-14-2014" component="OSDSMPClient" context="" type="0" thread="5984"
    file="smpclientutil.cpp:420">
    <![LOG[Successfuly retrieved public key and verified signature.]LOG]!><time="09:27:37.133-120" date="03-14-2014" component="OSDSMPClient" context="" type="1" thread="5984" file="smpclient.cpp:2604">
    <![LOG[Sending share info request message: <RequestStateStore><ClientID>GUID:BF0F737B-1834-4625-984C-5C9DE2391CFC</ClientID><Reserved2>308202E4308201CCA00302010202103A4DDA5B85D41CAE4D9D220E5006A4FF300D06092A864886F70D01010B050030203110300E0603550403130742313439353230310C300A06035504031303534D533020170D3134303331313038353935385A180F32313134303231363038353935385A30203110300E0603550403130742313439353230310C300A06035504031303534D5330820122300D06092A864886F70D01010105000382010F003082010A0282010100C739D1BFA21BF715C0BCB55FC3B86983AAB9A0AF8BB33977E85CED2225EDAB0635DA31B1864420AD0BECBB947A148C669FA3C3B4EF17F76E2A5F6939FB4390ACA8EA53FE213C487E7DDBBD653963F0DC5F1ED08C20205657902E2EC70881654B7CFFA5C46006F94BCFE6F3C694E4A12A4B70A7F449473F00770660B0721305E2D17856FBE4ECDDEA0EB844E4628CBBCB6CA6859DF935FEF8F2F026D50FD39FFA99833F380F0298EA2A8CD6E023F00B3A008D64BBCCF694A303E5C4A2B9920C5DEDC72D123C4D2B02C429FFC29F80BB792AA05C367490AD5C3FB368D84C4373A7DD0A77A80B1D955E6E34F694B04BB1BF87CD67D697A4BB1FE291150FC8699EB50203010001A318301630140603551D25040D300B06092B0601040182376502300D06092A864886F70D01010B0500038201010031207E781BCF10D96166416C305AADFA53D85343168E5E8A6B41B2B12B53886D1AC75BDFA045598F088AF465853E1261A5D6F0F4DEB2443C0C5F25B4F2746DB52F1B46D5E4D4D7B139CA8281ACA03C37890285BEB721ED186F3D70098EA9D7E61265210B73C18245FE25C16D72E545C9F4544A788632C7A61F6106BAB6A357530241FBB4245F7D5244805BC571F1B024C0825D04C85021E8AC7F94B901F30039C28BAC6DC307F2AC04B9B14A3949697EED015E64611D3427E41537B800D1222CC1FDAF333DE7F59B1A242BBCB65F4D85722A62147CA391684EB6A53D547C78050C341DA0FC99A09842A184842DEE3C5138F2C5AF515DF8D531F850E7A3839E90</Reserved2></RequestStateStore>]LOG]!><time="09:27:37.134-120"
    date="03-14-2014" component="OSDSMPClient" context="" type="1" thread="5984" file="smpclient.cpp:2285">
    <![LOG[Requesting SMP Root share config information from http://server.int.domain.com:0]LOG]!><time="09:27:37.290-120" date="03-14-2014" component="OSDSMPClient" context="" type="1" thread="5984"
    file="smpclient.cpp:2348">
    <![LOG[Received 3963 byte response.]LOG]!><time="09:27:37.333-120" date="03-14-2014" component="OSDSMPClient" context="" type="0" thread="5984" file="smpclient.cpp:2363">
    <![LOG[Adding \\server.int.domain.com\SMPSTORED_39C7CA32$ to list ]LOG]!><time="09:27:37.367-120" date="03-14-2014" component="OSDSMPClient" context="" type="1" thread="5984" file="smpclient.cpp:2403">
    <![LOG[Failed to connect to "\\server.int.domain.com\SMPSTORED_39C7CA32$" (1203).]LOG]!><time="09:27:37.440-120" date="03-14-2014" component="OSDSMPClient" context="" type="2" thread="5984"
    file="tsconnection.cpp:340">
    <![LOG[Failed to connect to "\\server.int.domain.com\SMPSTORED_39C7CA32$" (1203).]LOG]!><time="09:27:37.468-120" date="03-14-2014" component="OSDSMPClient" context="" type="2" thread="5984"
    file="tsconnection.cpp:340">
    <![LOG[Cannot connect to http://server.int.domain.com SMP root share]LOG]!><time="09:27:37.468-120" date="03-14-2014" component="OSDSMPClient" context="" type="3" thread="5984" file="smpclient.cpp:1754">
    <![LOG[ClientRequestToSMP::DoRequest failed. error = (0x80004005).]LOG]!><time="09:27:37.468-120" date="03-14-2014" component="OSDSMPClient" context="" type="3" thread="5984" file="smpclient.cpp:1882">
    <![LOG[Request to SMP 'http://server.int.domain.com' failed with error (Code 0x80004005). Trying next SMP.]LOG]!><time="09:27:37.468-120" date="03-14-2014" component="OSDSMPClient" context="" type="2"
    thread="5984" file="smpclient.cpp:1590">
    <![LOG[Sleeping for 60 seconds before next attempt to locate an SMP.]LOG]!><time="09:27:37.468-120" date="03-14-2014" component="OSDSMPClient" context="" type="1" thread="5984" file="smpclient.cpp:1565">
    =======================
    IIS log:
    =======================
    172.20.0.xx CCM_POST /SMSSMP/.sms_smp op=KeyInfo 80 - 172.20.6.yy SMS+CCM+5.0+TS 200 0 0 2281 2
    172.20.0.xx CCM_POST /SMSSMP/.sms_smp op=RootShareInfo 80 - 172.20.6.yy SMS+CCM+5.0+TS 200 0 0 4088 29
    172.20.0.xx OPTIONS /SMPSTORED_39C7CA32$ - 80 - 172.20.6.yy Microsoft-WebDAV-MiniRedir/6.1.7601 200 0 0 206 19
    172.20.0.xx PROPFIND /SMPSTORED_39C7CA32$ - 80 - 172.20.6.yy Microsoft-WebDAV-MiniRedir/6.1.7601 405 0 0 1496 1
    172.20.0.xx PROPFIND /SMPSTORED_39C7CA32$ - 80 - 172.20.6.yy Microsoft-WebDAV-MiniRedir/6.1.7601 405 0 0 1496 1
    ======================
    Allow clients to connect anonymously enabled on DP
    On SMP file share permissions enabled for everyone
    Any suggestions where to look?

    Hi,
    Please try to access
    \\server.int.domain.com\SMPSTORED_39C7CA32$ using Network Access Account from the workstation you working on.
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Troubleshooting UNAV package installs during SCCM TS

    We use driver packages filtered by WMI to install drivers and we have never had any luck installing the UNAV driver.  So we are trying to install the UNAV setup.exe during the post windows install portion of the Task Sequence 
    It's a standard program running a batch that reads "%~dp0setup.exe -s -sms" My issue is  it fails during the TS but I see no error trapping in the smsts.log.
    Any help on installing UNAV setup.exe in a SCCM TS or point me in the direction of how to troubleshoot woudl be appreciated.
    Below is a portion of the TS pertaining to the package:
    Parsing step node: INSTALL(P) - NEW UNAV Mouse for T540p and X240 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Description: TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    ContinueOnError: true TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    SuccessCodeList: 0 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    A condition is associated with the step found TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Found and operator. TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    There are 1 operands TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    **Processing operator node TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Found or operator. TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    There are 2 operands TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    **Processing expression node TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Found SMS_TaskSequence_WMIConditionExpression expression. TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    **In ProcessBuiltInCondition node: expression TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    There are 2 operands in the built in action TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Operand Namespace=root\cimv2 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Operand Query=SELECT * FROM Win32_ComputerSystem WHERE Model = '20BFS1GJ00' TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Successfully added 3 condition parameters TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    **Processing expression node TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Found SMS_TaskSequence_WMIConditionExpression expression. TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    **In ProcessBuiltInCondition node: expression TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    There are 2 operands in the built in action TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Operand Namespace=root\cimv2 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Operand Query=SELECT * FROM Win32_ComputerSystem WHERE Model = '20AMS37500' TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Successfully added 3 condition parameters TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Disable: TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Run in attribute: FullOS TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Timeout: TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    DefaultVarlist found TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Variable name: _SMSSWDProgramName TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Action command line: smsswd.exe /pkg:CAS000AA /install /basevar: /continueOnError: TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Adding instruction at 194 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Processed all elements TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Adding end group instruction at 195 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    The next instruction after group will be at 196 TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)
    Processing group TSManager 4/28/2014 11:35:47 AM 2704 (0x0A90)

    What specific UNAV package are you trying to install?  What OS?  What machine? 

Maybe you are looking for

  • Startup BSOD since upgrade to Win 7

    Satellite L300 was running Vista 32 sweet as a nut, never any problems. Upgraded to 7 and twice in the last few weeks have got an error on startup "Page fault in non-paged area". The Startup Repair utility has not been able to repair but system start

  • Is there a bug in Adobe Reader for Unix?

    I have the most recent version of Reader as of November 2010 (I think it's 9.4.3). PDFs downloaded from the Federal Direct Loan Servicing Center (student loans) are not working right. (This affects students in the United States.) I don't know if it's

  • Programmatically playing the "next" video in a playlist results in the old video playing as well

    (Using OSMF v1.6) When a video has finished playing, my player will automatically play the next video in a playlist, after doing the following: var loadTrait:LoadTrait = myMediaElement.getTrait(MediaTraitType.LOAD) as LoadTrait; loadTrait.unload(); m

  • JPopupMenu - Problem with Handling ESC character.

    As per the Javadoc, it says ESC is the key for retracting the PopupMenu. But it is not retracting whenever we press ESC. Is this a bug? If it is not a bug, how do i retract the popup menu when the Esc is pressed. Thanks, -Shenbugs

  • Small web site question :(

    Hello.... I got the DW CS3 trial, and I have a question: I made my site, but there's a problem. When I go to www."mysite".com, it shows my newer index page. when I go to "mysite".com with out the "www." it goes to my older one. I can't even find the