SCCM 2012 How to gerenrate reports Microsoft Office 2003, 2007, 2010

I need an sql query to generate a report that includes Microsoft Office 2010, 2007 and 2003 only.

You can either built a custom report with Installed applications (microsoft office%) or take a look at the readymade reports from enhansoft - I just installed some of them earlier today and they have Office reports builtin -
http://enhansoft.com/
Kent Agerlund | My blogs: blog.coretech.dk/kea and
SCUG.dk/ | Twitter:
@Agerlund | Linkedin: Kent Agerlund |
Mastering ConfigMgr 2012 The Fundamentals

Similar Messages

  • Deploying Office 2003/2007/2010/2013 with App-V Resources and Solutions

    Please do not respond to this thread with sequencing issues - please start a new thread.
    The following articles and resources are available for virtualizing various versions of Office with App-V 4.6 and 5.0:
    Microsoft Guidance
    Important: Supported scenarios for deploying Microsoft Office as a sequenced App-V Package
    Prescriptive Guidance for Sequencing Office 2010 in App-V 4.6 SP1
    Prescriptive guidance for sequencing Office 2010 in Microsoft App-V
    Known issues and limitations when using virtualized Office 2010 applications on App-V 4.6 and App-V 4.5 SP2 clients
    Deploy Office 2010 by using Microsoft Application Virtualization
    How to use System Center Configuration Manager 2007 to confirm that the Microsoft Office 2010 Deployment Kit for App-V is installed
    Everything You Need to Know for a Successful Microsoft Office 2013 App-V Deployment
    Microsoft Resources
    Microsoft Office 2010 Deployment Kit for App-V
    Microsoft Application Virtualization 4.5 Service Pack 2
    Microsoft Application Virtualization 4.6 Service Pack 1
    Building a Technical Proof of Concept for the Joint Deployment of Windows 7 and Microsoft Office 2010
    App-V Package Accelerator for Microsoft Office Professional Plus 2010 -Windows 7
    App-V Package Accelerator for Microsoft Office Professional Plus 2010 (Windows XP)
    App-V Package Accelerator for Microsoft Project Professional 2010 (Windows 7)
    App-V Package Accelerator for Microsoft Project Professional 2010 (Windows XP)
    Microsoft Official Blogs
    Sequencing Office 2010 for App-V - Part 1: Considerations
    Sequencing Office 2010 for App-V, Part 2 – Preparing the Sequencing Workstation
    Sequencing Office 2010 for App-V, Part 3 – The Actual Sequencing Part
    Sequencing Office 2010 for App-V, Part 4 – Getting it to your users
    Solution: Possible Side-by-Side error when sequencing Office 2010 on Windows Vista
    When to sequence Office 2010 from scratch and when to use the Package Accelerator
    App-V MVP Resources
    White paper - The Definitive Guide to Delivering Microsoft Office with App-V
    softgridblog.com: Microsoft Office 2010, more integration in App-V 4.6
    Delivering Office with App-V – Sequencer Recommendations & Best Practices
    Threads with solutions:
    Cannot Open Office Documents from SharePoint with virtualized Office 2010
    KMS Key problem sequencing Office 2010
    Office 2010 Adding Additional Proxies
    Outlook 2010 Virtual Search Issues
    Office 2010 Searching
    Office 2010 Excel Documents will not open from Explorer
    sequencing project 2010 successfull, but features (icons) missing / greyed out
    Technet License Key problem with Microsoft Office 2010 Deployment Kit for App-V
    Outlook mailto FTA
    Sequencing Office 2010 x32 on App-V 4.6 x64

    Don't forget these helpful lists either!!! :)
    http://blogs.technet.com/b/gladiatormsft/archive/2013/01/26/must-have-app-v5-0-migration-resources.aspx
    http://blogs.technet.com/b/gladiatormsft/archive/2013/02/02/office-2013-deployment-and-migration-resources.aspx
    Steve Thomas, Senior Consultant, Microsoft
    App-V/MED-V/SCVMM/Server App-V/MDOP/AppCompat
    http://blogs.technet.com/gladiatormsft/
    The App-V Team blog: http://blogs.technet.com/appv/
    The MED-V Team Blog: http://blogs.technet.com/medv
    The SCVMM Team blog: http://blogs.technet.com/scvmm/
    “This posting is provided "AS IS" with no warranties, and confers no rights. User assumes all risks.”

  • Microsoft Office Communicator 2007 R2 Client

    Hi,
    Wanted to know how to install the Microsoft Office Communicator 2007 R2 Client on Blackerry Bold 9700 v5.
    Please advice.

    Please ask over here:
    http://social.microsoft.com/Forums/en-US/home?category=officecommunicator
    Good luck!
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Office 2003+2007, script to take away the acl's for suffix .doc .ppt .xls

    for a better understanding…
    we have permissions problems with saving from microsoft office 2003 + 2007 on a server volume (osx server 10.5.5).
    if a user saves a document one a share, there are added some strange acl like everyone and stuff, and with every 'ctrl+save' there are duplicated…
    more information you will find in this link http://discussions.apple.com/thread.jspa?messageID=8073847
    for this reason I tried to write a .sh script which a liked to use as a folderaction script (automator)
    I would like use crontab, but seams that doesn't work under 10.5 !!!
    if I call the .sh in the app. terminal it seams to work, even if there shows up some error message for each founded file
    "chmod: Failed to clear ACL on file *.doc: No such file or directory"
    the mkdir gugu I putted in there to make sure, that the script is going in the correct dir
    with the automator, this script doesn't work, I guess it is because the failed message …
    there is the hole script
    #!/bin/sh
    pfad="/Volumes/datatrunk/test/"
    cd "$pfad"
    find . -name "*.xls" -exec chown fileserver {} \;
    find . -name "*.xls" -exec chmod 755 {} \;
    find . -name "*.xls" -exec chmod -N *.xls {} \;
    find . -name "*.xls" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.xls" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.doc" -exec chown fileserver {} \;
    find . -name "*.doc" -exec chmod 755 {} \;
    find . -name "*.doc" -exec chmod -N *.doc {} \;
    find . -name "*.doc" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.doc" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.ppt" -exec chown fileserver {} \;
    find . -name "*.ppt" -exec chmod 755 {} \;
    find . -name "*.ppt" -exec chmod -N *.ppt {} \;
    find . -name "*.ppt" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.ppt" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.pdf" -exec chown fileserver {} \;
    find . -name "*.pdf" -exec chmod 755 {} \;
    find . -name "*.pdf" -exec chmod -N *.pdf {} \;
    find . -name "*.pdf" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.pdf" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    mkdir gugu
    any help would be grateful

    Hi
    Cron does still work in 10.5, however its better if you use launchd. If you're not comfortable with launchctl then you could use Lingon instead? This provides a graphical interface for launchd and is freely available. Google for an appropriate download site or use this link:
    http://mac.softpedia.com/get/System-Utilities/Lingon.shtml
    For assistance with the script you could cross-post over in the Technologies Forum? You might get a better/quicker response:
    http://discussions.apple.com/category.jspa?categoryID=162
    http://discussions.apple.com/forum.jspa?forumID=724
    http://discussions.apple.com/forum.jspa?forumID=735
    Tony

  • SCCM 2012 Built in Compliance Report - I don't understand well

    SCCM 2012 Built in Compliance Report not understanding
    I am using built in compliance reports in SCCM 2012 (Compliance 1 – overall compliance), which is giving me inconsistence report.
    For now, I am now updating many of my servers manually and finding out- how I can show compliance report using SCCM
    I have a created a software group only for compliance propose for Aug 2014, containing all updates for all versions of Windows Servers. I have not changed/updates that software group.
    Before Microsoft released last patches, the software group didn’t have any expired updates.
    I had good number of servers, where showing compliant
    However, after new patched have released and I have patched some servers manually, I can now see that I have some servers in to Non-compliant section, which were in compliant section two weeks before.
    I also have now lots of server showing in: Compliance state unknown, which I didn’t have two weeks before.
    I know, client servers supposed to report to SCCM in every 7 days and I can manually push a client to report to SCCM from client agent. Please help me to understand
    Why some servers, where compliant before, are now showing non-compliant? How to be certain, which updates are causing trouble
    When I check individual server into compliant sections I see that some updates are showing under * Is Required * I also don’t understand how that server is compliant then There are additional number of updates showing up, which are not part of my software
    group. Where those extra information are coming from. From WSUS ?  
    My final goal is to create monthly Software group> deploy that group to install patched. Next month include that group to a compliance group for only compliance reporting purpose. After every quarter, create one compliance group, combing all three
    months updates. So I can show to everyone that we have complied until x months.
    Before all can happen, I want to understand my compliance report better.
    Thanks in advance.

    Hi,
    However, after new patched have released and I have patched some servers manually, I can now see that I have some servers in to Non-compliant section, which were in compliant section two weeks before.
    Since the issue occur after you applied the latest patches.  Please check your deployment, you can see the detail error there. 
    And please make sure update did intalled successfully on these servers.

  • How to use ActiveX Microsoft Office Excel Chart?

    Does anyone know how to use "ActiveX Microsoft Office Excel Chart" from CVI 7.0? I tried with following code but it did not draw anything.
    HRESULT MakeChartInExcelActivexCtrl(void)
    HRESULT error = 0;
    char szErrMsg[256];
    // Create a new chart with its own worksheet
    // ExcelRpt_ChartNew(workbookHandle,-1,&chartsheetHandle);
    SetWaitCursor (1);
    // Open new Range for Worksheet
    error = CA_VariantSetCString (&MyCellRangeV, EXCEL_ARRAY_OF_CELLS);
    error = Excel_WorksheetRange (ExcelWorksheetHandle, NULL, MyCellRangeV, CA_DEFAULT_VAL, &ExcelRangeHandle);
    CA_VariantClear(&MyCellRangeV);
    if (error<0)
    CA_GetAutomationErrorString(error, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    error = Excel_GetProperty (excelChart, NULL, Excel_WindowActiveChart, CAVT_OBJHANDLE, &ExcelChartHandle);
    if (error<0)
    CA_GetAutomationErrorString(error, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    // Create a XY scatter chart using the data we wrote to the worksheet as its data source.
    error = ExcelRpt_ChartWizard(ExcelChartHandle, ExcelWorksheetHandle, EXCEL_ARRAY_OF_CELLS,
    ExRConst_GalleryXYScatter, ExRConst_Columns, 0, 0, 0, 0, "Filtered Data Chart", "",
    "Weather Data", NULL);
    if (error<0)
    CA_GetAutomationErrorString(error, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    // Change the plot lines to not display markers and smooth out
    // the plot lines. This is one of the plot styles available in Excel.
    error = ExcelRpt_SetChartAttribute (ExcelChartHandle, ER_CH_ATTR_CHART_TYPE, ExRConst_XYScatterSmoothNoMarkers);
    if (error<0)
    CA_GetAutomationErrorString(status, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    Error:
    SetWaitCursor (0);
    CA_VariantClear(&MyCellRangeV);
    CA_VariantClear(&MyVariant);
    ClearObjHandle (&ExcelRangeHandle);
    ClearObjHandle (&ExcelChartHandle);
    ClearObjHandle (&ExcelChartObjHandle);
    ClearObjHandle (&ExcelChartsHandle);
    if (error < 0)
    ReportAppAutomationError (error);
    return 0;
    Attachments:
    excelActivexCtrl.zip ‏4692 KB

    I use C:\Program Files\National Instruments\CVI90\toolslib\activex\excel\excelreport.fp to  build/modify excel report.there is very detail configuration in this function moudule , hope it can help you 
    Sonic
    Diffrent Strokes for Different Folks

  • How can i use microsoft office on the mAC - what app do i purchase? help?!!

    how can i use microsoft office on the mAC - what app do i purchase? help?!!

    What aspect of Microsoft Office? Office is a suite of programs... Word, Excel, Powerpoint, etc.
    You've got several potential options. Libre Office and Open Office (both googleable) are 'open source,' free, downloadable programmes that will open most MS Office programmes and perform many of the functions of MS Office. Might be an idea to have a look round for reviews (etc) first, to see if they sound like they'll match your needs.
    If you're keen to use the App Store, there's Apple's own suite of programmes: Pages, Numbers and Keynote. They're a word processor, spreadsheet programme, and presentation-type programme with similar functions to Word, Excel and Powerpoint respectively. They're pretty good for most functions, and are better integrated with Macs than MS programmes. They're excellent programmes for what they do, and relatively cheap (about £14 each?).
    But if you're heavily reliant on MS, want ALL the bells and whistles of MS, or need to regularly transfer files between MS programmes on other computers and your laptop / desktop computer, then they might not be the best of ideas. Keynote - IME - can have some difficulties in transferring formatting to Powerpoint.
    Finally, there's MS Office Mac 2011. You can't download MS Office from the App Store, but can order the CDs from most online stores (including Apple's own store). It might be worth price hunting - if you're a student, you can usually find the programmes relatively cheap (£38 at the moment on Software4Students, though you'll need to belong to an academic institution / have a UK .ac email address). Apple's own prices on MS software are unlikely to be the best prices out there (though the product will be identical).
    MS Office includes Word, Excel and Powerpoint in the basic version. The slightly more expensive version (which, I think, is the £38 one on S4S) includes Outlook. Which - IME - is far more of a nuisance than Apple's native Mail programme.
    (I should probably add - I'm an academic. I own both Apple's own programmes, and MS Office 2011. I tend to use the MS programmes more, if only because they're the ones that other people tend to use, and transferring between Apple and MS programmes is a minor inconvenience. Pages also lacks Garamond, my favourite work font. The Apple progs are, however, far more beautifully integrated, and would be MORE than good enough for most users...)

  • How do i install microsoft office home and student 2010?

    i need help installing 2010 microsoftoffice on my macbook air

    rosie33 wrote:
    how do i install microsoft office home and student 2010?
    i need help installing 2010 microsoftoffice on my macbook air
    Just to be clear, Office 2010 is for Windows.  Office 2011 is for Mac.  If you actually are trying to install Office 2010, you'll need to have installed Windows on your Mac either through Boot Camp or in a virtual machine.

  • How can I transfer Microsoft office from my old macbook pro to macbook air

    how can I transfer microsoft office from macbook pro to macbook air?

    Assuming you have the 2011 version the easiest way is go to Microsoft's Web site and download Mac Office 2011 onto your MacBook Air and then run it. If you have the 2008 (or the 2011) version on disc you can turn on DVD sharing in the Sharing control panel of your MBP and install it by remotely sharing your MBP's DVD.
    Since Microsoft uses activation when you start Office on the new computer if you use the same activation code as you used on the MBP you'll probably get a message to call Microsoft. Do so and just explain that you got a new computer.

  • HT2602 I am stuck. I can not figure out how to get the microsoft office that is on my (admin) profile dock onto the dock for the other users on my mac. Can anyone help me out?

    I am stuck. I can not figure out how to get the microsoft office that is on my (admin) profile dock onto the dock for the other users on my mac. Can anyone help me out?

    ebony --
    So, when you open your main Applications folder, there is no Office app there?
    It's in your Users>Applications folder?

  • How can i transfer microsoft office to my new macBook air?

    How can I transfer microsoft office from my old MacBook Air to my new one?

    All your data will be transferred if you use Setup Assistant, which starts automatically the first time you boot the new machine. You may need to contact Microsoft to reactivate the product.

  • I use Microsoft Office Professional Plus 2010, when clicking a link in Outlook I always get a General Failure box stating 'The system cannot find the file specified' yet it still goes to the specified page. Any ideas on how to resolve this

    I use Microsoft Office Professional Plus 2010, when clicking a link in Outlook I always get a box stating
    General Failure. The URL was "http:// etc etc".The system cannot find the file specified.
    Yet it still goes to the specified page. Any ideas on how to resolve this

    I am having the exact same problem with Windows 7 Professional. Out of the blue, this issue just started a few months ago when running my monthly Windows Backup where I have used a USB drive for the last 3 years, and never ever had this issue before. Most
    of the solutions listed on the Microsoft websites and answers deal with
    "Restore" functions, not the
    "Backup" itself. I have 3 folders being skipped during the backup.
    So I went and changed the Backup from "let Microsoft choose files, directories, etc" to "Let me choose". I included the files and folders that were being skipped, and ran the "Backup" again, and got the same error message,
    but the files that were skipped the first time were "Backed up" finally. This issue is somehow related to my "Libraries"?
    The 3 backup problems are:
    Backup encountered a problem while backing up file C:\Windows\System32\config\systemprofile\My Audio Books\Audio Book Recordings. Error:(The system cannot find the path specified. (0x80070003))
    Backup encountered a problem while backing up file C:\Windows\System32\config\systemprofile\My Audio Books\Audio Book CD Label-Cover Art. Error:(The system cannot find the path specified. (0x80070003))
    Backup encountered a problem while backing up file C:\Windows\System32\config\systemprofile\My Audio Books\Audio Book MP3 Tag Art. Error:(The system cannot find the path specified. (0x80070003))
    Did a "checkdisk" - no problems. Ran a program to fix registry - no problems. All updates up to date. I guess I could eliminate these folders from the Backup folders in the
    Library, and just choose them under the "Users" locations, and be done with it. But I really want to understand this, and fix it. This is within Windows 7 and may be related to Windows Media Player or
    some recent Windows update.  Thanks.

  • How can I download Microsoft office excel  for my MacBook Pro Mac OSX version for free. Please help me!

    How can I download Microsoft office excel for my MacBook Pro  for free?

    You can't. Excel is a commercial product sold by Microsoft in an Office "package" and not as a stand-alone product.
    If you need to be able to open and save Excel documents on your Mac, however, you could try the free LibreOffice.
    Clinton

  • How to install & use microsoft office (word,excel,powerpoint) in ipad?

    1.How to install & use microsoft office (word, excel, powerpoint) in ipad?
    2. How to delete applications in ipad once it is installed?

    Microsoft  Office won't work on iPad.
    Try Apps like:
    1. Documents To Go
    2. Quick Office Pro HD
    3. Office2 HD

  • How do I add microsoft office to an external hard drive when my start up disc is full?

    I have installed adobe collection and final cut studio on my macbook pro. That being said my start up disk is full and I need microsoft office so I was wanting to know how I could add microsoft office to and external hard drive without deleting the whole adobe collection and reinstalling because I can't put office on my computer. Also I have a 120 gb solid state hard drive so hard drive kit would be expensive to replace and a hassle to redownload programs.

    When you say full, how full do you mean? If you are under 10% of free space, you are headed for a big crash. I hope you have everything backed up.
    You can copy MS office to an external drive but you don't want to run it, or any other program from an external drive, inclduing flash drives. You'd be much better off moving your music, photos, and/or documents to the external and putting your applications that you are using on the MBP hard drive. If you need to use the music, photos or documents, then drag them individually over to the MBP. Adobe CS and MS Ofice should definitely reside on the hard drive, no question about it.

Maybe you are looking for