App-V packages not streaming on VMWare View VDI

Hello All,
We are currently running SCCM 2012 R2 CU2 on VMware View VDI's.
We maintain our golden image using SCCM OSD.
NExt to applications installed in the image, we are also using app-v packages.
Before we can deploy the image, it needs to be stripped (or sysprepped) so as to garantuee that the clones will not report to the Management Point using the same SCCM Guids etc.
There for we perform the following:
net stop "CcmExec"
Remove-Item c:\windows\smscfg.ini
Get-ChildItem -Path cert:\LocalMachine\SMS | Remove-Item
Get-wmiObject -Namespace root\ccm\invagt -class inventoryActionStatus | where {$_.inventoryactionID -eq "{00000000-0000-0000-0000-000000000001}" } | remove-wmiobject
Clear-EventLog -logname Application
Clear-EventLog -logname System
Clear-EventLog -logname Security
Get-ChildItem c:\windows\ccm\logs | remove-item
When we deploy the new version of an image, we see that APP-V packages are not being streamed immediately to the clients.
While troubleshooting, I noticed that whenever I login and run a Machine Policy Evaluation & Retrieval cycle, that a ccmrepair and ccmrestart is being executed.
After the restart, the client immediately starts streaming the App-V packages.
Can anyone help me in pinpointing where the ccmrestart gets triggered from?
I've searched to already a lot of logs (ccmexec, execmgr, policyagent, policyevaluator,..) for the root cause but am unable to find it.
Many thanks in advance!
Filip Theyssens

Hi,
I just ran the action "Machine Policy Evaluation & Retrieval cycle" on my client, the Ccmrepair and Ccmrestart were not being executed from the logs.
You could trigger the CcmRestart by running "%windir%\CCM\CcmRestart.exe".
Best Regards,
Joyce
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.

