约 529,000 个结果
在新选项卡中打开链接
  1. Using Powershell to Determine Your Office Version | Sendent

    This guide provides a PowerShell script to determine whether the installed version of Microsoft Office is 32-bit or 64-bit. This is particularly useful for executing the appropriate installer based …

  2. Detect whether Office is 32bit or 64bit via the registry

    The version (bitness) of Outlook that you choose depends on the edition of the Windows operating system (32-bit or 64-bit) and the edition of Office 2010 (32- or 64-bit) that is installed …

  3. powershell - How to get the bitness of Microsoft Office from

    How is it possible to get the value of the registry storing data on the bitness of the Microsoft office, to be precise, the Outlook. I found the location of the bitness in the registry and tried to get it …

  4. Detect Office Bitness to use in Intune app requirement

    Within here we have the option to use a script to be able to determine if the machine or Office meets the requirements to then have the app installed. So we can look to do something in …

  5. Office Bitness - The Toolkit / General Discussion

    Instead check bitness inside the Installation and Uninstallation sections and start the right setup/msi. Write-Log "Installing 64bit version of MSOffice" . Execute -Process -Path …

  6. Check Outlook Bitness and install application - Programming ...

    Get-ItemProperty returns an object with a property containing the bitness of Outlook, not a string. Try referencing the property and see if you get better results. if( $bitness.Bitness -eq "x86" ){ …

  7. Querying bitness key in registry - PowerShell Help - PowerShell

    2023年11月2日 · I am trying to run PowerShell code that will install a certain software according to the Microsoft office bitness type (32 or 64 bit). The problem is that when the bitness key is …

  8. How to detect Office bitness with MEMCM global condition

    In this post, I’ll describe how to use the script with a MEMCM global condition as a requirement for an application. The script is looking at the Bitness registry key of Outlook. The script will return …

  9. powershell - Is there a way to determine if an exe is 32 or 64 …

    How to Check if a Program (.EXE or .DLL) is 32-bit or 64-bit. All over the web, there are pre-built Powershell scripts for bitness checks that you can use as-is or tweak as needed. PowerShell: …

  10. Identify MS Office Version Architecture with PowerShell

    This guide provides a PowerShell function that can be used to identify the architecture (32-bit or 64-bit) of the installed Microsoft Office version. The function checks the registry to retrieve the …