Failed to open WMI Namespace virtualapp.log

Sometimes pushing app-v Application doesn't work on some machines and when looked at virtualapp.log file,you will see something like below. “Failed to open the WMI namespace [root\microsoft\appvirt\client]” from C:\Windows\SysWOW64\CCM\Logs\VirtualApp.log. What does the above Error says ? The WMI namespace was not created during the install of the App-V Client. You can verify it by typing…

Microsoft Office 2013 (Office 15.0) is now available for consumers !! For download, click HERE and for MSDN members HERE Languages pack and others download http://search.microsoft.com/en-us/DownloadResults.aspx?q=office%202013&ftapplicableproducts=^Office Deployment guide for Office 2013 Preview download : http://download.microsoft.com/download/4/8/B/48B0E72E-11C0-4E6E-AA23-6B777FADCF7A/Deployment-guide-for-Office-2013-Preview.pdf To read more about System Requirements ,visit http://technet.microsoft.com/en-us/library/ee624351(office.15).aspx Original post, please read http://www.system-center.fr/?p=3240

  I had requirement to check for some specific packages if their programs are used in any other packages or not . Take an example that ,Microsoft visual C++ is prereq for multiple applications and to know what packages used this specific VC++ ,it will be hard to find all parent packages using VC++ as…

This script requires one notepad file(Input) with list of machines you need for and output(CSV Format) will be opened once the script runs. Set fso=CreateObject("scripting.filesystemobject") Set objinputfile=fso.OpenTextFile("eskonr.txt",1,True) Set objoutputfile=fso.OpenTextFile("servicestatus.csv",2,True) Do While objinputfile.AtEndOfLine <> True strcomputer=objinputfile.ReadLine Set objWMIService = GetObject("winmgmts:"_     & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")     Set colRunningServices = objWMIService.ExecQuery("Select * from Win32_Service WHERE…

Full Details : http://social.technet.microsoft.com/Forums/en-US/configmgrreporting/thread/188bb324-9217-4fa6-b814-06a3d353bf52 Boundary information (AD Site) added . select distinct v_GS_SYSTEM.Name0 as 'Computer Name',A.AD_Site_Name0, substring(AccountName0,charindex('Domain=',Accountname0)+8,(charindex('Name=',Accountname0)-charindex('Domain=',Accountname0)-10)) as 'Domain Name', substring(AccountName0,len(AccountName0)-charindex('"',reverse(AccountName0),2)+2,charindex('"',reverse(AccountName0),2)-2) as 'User Name' from v_GS_SYSTEM INNER JOIN v_GS_LocalAdmins ON v_GS_SYSTEM.ResourceID = v_GS_LocalAdmins.ResourceID INNER JOIN v_R_System A ON v_GS_SYSTEM.ResourceID=A.ResourceID JOIN v_FullCollectionMembership FCM on v_gs_system.ResourceID = FCM.ResourceID where (AccountName0 not like '%Administrator%' AND AccountName0 not like…

Did you ever find difficulty in identifying the site system information when you have multi-tier hierarchy like  central,multiple primary sites and each primary has primary and secondary sites. It is difficult to identify and check for site settings (like discovery,Site maintenance Tasks etc.) OR Site Component Information until you know all site verywell . To…