Similar Messages

  • ZCM 11.2.4 in a VMWare View VDI environment

    We have been running 11.2.4 in our View VDI environment and overall been very successful. We just rolled Win 7 and are seeing approx. 10% of the VMs with the zenworkswindowsservice.exe running steadily around 50% for hours. Any thoughts? One thing I just set to try was excluding that from Microsoft FEP AV. Anything other thoughts to resolve? Thanks.

    There are no known issues regarding VMWare view that would cause this.
    For AV see -> http://www.novell.com/support/kb/doc.php?id=7007545
    I find ProcMon for Sysinternals useful to see if other prcesses such as
    AV are hitting those files unexpectedly. A few times I have seen AV
    Exclusions not quite working as expected until tweaked.
    The ZMD-Messages.log may show if the agent is doing something....
    On 9/30/2014 9:36 PM, harrymsg wrote:
    >
    > We have been running 11.2.4 in our View VDI environment and overall been
    > very successful. We just rolled Win 7 and are seeing approx. 10% of the
    > VMs with the zenworkswindowsservice.exe running steadily around 50% for
    > hours. Any thoughts? One thing I just set to try was excluding that
    > from Microsoft FEP AV. Anything other thoughts to resolve? Thanks.
    >
    >
    Going to Brainshare 2014?
    http://www.brainshare.com
    Use Registration Code "nvlcwilson" for $300 off!
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Technical Support Engineer
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • Cisco ISE & NAC Agent in a Vmware View VDI Environment

    Hi,
    Anyone deployed Cisco ISE NAC agent on a vmware view virtual desktop environment (VDI)?

    There are no known issues regarding VMWare view that would cause this.
    For AV see -> http://www.novell.com/support/kb/doc.php?id=7007545
    I find ProcMon for Sysinternals useful to see if other prcesses such as
    AV are hitting those files unexpectedly. A few times I have seen AV
    Exclusions not quite working as expected until tweaked.
    The ZMD-Messages.log may show if the agent is doing something....
    On 9/30/2014 9:36 PM, harrymsg wrote:
    >
    > We have been running 11.2.4 in our View VDI environment and overall been
    > very successful. We just rolled Win 7 and are seeing approx. 10% of the
    > VMs with the zenworkswindowsservice.exe running steadily around 50% for
    > hours. Any thoughts? One thing I just set to try was excluding that
    > from Microsoft FEP AV. Anything other thoughts to resolve? Thanks.
    >
    >
    Going to Brainshare 2014?
    http://www.brainshare.com
    Use Registration Code "nvlcwilson" for $300 off!
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Technical Support Engineer
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • App-v packages not getting distributed with all files to DP's

    Hi ,
    I am migrating appv 4.6 packages from standalone to sccm 2012 , using application model in sccm,
    all seems to be fine , but sccm is not distributing the folders,vbscripts, etc except osd,xml,sft,sprj.. to DP
    what is the issue any resolution for this.
    app has lot of dependency on vbscripts to run.
    screenshot for reference.

    That's most likely fine because ConfigMgr stores the content in the contentlib. Also see that all files have the .INI extension. You can use Content Library Explorer (part of the R2 toolkit) to examine the package. 
    Torsten Meringer | http://www.mssccmfaq.de

  • Why can't constants of a package not be use in view definition?

    Hi,
    maybe the answer is obvious, but I don't understand why this is not possible.
    We have a large numer of key tables which define an ID-number (PK, generated by sequence), a short and long description as well as a numeric ID (AK1, in most cases autogenerated by max+1), which is intended for usage in programs, when a certain row of a key must be selected in the business layer. We call this column the type-ID of the key. A type-ID cannot be changed once assigned. Rows cannot be deleted physical, only logical (i.e. set column ACTIVE to FALSE).
    We have a large numer of PL/SQL packages that use those type ID's. For every business object we define a globally available package that contains all necessary type ID's defined as constants, e.g.
    create or replace package GLOBTEST is
    CONST1 constant KEY_TABLE.TYPE_ID%type := 1;
    end;
    In all other packes we can use these constants (e.g. GLOBTEST.CONST1) instead of those "magic numbers". Now we have the situation that we must define quite a few views that must use those type IDs. But here we can't use these constants, e.g.
    create or replace view V_TEST as
    select GLOBTEST.CONST1 as CONST1 from DUAL;
    results in error. What would be the best way to avoid using "magic constants"? We already defined functions which do nothing more than returning the appropriate constant. However we have the feeling that this is not the best way.
    TIA,
    Stefan
    Message was edited by:
    stefanm

    Stefan,
    You could try creating OBJECT views. I believe you would be able to call the constants already defined in packages in these object views. In the object views you can create member functions in case you want to do some manipulation of these constants or other data.
    Shakti
    http://www.impact-sol.com
    Developers of Guggi Oracle - Tool for DBAs and Developers

  • My iPhone 4s will not switch to landscape view when streaming a video on Facebook. It works on YouTube and safari, just not Facebook. Help?

    My iPhone 4s will not switch to landscape view when streaming a video on Facebook. It works on YouTube and safari, just not Facebook. Help?

    Well I deleted the Facebook app and reinstalled the latest version to try to correct the issue and it still didnt work. I had changed a bunch of settings earlier to try and fix it and it worked for the video to be landscape but as soon as I closed out of the app and re-opened it then it quit working.

  • Only in app, not in the Content Viewer?

    My client is in mainland china and our company is located in other country. We have to publish multi-issue magazine in  china.
    We had sent all the documents including GAPP license to a Chinese Agent in mainland china and he confirmed everything was done to publish.(Our chinese client bought professional DPS License in china)
    But until now my client could not see anything in the Content Viewer. We tried so many different ways - we uploaded folio via chinese VPN, My client in china uploaded other folio directly in the mainland.. - and nothing works. (We-in the other country-
    can see all the folios)
    As far as I know if publishing in china become possible, I could see 'china distribution menu and checkbox' in the account administration menu in the DPS Administration site. But there is no such a menu in the administration menu.
    So I think the chinese agent does not make things fully prepared.
    But in the last meeting, the agent insisted that our client will not see any folio on the Content Viewer because they only connect to a server outside china, but if we make developer-distribution app and send the app to the client then our client can see all the folios because the developer app connect to the server in china.
    We already know that the server for chinese distribution in separated and located in china. Because I had read the explanation in china-contributor document, I suppose that the developer-app thing would not work.
    Because my client are in some vacation, we can not contact them for a while.
    So I want to know which action we have to do. 1 or 2 ?
    1. Just wait until the vacation is over, request UDID of the client and make a developer app. And send it to the client.
    2. Call the agent now and tell them something was not fully prepared, so they need to check the process again.
    Thanks in advance

    Yes, I downloaded the required updates for InDesign today, but the app was created yesterday before these updates were available.  What is the fix for this?  Is there going to be an updated Content Viewer released any time soon?

  • App for SharePoint online : Resource files can not with the app install package deployment

    I come from China, my English is not very good, bring you the confusion, I apologize;In the development of the APP to the store, I met a problem, hope someone can help me to solve, thank you very much, specific as follows:
    The development tools: vs2012
    Platform: office 365 development version
    Host:Auto
    Problem presentation:
    Press "F5" debugging running normally,Generate app install package, deploy to test environment, the app page error, tip can't find the resource file"
    error:
    Server Error in '/' Application.
    Object reference not set to an instance of an object.
    Description: An
    unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
    Source Error: 
    Line 107: <div id="FoundareADUserIndex_PageHead">
    Line 108: <span><img alt="" src="../images/head.png" height= "45px" width="45px" /> </span>
    Line 109: <span style="color: #000000; font-size: 28px; font-weight: bold"><%=HttpContext.GetGlobalResourceObject("FoundareADUserResource", "foundare_index_head").ToString()%></span>&nbsp;
    Line 110:
    Line 111:
    Source File: c:\DWASFiles\sites\fzym9dfaguchcdqnvjrwcr2pqasevj5hpvhmcaydkdg1.0.0.0\VirtualDirectory0\site\wwwroot\Pages\Default.aspx   
    Line: 109 
    Stack Trace: 

    Hi,
    According to your post, my understanding is that you want to use resource files in your SharePoint app project.
    Here is an article for your reference:
    http://msdn.microsoft.com/en-us/library/office/fp179919.aspx
    Code sample: SharePoint 2013: Localize the app web, host web, and remote components of an app
    http://code.msdn.microsoft.com/office/SharePoint-2013-Bookstore-328060fc/sourcecode?fileId=60464&pathId=1536365664
    Best Regards
    Dennis Guo
    TechNet Community Support

  • App-V package running OK on Virtual PC but not on Physical PC

    Hi all, 
    I have very strange behavior of a app-v package that i am testing.
    first i do the sequence on a virtual PC and then also check it on another virtual PC - the package running perfect!!
    then i test it on a physical PC- the deployment working OK, also the program running OK. but some important functions that need to be on this program are not showing.
    Then i do the sequence on a Physical PC- same issues.
    As i wrote - this are the same package on both PCs. Virtual (Hyper V) - Working, Physical - not working. 
    The versions: server -5.0 SP2, Sequencer- 5.0 Hotfix 4, Client - 5.0 SP2 Hotfix 5.
    Also the OS (Win 7 With SP1 64Bit) is the same on both clients. the OS is clean just the prerequisite for app-v client and the app-v itself are installed.
    What can cause this issue that the package won't working on physical PC?
    Thank you all for your help.

    Hello,
    Regarding the procmon capture;
    Yes, it is a lot of data. I would just start at the top and read my way down on both captures and then identify areas which they differ. Without understanding where the two captures differ, well - it would seem hard to understand where the difference in
    behaviour starts?
    Of course you can minimize the data by (this seems rather obvious, but lets re-iterate);
    1. Avoid all and any unnecessary background tasks
    2. Monitor normal system activity and exclude that
    3. Learn the application behavior and decide if you want to monitor only the application, or all system activity
    4. Understand the application
    As you have a working / non-working scenario - this seems like a perfect scenario of using ProcMon.
    Nicke Källén | The Knack| Twitter:
    @Znackattack

  • Youtube App Not Streaming/Buffering.

    Hello all, this is my first post, just got the ipod touch, amazing gadget!
    Right, everything is working fine, i am getting a constant 100% signal from my wireless router setup all the time. However, the built in Youtube App in the ipod touch will not stream and buffer any Youtube videos at all. It will try to play the video's on Youtube, but ends up stopping all the time after about a few seconds. I have a 10mb internet connection.
    Can anyone advise?
    Thanks.

    Hello, yes youtube works superb on my Notebook, i get a 100% signal all the time, as i do on my main pc upstairs.
    Now here's the thing, i went round my cousins last night, connected to her wireless network, and youtube streamed perfectly, so then, we can assume it is my wireless router, it's working fine, but maybe needs tweaking in its settings?
    Can anyone give any pointers at which area to look at?
    Thanks,
    C.

  • Maps App "3D" icon blue even though it is NOT in the 3D view...

    So this has probably been going on for a while but i'm just now writing something up about it.
    When i'm looking at the Maps - either on an iPhone, or iPad.... the 3D icon is sometimes blue, but NOT showing in 3D view.....if i tap on the 3D icon - the icon remains blue, but also adjusts into the 3D view....
    so why is it that it's blue when it is NOT in 3D view?
    Other times - it is not blue, and it is not in 3D - so it works as designed....but most of the time not.
    Is this a bug and has this happened to anyone else?

    Humph... I know I have had these experience myself, but don't remember how I solved it.
    What happens if you mark it, and then right-click on the blank gray area (under "places" for example)? Do you then get the "remove from sidebar" option?

  • App-V packages won't run until they are fully download - App-V 5.0 SP2

    Hey guys
    we're using App-V 5.0 in our Pooled VDI environment
    we waited for HF4 for a long time to be able to upgrade from SP1 to SP2
    now we have a new Base Image with that client and with %APPDATA% folder redirection (unlike the Base Image with SP1 client that the %APPDATA% is local
    we're facing a weird issue that I couldn't find any solution for it
    When user logs on to the SP2 HF4 image, it takes FOREVER until we see App-V package shortcuts and can start using them (Some of the packages are a few GBs).
    Finally when the packages fully arrive I see on the App-V Client UI that the package is ready for offline use! though we never check the
    Force application(s) to be fully downloaded before launching (recommended for low/WAN networks) during the streaming phase while sequencing
    when I go to the Event viewer I see thousands of these:
    it's like there's an event for each file in each package
    The same user with the same permission logs on to an image with SP1 client and he can start use App-V packages immidiately.
    even if we load the packages manually it doesn't take so much time like it does on the logon refresh
    nothing has changed in our client configuration settings between the versions
    any suggestions?
    thanks
    Tamir Levy

    Hi Agalucci
    thank you for your reply. I know this is not an error. it's just there's event for every file of every unsynced package and it can take an hour until the sync completes.
    * my environment is non-persistant VDI
    * We do have some Applications on the master image so it includes C:\ProgramData\App-V
    * This is a tricky one. I use standard folder redirection on my %APPDATA% folder, so... you tell me. I use citrix UPM for roaming. from my understanding it is useless to exclude the catalog folder from there as %APPDATA% is not managed via UPM.  tried
    to find what is the best practice in this case and couldn't find a documentation about running a logoff script that will delete this folder.
    we don't update our master image very often so there are some applications that are synced only when the users logon (BTW, we also use Share Content Mode)
    but my complain is about the fact that Office 2013 for example, it can take 20 minutes to sequence, which in fact it doesn't need to download the package as we use Shared Content Mode so I don't uderstand why it is taking so long
    Tamir Levy

  • ThinApp Packages not Detected by Workspace

    I have a VMware Horizon View 6 Proof of Concept environment. I have configured ThinApp within View and added some packaged apps. I have assigned these ThinApps to a desktop pool and they are successfully pushed out to the virtual desktops when users login. So from that point of view I am happy the ThinApps are working OK.
    However, I have just installed Workspace 2.1 and it is not detecting the ThinApp packages. I have enabled View Pools within Workspace and it detects my desktop pools OK. I have also enabled ThinApp packaged applications and pointed it at my ThinApp file share. However, every time I try and manually sync (or the automatic sync runs) from within Workspace I get the following error:
    Push is scheduled to take place:
    Every day at 11:55 pm
    Error occurred in Packaged applications (ThinApp) sync. Please check if Packaged applications (ThinApp) configuration is correct and the share path is reachable.
    The /var/log/messages log on the virtual appliance contains this:
    2015-01-08T09:54:14+00:00 XXXXXwork01 ThinAppRepoService: t@349c7700: Starting import cycle from share (\\XXXXXview01.viewtest.internal\ThinApp\).
    2015-01-08T09:54:14+00:00 XXXXXwork01 ThinAppRepoService: t@349c7700: Mount path [\\XXXXXview01.viewtest.internal\ThinApp\] is CIFS, acquiring credentials.
    2015-01-08T09:54:14+00:00 XXXXXwork01 ThinAppRepoService: t@349c7700: Initializing application share discovery
    2015-01-08T09:54:14+00:00 XXXXXwork01 ThinAppRepoService: t@349c7700: Initialization of Application share discovery was successful
    2015-01-08T09:54:14+00:00 XXXXXwork01 ThinAppRepoService: t@349c7700: Ending import cycle (0 app scanned, 0 app processed).
    So Workspace is successfully connecting to the Share but cannot detect any of the ThinApp packages. I have tried rebuilding one of the ThinApp packages with the "Manage with VMware Workspace" option ticked, but the package still isn't detected. The permissions on the file share and the packages look correct.
    What do I need to do to get Workspace to detect the ThinApp packages?

    Thanks very much! That fixed it!
    I was starting to tear my hair out over that one. All I had to do was stick the ThinApps in subfolders.
    Thanks again!

  • Updated my iphone4 with ios6.1 software. App store is not working. Tried rebooting, restoring, changing date, signing with another apple id etc. but no luck. can someone please help?

    Updated my iphone4 with ios6.1 software. App store is not working. Tried rebooting, restoring, changing date, signing with another apple id etc. but no luck. can someone please help?

    I guess I will wrap this up. I have abandoned iPhoto and viewing my Photo Streams using it and moved to Adobe products (Bridge + PS). So that's that.

  • How to use Sunray  without VDI or VMware View Manager

    There is no VDI or VMware View Manager in my test environment. Only srss 4.2 and srwc 2.2 has been installed.
    Now i have 5 sunray client and 5 Windows XP VM. How can I let every user use their Windows XP VM in this environment and can enable USB redirection?
    In page http://wikis.sun.com/display/SRWC2dot2/Managing+USB+Device+Redirection+%28All+Topics%29
    Supported Configurations
    Configuration
    SRS 5 (SRSS 4.2, SRWC 2.2) and Sun Ray Connector Kiosk Session
    Description
    Supports connection to Windows desktop using the Kiosk session.
    My question is How to let mutipl-user use it in this config
    The following is my settings and all users now can use their own Windows XP but USB redirection cannot work
    Select Common Desktop Environment (Obsolete) in Kiosk mode add an application:
    cam_script.windows_connector,
    #!/bin/ksh
    # Script to map smartcard token to individual VM using either
    # the "User Name" or "Other Info" field of the output from
    # utuser -p <token>
    # Look at output from utuser -p ${SUN_SUNRAY_TOKEN} and grab hostname
    # % utuser -p user.1140788210-7053
    # Current Properties:
    # User Name = tester5
    # Other Info = host
    # Server Name = localhost
    # Server Port = 7007
    # Logical Token = user.1140788210-7053
    # User Created = 02/24/2006 13:36:50
    # Token Enabled?
    # Payflex.500af8ad00130100 Yes
    # Currently Logged In:
    # Current Desktop = 0003bad7566e
    # Desktop Location =
    # Logged In Since = 02/24/2006 13:36:58
    # Use "User Name" field as hostname of VM to connect to
    #VMHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "User Name" | awk '{ print $4 }'`
    # Use "Other Info" field as hostname of VM to connect to
    #VMHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "Other Info" | awk '{ print $4 }'`
    WinHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "Other Info" | awk '{ print $4 }'`
    # Could probably do a ping test here and pop up dialogue
    # about getting support to check the availability of the
    # machine (might event be able to use VC API to power up VM?)
    # if it doesn't respond to ping. Could use something like
    # dterror.ds, could also pop up different dialogue
    # if VMHOST is not set
    COLOUR_DEPTH=16
    # If using 24bit need registry change under Windows XP
    #COLOUR_DEPTH=24
    # Fix F11 and F12
    #/usr/openwin/bin/xmodmap -e 'keycode 75 = F11'
    #/usr/openwin/bin/xmodmap -e 'keycode 76 = F12'
    # Fix alt & print screen
    #/usr/openwin/bin/xmodmap -e 'keycode 77 = 0xff62'
    # Turn on numlock
    /usr/openwin/bin/xset led 1
    if [ "${WinHOST}" = "" ]; then
         #dterror.ds "Your Windows Machine can not be determined.\n\nPlease contact support and ask for smartcard \n\n${SUN_SUNRAY_TOKEN}\n\nto be associated to a Windows Machine" "Smartcard not configured" "ERROR"
         WinHOST="Windows_default"
    fi
    # Run Windows Connector in full screen mode at appropriate colour depth with sound redirection
    # Disable the windows pulldown header in full-screen mode
    # RDP Window Attributes options to disable are:
    # -D wallpaper
    # -D fullwindowdrag
    # -D menuanimations
    # -D theming
    # -D cursorshadow
    # -D cursorsettings
    /opt/SUNWuttsc/bin/uttsc -mb -A ${COLOUR_DEPTH} -r sound:high -u "" ${WinHOST}
    #if [ "$?" = "0" ]; then
    #     dterror.ds "Logging Out..." "Log Out" "OK"
    #else
    #     dterror.ds "Your Windows Machine ${VMHOST} is not visible on the network.\n\nIf you have just restarted it please wait a minute and try again\nIf you still have problems get help" "Windows VM is not available" "OK"     
    #fi
    # End of CAM script
    Then add IP address in other information of Token.

    Meta Kiosk would certainly do what you need and the USB pass through works.
    http://blogs.sun.com/danielc/entry/meta_kiosk_how_to_run
    I think the problem you are running into is that you are using uttsc inside a Solaris environment as an app, looks like CDE, which isn't being supported to my knowledge to avoid conflicts between the two desktops. It is designed to work out of the box with SRWC kiosk mode.
    The undocumented way to turn it on is to turn usb on by adding -r USB:on as an argument.

Maybe you are looking for