Script via SCCM

Hi,
Hope someone could help to resolve my problem! The thing is that I have script which installs application, but in first action script check if there is any previous version installed and if is then it give prompt for users to remove that version before installing
new one and script quits, so basically if previous version is not installed then installation runs normally and now the problem is that if previous version exist it just starts installation process after downloading quickly do something and shows installation
finish but no prompt no nothing happened, but if I go to ccmcashe folder and run it manually then it give me the prompt, so where is the problem? I have no idea. Can someone please help?

Since no one has answer this post, I recommend opening  a support case with CSS as they can work with you to solve this problem.
Garth Jones | My blogs: Enhansoft and
Old Blog site | Twitter:
@GarthMJ

Similar Messages

  • Trying to deploy a VB Script via sccm 2012 R2

    Hello All
    This is my first attempt at deploying a script via SCCM 2012 R2 and I seem to be stuck. Essentially what this script does is map a printer. The script on its own works fine. Meaning it works when I double click it and also running it from the command
    line. Its  when I try to use in sccm things go down hill. I have tried the following from the command line in the package properties.
    \\my-sccm-server\Sources\Applications\VBSripts\cscript.exe Impact.vbs
    \\my-sccm-server\Sources\Applications\VBSripts\Impact.vbs 
    Phil Balderos

    looks good :)
    You can check execmgr.log on the client to monitor the install as it is running.
    Thank Richk,
    Still no luck. Here is the output from execmgr.log. Its saying that is completed but nothing ever happens. I am about ready to throw in the towel on this one but I just feel like that is should work because its such a simple script.
    Set WshNetwork = CreateObject("WScript.Network")
    WshNetwork.AddWindowsPrinterConnection "\\srv-gtt-papercut\followme"
    WshNetwork.SetDefaultPrinter "\\srv-gtt-papercut\followme"
    Phil Balderos
    Is the script running as an Admin ,if so then you likely set the printer up for the local system user account and not anyone else.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • VBS Script to update Acrobat via SCCM (SMS)

    I posted this on the wrong forum so I was sent over here...
    Good day everyone. So I found the following script and have tested it manually on a computer of computers, but somewhat failes via SCCM:
    Dim objShell, RegLocate
    Set objShell = WScript.CreateObject("WScript.Shell")
    On error resume next
    Dim sngVersion
    ''' Adobe 7.0.0
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-BA7E-000000000002}\DisplayVersion")
    if sngVersion="7.0.0" then
    objShell.run "msiexec /p AcSt710.msp /quiet /qn /norestart", 0, True
    end if
    ''' Adobe 7.0.0
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-7760-000000000002}\DisplayVersion")
    if sngVersion="7.0.0" then
    objShell.run "msiexec /p acpr710.msp/quiet /qn /norestart", 0, True
    end if
    ''' Adobe 7.1.0
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-BA7E-000000000002}\DisplayVersion")
    if sngVersion="7.1.0" then
    objShell.run "msiexec /p AcroUpd711.msp /quiet /qn /norestart", 0, True
    end if
    ''' Adobe 7.1.0
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-7760-000000000002}\DisplayVersion")
    if sngVersion="7.1.0" then
    objShell.run "msiexec /p AcroUpd711.msp /quiet /qn /norestart", 0, True
    end if
    ''' Adobe 7.1.1
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-BA7E-000000000002}\DisplayVersion")
    if sngVersion="7.1.1" then
    objShell.run "msiexec /p AcrobatUpd712_all_incr.msp /quiet /qn /norestart", 0, True
    end if
    ''' Adobe 7.1.1
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-7760-000000000002}\DisplayVersion")
    if sngVersion="7.1.1" then
    objShell.run "msiexec /p AcrobatUpd712_all_incr.msp /quiet /qn /norestart", 0, True
    end if
    ''' Adobe 7.1.2
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-BA7E-000000000002}\DisplayVersion")
    if sngVersion="7.1.2" then
    objShell.run "msiexec /p AcrobatUpd713_all_incr.msp /quiet /qn /norestart", 0, True
    end if
    ''' Adobe 7.1.2
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-7760-000000000002}\DisplayVersion")
    if sngVersion="7.1.2" then
    objShell.run "msiexec /p AcrobatUpd713_all_incr.msp /quiet /qn /norestart", 0, True
    end if
    ''' Adobe 7.1.3
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-BA7E-000000000002}\DisplayVersion")
    if sngVersion="7.1.3" then
    objShell.run "msiexec /p AcrobatUpd714_all_incr.msp /quiet /qn /norestart", 0, True
    end if
    ''' Adobe 7.1.3
    sngVersion = objShell.RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{AC76B A86-1033-0000-7760-000000000002}\DisplayVersion")
    if sngVersion="7.1.3" then
    objShell.run "msiexec /p AcrobatUpd714_all_incr.msp /quiet /qn /norestart", 0, True
    end if
    WScript.Quit
    As you can see, I am locating all different versions and then installing the correct patch.  When I run it manually it works just fine, but via SCCM it updates some but not with all patches, just some patches.  Any idea what is wrong?  Thanks

    You might try the Acrobat Scripting Forum http://forums.adobe.com/community/acrobat/acrobat_scripting

  • Deploying Lync 2010 client via SCCM

    I am trying to distribute the new Lync client via SCCM (SCCM is not the problem here, this related to any software distribution product).
    I am getting frustrated at the way the new client has been packaged - LyncSetupEval.exe in particular. Why can't Microsoft provide a simple MSI file?
    I can run the LyncSetupEval.exe file with /Install /Silent, but this managed to crash OUTLOOK.exe when it runs. Also when it completes, it automatically starts communicator.exe in the SYSTEM context, meaning that unless you restart your machine, you
    cannot run the Lync client in the user context. 
    Is anyone else having the same frustrations? I've played around with the files in the OCSetup directory, but there are of no use.

    Hi Ryan,
    Happy to share. I do a simple messy batch file / VB Script combination like this:
    @echo off
    ECHO Set wshShell = CreateObject( "WScript.Shell" ) >> usermessages.vbs
    echo wshShell.Popup "The Microsoft Lync 2010 client is about to be installed.  Please close Microsoft Outlook and Internet Explorer before clicking OK to continue.", 300, "Microsoft Lync 2010 installation" >> usermessages.vbs
    ECHO WScript.Sleep(5000) >> usermessages.vbs
    WSCRIPT.EXE usermessages.vbs
    DEL usermessages.vbs /q
    ECHO Installing Microsoft Lync 2010...
    taskkill /F /IM communicator.exe
    taskkill /F /IM outlook.exe
    taskkill /F /IM iexplore.exe
    LyncSetup.exe /Install /Silent
    taskkill /F /IM communicator.exe
    msiexec.exe /p OUTLOOK.msp /qb-!
    office2007-kb936864-fullfile-x86-en-us.exe /passive /norestart
    msiexec.exe /update Lync.msp /qb-!
    ECHO Set wshShell = CreateObject( "WScript.Shell" ) >> usermessages.vbs
    echo wshShell.Popup "The Microsoft Lync 2010 client installation was successful and can now be run from the Start Menu.", 300, "Microsoft Lync 2010 installation" >> usermessages.vbs
    WSCRIPT.EXE usermessages.vbs
    DEL usermessages.vbs /q
    I'm sure it could be a lot nicer, there is no error passing or anything but it has served me well.
    blog.danovich.com.au

  • Silent install of Photoshop Elements 10 via SCCM fails

    Hi all, hoping someone can help. I'm trying to push out deployment of Adobe Photoshop Elements 10 via SCCM. From Adobe's site I found details on adding an XML file to preconfigure various default settings and perform a silent install.  I can push out
    the package to my test PC's cache folder no problem, but the advertisement fails with "Failed (bad environment)" message ID 10003. The system cannot find the file specified."
    However, I can install the program manually, running the same code from the command line. So, on my test PC, if I go to c:\windows\system32\cache\(package) from the command line, I can type the following "start /wait Setup.exe /UL1033 /V"SERIALNUMBER=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx"
    (as per Adobe's instructions) and Photoshop Elements 10 will silently install just fine.
    I've read elsewhere that SCCM can have issues with server paths and making use of the %~dp0 variable but I'm unsure if that applies here. In SCCM, in the program properties for PE10, the drive mode is set to "Runs with UNC name." I tried changing to 'requires
    drive letter" but it still failed. I'm guessing I'm dealing with some sort of environment issue but I'm stuck as to how to fix. Any suggestions?
    Thanks in advance,
    Sir_Timbit

    I used "start /wait" as that was what was listed on Adobe's silent install instructions at http://helpx.adobe.com/photoshop-elements/kb/silent-install-instructions-photoshop-elements-1.html
    Again, it installs fine manually, *if* I point a command prompt to c:\windows\system32\ccm\cache\(cache folder)\ and run the start /wait setup.exe line below. But through SCCM, the advertisement report shows:
    Message ID:10003. Failed (bad environment)
    An error occurred while preparing to run the program for advertisement "ABC20074" ("ABC00041" - "Install Photoshop Elements 10"). The operating system reported error -2147024894: The system cannot find the file specified. Additional program properties: Command
    line: start /wait Setup.exe /UL1033 /V"SERIALNUMBER=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" Working directory: Drive letter (? = any): Possible cause: This message most commonly occurs when the program's command-line executable file could not be found, when a required
    drive letter connection to a distribution point could not be established, or when the program is configured to use the SMS Software Installation Account but the account is not specified, could not be found, or does not have the appropriate permissions. Solution:
    Check each of the items listed above.
    Execmgr.log on the client shows the following:
    <![LOG[Successfully selected content location C:\WINDOWS\system32\CCM\Cache\ABC00041.1.System]LOG]!><time="12:01:25.056+360" date="08-13-2012" component="execmgr" context="" type="1" thread="3860" file="executioncontext.cpp:1703">
    <![LOG[GetFileVersionInfoSize failed for file C:\WINDOWS\system32\CCM\Cache\ABC00041.1.System\start, error 1812]LOG]!><time="12:01:25.071+360" date="08-13-2012" component="execmgr" context="" type="2" thread="3860" file="executioncontext.cpp:119">
    <![LOG[Executing program as a script]LOG]!><time="12:01:25.071+360" date="08-13-2012" component="execmgr" context="" type="1" thread="3860" file="executionengine.cpp:103">
    <![LOG[Invalid executable file start]LOG]!><time="12:01:25.071+360" date="08-13-2012" component="execmgr" context="" type="3" thread="3860" file="scriptexecution.cpp:511">
    <![LOG[Raising event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of SoftDistProgramBadEnvironmentEvent
        AdvertisementId = "ABC20074";
        ClientID = "GUID:8892F324-A104-4E4B-A3A1-0F2571233B59";
        CommandLine = "start /wait Setup.exe /UL1033 /V\"SERIALNUMBER=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx\"";
        DateTime = "20120813180125.087000+000";
        DriveLetter = "";
        MachineName = "PCAB31";
        PackageName = "ABC00041";
        ProcessID = 268;
        ProgramName = "Install Photoshop Elements 10";
        SiteCode = "ABC";
        ThreadID = 3860;
        Win32ErrorCode = 2147942402;
        WorkingDirectory = "";
    ]LOG]!><time="12:01:25.087+360" date="08-13-2012" component="execmgr" context="" type="1" thread="3860" file="event.cpp:525">
    <![LOG[Raised Program Bad Environment Event for Ad:ABC20074, Package:ABC00041, Program: Install Photoshop Elements 10]LOG]!><time="12:01:25.087+360" date="08-13-2012" component="execmgr" context="" type="1" thread="3860" file="executioncontext.cpp:739">
    <![LOG[EnterRsRuningState failed to run script start /wait Setup.exe /UL1033 /V"SERIALNUMBER=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx" 0x80009106]LOG]!><time="12:01:25.087+360" date="08-13-2012" component="execmgr" context="" type="2" thread="3860" file="executionrequest.cpp:3318">
    <![LOG[Fatal error 0x80009106 enountered for program Install Photoshop Elements 10. This program will not retry.]LOG]!><time="12:01:25.165+360" date="08-13-2012" component="execmgr" context="" type="1" thread="3860" file="executionrequest.cpp:3477">
    <![LOG[CreateMandatoryRequestRecursively Install Photoshop Elements 10 failed at EvaluateRequestForExecution]LOG]!><time="12:01:25.227+360" date="08-13-2012" component="execmgr" context="" type="2" thread="3860" file="execreqmgr.cpp:3765">
    <![LOG[Policy is updated for Program: Install Photoshop Elements 10, Package: ABC00041, Advert: ABC20074]LOG]!><time="12:01:25.243+360" date="08-13-2012" component="execmgr" context="" type="1" thread="3968" file="execreqmgr.cpp:6711">
    Thanks in advance for any help you can provide,
    Sir_timbit

  • Silent Install for SQL 2008 admin tools, to be pushed out via SCCM 2012

    Hi I would like to know if you have any information on Silent App installs for MS SOL fetchers only? I really need to know what MSI to use in my Application and any switched i can incorporate for deployment though SCCM 2012.
    Thanks,
    Manny

    Hi,
    do you want to install SQL 2008 admin tools? and what tools do you want to install? and what is your application?  And do you want to deploy the installation script via SSCM? Please be more clear.

  • Manual formatted for C: and D: drive Via SCCM 2012 task sequence

    Dear All
    i have a problem with the formatting of the HDD by using SCCM 2012 , our Co. have laptops with C: &
    D: drive and we started to implement our W7 migration by using SCCM 2012 and we face the a problem which is how to keep the data of the D drive either during the deploy the new W 7 image our after we deployed the image with C and D drive .
    we create a task sequence to format the whole HDD and then make two partition .
    but our target to keep the old users data in D: drive in case of system crash .
    so can we do the format issue manually via  task sequence to can control the size of the HDD and just
    format the C: drive
    i read in internet there is a Disk partition script can be apply during the task sequence activity to control
    the formate issue.
    or to stop the formatte issue for D: drive via SCCM.

    Dear  EminM
    thanks
    for your replay 
    you are right i mean the laptop has C and D partition 
    we make a TS which was  configure to crate two partition 
    After we complete our Task sequence we face problem that TS format the two partition and that mean  we will loss the data in D partition in case we need to apply this TS in the future to any laptop has system crash .
    our target to have TS just format the C partition and leave the D partition without any action to be able to save the data in the D partition without any corrupted.
    for that do you have an idea to do that TS .

  • How can i deploy plugins for Firefox via SCCM

    Hello All,
    I've been asked to deploy some plugins for all our users (namely AdBlock, FireIE and NoScript) across the whole domain. We'd like to do this via SCCM as it is centrally managed and works the best for our environment, plus with people being offsite a lot we can also control and deploy through our VPN solution.
    I've read many sources and found that it's not really centrally manageable (currently) or so straightforward. I've found a way to create a deployment that include the plugins which is sufficient in terms of deployment but not ideal, however the main problem is the automatic deployment of settings for the plugins. For example, in the FireIE plugin we have a number of internal websites that use SSO and having the ability to use these within Firefox is extremely advantageous not only for security reasons but also in terms of performance. I can export and import settings but don't want to have to do this for every single user as it would take an awful long time.
    Is there a simple way to create a deployment in SCCM (whether it be MSI based, script based, whatever) that would allow this to happen.
    All help is greatly appreciated!

    Check out the ESR community they will have better advice.
    Other resources:
    *[https://developer.mozilla.org/en-US/Firefox/Enterprise_deployment]
    *[https://developer.mozilla.org/en-US/docs/Deploying_a_Plugin_as_an_Extension]

  • Copy Script in SCCM Not Working

    Hi,
    I have a shortcut file which needs to be copied over to the user's desktop. I have packaged the shortcut file and the batch script. The batch script works when running directly on the system but it fails when done via SCCM.
    copy /y "%~dp03DVIAComposer R2014.lnk" "%UserProfile%\Desktop\"
    I have tried different combinations of the scripts but none of them works via SCCM. The error is "Failed to verify the executable file is valid or to construct the associated command line".

    ConfigMgr will run the batch file with SYSTEM credentials, which will cause problems with your current batch file. You should change the %UserProfile% and test the batch file with something like PSEXEC.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • How to call a shell script via ODI

    Hi,
    I need suggestion on following issues:
    1) How to call a shell script via ODI?.. I tried using OSCommand utility .inspite of the execution being successful the data is not written into the new file in the desired format. After processing new file is created in the mentioned location but its empty.
    2) I'm calling a procedure in ODI to load data into my fact. But once the fact gets loaded i want to update the log details (num of rows processed,num of rows inserted,num of rows rejected etc) in my log table. I'm planning to use a proc for updating but need to know from where can i find these details. Is there a table in work rep which gives me these info like how we get if we execute an interface.?
    Please help me out.. Its urgent
    Regards
    Surabhi

    Hello,
    Question 1 appears a little vague, please elaborate. If you're looking to capture a return value from the command execution, you will need to pipe the return value to a file, then read from there.
    The execution information is stored in the SNP_STEP_LOG table in the Work Repository. You will need to do a series of joins to retrieve the exact table that was updated. Good luck with this...

  • Error while trying to add a SQL Script via DB02

    Good Morning and happy Sysadmin day to everyone,
    I have the following Problem regarding DB2 9.5
    I'm trying to run a SQL Script via DB02 in an ERP 6.0 System.
    I'm using DB02 -> Jobs -> SQL Script Maintenenace -> Add
    Then there is a Textfield "Script Name". When i'm using the F4-Help I'm getting the following error Message:
    List box value range for field DYN_SED-SCRIPT_NAME could not be created
    Message no. DB6PM004
    Any suggestions what might be the Error?
    Thanks in Advance
    Marco

    Are you trying to create a new Model or trying to import a Model ?

  • How to change maintenance powershell script via GPO?

    Per suggestion reposted from here: http://social.technet.microsoft.com/Forums/windowsserver/en-US/6eece9d6-a524-48aa-8e64-7554f0ec9b31/how-to-change-maintenance-powershell-script-via-gpo?forum=winserverGP
    Posted at http://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/desktop-shortcuts-to-items-on-network-drives/94eddb27-342b-40fc-9ad4-677ff4ee8ebe?page=9&tm=1403700614489 originally.
    There is a very annoying "feature" in Windows 7 called BrokenShortcuts.ps1 which is being called out weekly via maintenance task and if it finds more than 4 "broken" network shortcuts it removes them all. So it means if a user at this
    moment is disconnected from the network he will lose all links to shares, network applications sitting on his desktop. Funny that there was no such script on Vista and i don't see this on Win8. On the post i have attached one user suggested to edit this script
    and change 4 to 500 or whatever high number. That's fine for one time fix. But i need to do this for 200+ users. This file cannot be simply replaced by a script, so i'm wondering is there any way to do it via GPO?
    I have already tried various startup scripts, but i'm not sure which user to put into commands.
    I need to run this on startup:
    takeown /F C:\Windows\diagnostics\scheduled\Maintenance\TS_BrokenShortcuts.ps1
    icacls c:\windows\diagnostics\scheduled\maintenance\TS_BrokenShortcuts.ps1 /grant "some user":F
    copy \\share\folder$\TS_BrokenShortcuts.ps1 C:\Windows\diagnostics\scheduled\Maintenance\ /Y

    You need to take time to study how Windows does these things.  You can control them with GP which is what you asked.  The article shows you how to disable elements of the tasks.  Each task controls a script.  If you disable the task the
    script that deletes shortcuts will be stopped. Other maintenance tasks will continue to run.
    Most of your problem is that you seem to want someone to provide a magical solution.  In technology it is necessary to fully research your issues until you understand all aspects.  After fully studying the issue you should understand the possible
    solutions if they exist.
    You claim to have deployed the patch that Microsoft released to fix the issue.  You claim it didn't work.  If that is the case then you need to call MS and \p[en a support incident.  If  Microsoft determines that you are right about the
    patch not working you will not be charged for the call.
    I know that learning how to support technology is hard and frustrating for newcomers.  In time, by using these incidents to learn, you will become a seasoned technician and all of this will seem trivial.  Until then we can only suggest that you
    do things that most of us are familiar with.  We cannot fix your network for you.
    I think you haven't really posted in the GP forum but posted a question about GP in the server forum.  Try posting in the GP forum.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverGP
    Here is one answer from the GP forum:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverGP
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/600ca14f-8b1b-400c-b27f-a7f5733407ac/windows-scheduled-maintenance-task?forum=winserverGP
    ¯\_(ツ)_/¯

  • Deploying Office 365 Pro Plus via SCCM

    Hi
    I am trying to deploy Office 365 Pro Plus via SCCM, I followed this process https://gallery.technet.microsoft.com/How-To-Deploying-Office-70e8b1eb#content , we don't use the application catalogue but I made the application available to be run via system
    center.
    Though can't get it deployed, I keep getting some errors about checking internet connections ...though I can run the command manually and it'works.
    Does anyone managed to install it via SCCM ?

    Thank you for the reply,
    Where I am lost is where it downloads the Office C2R from ? 
    Logs from the Temp folder
    03/04/2015 10:51:15.947 SETUP (0xf10)
    0x107c Click-To-Run
    anhmm Medium
    Prereq::PrereqsFailed: No prereqs have failed.
    03/04/2015 10:51:16.228 SETUP (0xf10)
    0x107c Click-To-Run
    aoh9t Medium
    TryLaunchClient::HandleStateAction: Launching OfficeClickToRun.exe with parameters: scenario=unknown acceptalleulas="True" cdnbaseurl="http://officecdn.microsoft.com/pr/39168D7E-077B-48E7-872C-B232C3E72675" productreleaseid="none"
    displaylevel="False" culture="en-us" baseurl="C:\WINDOWS\ccmcache\5l" lcid="1033" platform="x86" updatesenabled="False" o365proplusretail.excludedapps="access,groove,lync,project,sharepointdesigner,visio"
    version="15.0.4675.1003" productstoadd="O365ProPlusRetail_en-us_x-none" trackedduration=280
    03/04/2015 11:01:12.393 SETUP (0xf10)
    0x107c Click-To-Run
    aoh72 Medium
    ExitBootStateMachine::HandleStateAction: Bootstrapper workflow exiting with result: 0x0
    Logs from SCCM AppEnforce shows this (can't see it failing)
    <![LOG[+++ Starting Install enforcement for App DT "Install - Microsoft Office 365 ProPlus" ApplicationDeliveryType - ScopeId_2A03C658-AF66-44B9-85ED-4FADE04A803B/DeploymentType_5a39078c-a7a3-438c-af16-0cb0a0674479, Revision - 7, ContentPath
    - C:\WINDOWS\ccmcache\5l, Execution Context - System]LOG]!><time="10:50:45.222-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appprovider.cpp:1702">
    <![LOG[    A user is logged on to the system.]LOG]!><time="10:50:45.243-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appprovider.cpp:2083">
    <![LOG[    Performing detection of app deployment type Install - Microsoft Office 365 ProPlus(ScopeId_2A03C658-AF66-44B9-85ED-4FADE04A803B/DeploymentType_5a39078c-a7a3-438c-af16-0cb0a0674479, revision 7) for system.]LOG]!><time="10:50:45.247-600"
    date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appprovider.cpp:2148">
    <![LOG[+++ Application not discovered. [AppDT Id: ScopeId_2A03C658-AF66-44B9-85ED-4FADE04A803B/DeploymentType_5a39078c-a7a3-438c-af16-0cb0a0674479, Revision: 7]]LOG]!><time="10:50:45.287-600" date="03-04-2015" component="AppEnforce"
    context="" type="1" thread="5596" file="localapphandler.cpp:291">
    <![LOG[    App enforcement environment: 
    Context: Machine
    Command line: Setup.exe /configure Install.xml
    Allow user interaction: No
    UI mode: 1
    User token: null
    Session Id: 1
    Content path: C:\WINDOWS\ccmcache\5l
    Working directory: ]LOG]!><time="10:50:45.288-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appcontext.cpp:85">
    <![LOG[    Prepared working directory: C:\WINDOWS\ccmcache\5l]LOG]!><time="10:50:45.290-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appcontext.cpp:189">
    <![LOG[    Prepared command line: "C:\WINDOWS\ccmcache\5l\setup.exe" /configure Install.xml]LOG]!><time="10:50:45.340-600" date="03-04-2015" component="AppEnforce" context="" type="1"
    thread="5596" file="appcontext.cpp:338">
    <![LOG[    Executing Command line: "C:\WINDOWS\ccmcache\5l\setup.exe" /configure Install.xml with user context]LOG]!><time="10:50:45.341-600" date="03-04-2015" component="AppEnforce" context=""
    type="1" thread="5596" file="appexcnlib.cpp:201">
    <![LOG[    Working directory C:\WINDOWS\ccmcache\5l]LOG]!><time="10:50:45.341-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appexcnlib.cpp:215">
    <![LOG[    Post install behavior is BasedOnExitCode]LOG]!><time="10:50:45.529-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appcommon.cpp:1094">
    <![LOG[    Waiting for process 3856 to finish.  Timeout = 120 minutes.]LOG]!><time="10:50:45.533-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596"
    file="appexcnlib.cpp:1958">
    <![LOG[    Process 3856 terminated with exitcode: 0]LOG]!><time="11:01:12.428-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appexcnlib.cpp:1967">
    <![LOG[    Looking for exit code 0 in exit codes table...]LOG]!><time="11:01:12.429-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appexcnlib.cpp:505">
    <![LOG[    Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="11:01:12.430-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appexcnlib.cpp:584">
    <![LOG[    Performing detection of app deployment type Install - Microsoft Office 365 ProPlus(ScopeId_2A03C658-AF66-44B9-85ED-4FADE04A803B/DeploymentType_5a39078c-a7a3-438c-af16-0cb0a0674479, revision 7) for system.]LOG]!><time="11:01:12.621-600"
    date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appprovider.cpp:2148">
    <![LOG[+++ Application not discovered. [AppDT Id: ScopeId_2A03C658-AF66-44B9-85ED-4FADE04A803B/DeploymentType_5a39078c-a7a3-438c-af16-0cb0a0674479, Revision: 7]]LOG]!><time="11:01:12.739-600" date="03-04-2015" component="AppEnforce"
    context="" type="1" thread="5596" file="localapphandler.cpp:291">
    <![LOG[++++++ App enforcement completed (627 seconds) for App DT "Install - Microsoft Office 365 ProPlus" [ScopeId_2A03C658-AF66-44B9-85ED-4FADE04A803B/DeploymentType_5a39078c-a7a3-438c-af16-0cb0a0674479], Revision: 7, User
    SID: ] ++++++]LOG]!><time="11:01:12.748-600" date="03-04-2015" component="AppEnforce" context="" type="1" thread="5596" file="appprovider.cpp:2448">

  • Lync 2013 x64 silent client deployment via SCCM 2012 SP1

    Greetings everyone!
    I ran into a problem with Lync 2013 x64 silent deployment.
    I need to provide every workstation with Lync 2013 client, so i decided to use deployment via SCCM 2012 sp1.
    I created 2 msp files with OCT, one based on x86 Office 2013 Proplus, and other based on x64 Office 2013 Proplus.
    Added them as applications to sccm software library.
    Deployment of Lync 2013 x86 application was a success with over than 80% compliance. 
    But all Lync 2013 x64 automatic installations finish with different errors.
    I created special device collection for workstations with office 2010 x64 and 2013 x64, because i can't install other architecture products once it has x64 product installed.
    My membership query-rules for this collection:
    Office 2013 x64
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceId
    = SMS_R_System.ResourceId where UPPER(SMS_G_System_INSTALLED_SOFTWARE.SoftwareCode) = "{90150000-0011-0000-1000-0000000FF1CE}"
    Office 2010 x64
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceId
    = SMS_R_System.ResourceId where UPPER(SMS_G_System_INSTALLED_SOFTWARE.SoftwareCode) = "{90140000-0011-0000-1000-0000000FF1CE}"
    My application deployment type points to setup.exe in office 2013 x64 installation folder, where i created msp file in updates folder via OCT and edited config.xml file in proplus.ww folder.
    So my installation program looks like this setup.exe /adminfile updates\1lync.msp /config proplus.ww\config.xml
    The same configuration works with Lync 2013 x86 deployment, except other setup folders.
    When i try running installation program setup.exe with /adminfile and /config parameters locally, it installs successfully without errors or warnings.
    I'm trying to find out problem source, does anyone have ideas what I am doing wrong?
    Also i'm trying to reduce office 2013 installation folder size, what subfolders are necessary for Office 2013 proplus installation (still installing only lync with common files and tools)? Because now 3.5 GB package is quite hard to distribute to sccm secondary
    sites with deployment point.
    Thanks in advance.

    Hi,
    Here are some tips and tricks for your reference.
    Tips and Tricks: Deploying Lync 2013 client using SCCM 2012 | Lync 2013 Client Customization for SCCM 2012 Deployment Package
    http://zahirshahblog.com/2014/01/08/tips-and-tricks-deploying-lync-2013-client-using-sccm-2012-lync-2013-client-customization-for-sccm-2012-deployment-package/
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    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.

  • Deploying MBAM 2.5 via SCCM 2012R2 with minimal interaction.

    Is it possible to deploy Bit-Locker encryption in a zero/minimal touch installation? I need to replace the current encryption solution on a good amount of devices and need to get them turned around and back to the users ASAP. I am still working on the back
    end infrastructure but am trying to plan ahead.
    In a perfect world my deployment would be as follows;
    1. Deploy the client via SCCM to devices connected to the LAN and have it reboot automatically after installed.
    2.  Have an answer file that sets an administrator PIN answers all prompts and initiates encryption.
    3. Users boot their devices and are prompted to create a PIN.

    Have you already solved how you will decrypt and uninstall current security solution silently? I bet it is the hardest part here. Then you just push MBAM Client and set encryption enforcement via GPO. I don´t see any point of having PIN answer file. PIN
    code is something which user owns, there is no sence admin to set it. If you want to apply PIN, you have to promt the user to enter it. But this is just my opinion. Good luck :)

Maybe you are looking for

  • Ink system failed Error:Oxc1​8a0101 on photosmart D7160

    Changed the ink cartridges and got Ink system failure.  Unable to print.  Error: Oxc18a0101 Printer not that old and not used that much.  Turned power off then on again did not help.  Unplugged power and USB also did not help. Looking for help!!! Thi

  • Unable to download Raw files from Canon 5D Mark III. [was:Blue flower]

    When I download my raw images from  my canon eos 5d mark 3 I get a blue flower and no image. How do I fix this.

  • Eating up hard disk space - help, please!

    I've burned two dvd's from digital video tapes using the "one-step" method, and have gone from around 50Gb to 8Gb. How do I get rid of the files that are taking up that space?

  • Retractable firewire cables ...

    Hi all, Thinking I'd treat myself to a Christmas cable-cleanup, I purchased some Iogear ReelQuick Firewire 6pin-to-6pin retractable cables. Problem is, once I got them and read the fine print, I saw they have a 5V maximum voltage supported, so they w

  • Change in cost in report

    hi gurus i have got a KEY FIGURE i,e cost of invoice.. actually the problem is when m runing a query this particular Key figure changing its decimal place like IN CUBE its value is 167.2 while in report it showin 16.72 kindly suggest me the way to re