chrisio
Goto Top

Powershell Abfrage Computername, OS, Notebook oder Workstation, Office Version

Hey,

ich würde gerne über eine AD Abfrage eine Clientliste generieren in der der Computername, Notebook oder Workstation und Office Version gelistet sind.

Mein momentaner Ansatz ist eine Powershellabfrage mit Get-ADComputer.
Notebook oder Workstation, OS sowie Office Version sollte man wohl über eine WMI Batterie Abfrage ermitteln können.
Leider habe ich arge Probleme damit das Ganze in ein Script zu bringen.

HILFE!!! face-smile

Gruß,
Chris

Content-ID: 334141

Url: https://administrator.de/forum/powershell-abfrage-computername-os-notebook-oder-workstation-office-version-334141.html

Ausgedruckt am: 15.04.2025 um 11:04 Uhr

Marabunta
Marabunta 05.04.2017 um 12:23:02 Uhr
Goto Top
1
2
3
4
5
$Computername=$env:Computername
$HardwareType=http://2012sg.poshcode.org/5263 #Rückgabe der Funktion anpassen
$WindowsVersion=[System.Environment]::OSVersion.Version
#Office Version
$OfficeVersion=https://github.com/OfficeDev/Office-IT-Pro-Deployment-Scripts/blob/master/Office-ProPlus-Management/Get-OfficeVersion/Get-OfficeVersion.ps1

Je nachdem wie du es ausgegeben haben willst, kannst du es dann in einem Objekt speichern und ausgeben/speichern.
Muss noch was machen und kann das gerade nicht ordentlich fertig schreiben.
colinardo
colinardo 05.04.2017 aktualisiert um 12:42:57 Uhr
Goto Top
Zusammengebaut bspw. so (genügend Berechtigungen auf allen Maschinen vorausgesetzt):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
Import-Module ActiveDirectory

Function Get-OfficeVersion {
    <#
    .Synopsis
    Gets the Office Version installed on the computer
    .DESCRIPTION
    This function will query the local or a remote computer and return the information about Office Products installed on the computer
    .NOTES   
    Name: Get-OfficeVersion
    Version: 1.0.5
    DateCreated: 2015-07-01
    DateUpdated: 2016-07-20
    .LINK
    https://github.com/OfficeDev/Office-IT-Pro-Deployment-Scripts
    .PARAMETER ComputerName
    The computer or list of computers from which to query 
    .PARAMETER ShowAllInstalledProducts
    Will expand the output to include all installed Office products
    .EXAMPLE
    Get-OfficeVersion
    Description:
    Will return the locally installed Office product
    .EXAMPLE
    Get-OfficeVersion -ComputerName client01,client02
    Description:
    Will return the installed Office product on the remote computers
    .EXAMPLE
    Get-OfficeVersion | select *
    Description:
    Will return the locally installed Office product with all of the available properties
    #>
    [CmdletBinding(SupportsShouldProcess=$true)]
    param(
        [Parameter(ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true, Position=0)]
        [string[]]$ComputerName = $env:COMPUTERNAME,
        [switch]$ShowAllInstalledProducts,
        [System.Management.Automation.PSCredential]$Credentials
    )

    begin {
        $HKLM = [UInt32] "0x80000002"  
        $HKCR = [UInt32] "0x80000000"  

        $excelKeyPath = "Excel\DefaultIcon"  
        $wordKeyPath = "Word\DefaultIcon"  
   
        $installKeys = 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall',  
                       'SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall'  

        $officeKeys = 'SOFTWARE\Microsoft\Office',  
                      'SOFTWARE\Wow6432Node\Microsoft\Office'  

        $defaultDisplaySet = 'DisplayName','Version', 'ComputerName'  

        $defaultDisplayPropertySet = New-Object System.Management.Automation.PSPropertySet(‘DefaultDisplayPropertySet’,[string[]]$defaultDisplaySet)
        $PSStandardMembers = [System.Management.Automation.PSMemberInfo[]]@($defaultDisplayPropertySet)
    }

    process {

     $results = new-object PSObject 0;

     foreach ($computer in $ComputerName) {
        if ($Credentials) {
           $os=Get-WMIObject win32_operatingsystem -computername $computer -Credential $Credentials
        } else {
           $os=Get-WMIObject win32_operatingsystem -computername $computer
        }

        $osArchitecture = $os.OSArchitecture

        if ($Credentials) {
           $regProv = Get-Wmiobject -list "StdRegProv" -namespace root\default -computername $computer -Credential $Credentials  
        } else {
           $regProv = Get-Wmiobject -list "StdRegProv" -namespace root\default -computername $computer  
        }

        [System.Collections.ArrayList]$VersionList = New-Object -TypeName System.Collections.ArrayList
        [System.Collections.ArrayList]$PathList = New-Object -TypeName System.Collections.ArrayList
        [System.Collections.ArrayList]$PackageList = New-Object -TypeName System.Collections.ArrayList
        [System.Collections.ArrayList]$ClickToRunPathList = New-Object -TypeName System.Collections.ArrayList
        [System.Collections.ArrayList]$ConfigItemList = New-Object -TypeName  System.Collections.ArrayList
        $ClickToRunList = new-object PSObject 0;

        foreach ($regKey in $officeKeys) {
           $officeVersion = $regProv.EnumKey($HKLM, $regKey)
           foreach ($key in $officeVersion.sNames) {
              if ($key -match "\d{2}\.\d") {  
                if (!$VersionList.Contains($key)) {
                  $AddItem = $VersionList.Add($key)
                }

                $path = join-path $regKey $key

                $configPath = join-path $path "Common\Config"  
                $configItems = $regProv.EnumKey($HKLM, $configPath)
                if ($configItems) {
                   foreach ($configId in $configItems.sNames) {
                     if ($configId) {
                        $Add = $ConfigItemList.Add($configId.ToUpper())
                     }
                   }
                }

                $cltr = New-Object -TypeName PSObject
                $cltr | Add-Member -MemberType NoteProperty -Name InstallPath -Value ""  
                $cltr | Add-Member -MemberType NoteProperty -Name UpdatesEnabled -Value $false
                $cltr | Add-Member -MemberType NoteProperty -Name UpdateUrl -Value ""  
                $cltr | Add-Member -MemberType NoteProperty -Name StreamingFinished -Value $false
                $cltr | Add-Member -MemberType NoteProperty -Name Platform -Value ""  
                $cltr | Add-Member -MemberType NoteProperty -Name ClientCulture -Value ""  
            
                $packagePath = join-path $path "Common\InstalledPackages"  
                $clickToRunPath = join-path $path "ClickToRun\Configuration"  
                $virtualInstallPath = $regProv.GetStringValue($HKLM, $clickToRunPath, "InstallationPath").sValue  

                [string]$officeLangResourcePath = join-path  $path "Common\LanguageResources"  
                $mainLangId = $regProv.GetDWORDValue($HKLM, $officeLangResourcePath, "SKULanguage").uValue  
                if ($mainLangId) {
                    $mainlangCulture = [globalization.cultureinfo]::GetCultures("allCultures") | where {$_.LCID -eq $mainLangId}  
                    if ($mainlangCulture) {
                        $cltr.ClientCulture = $mainlangCulture.Name
                    }
                }

                [string]$officeLangPath = join-path  $path "Common\LanguageResources\InstalledUIs"  
                $langValues = $regProv.EnumValues($HKLM, $officeLangPath);
                if ($langValues) {
                   foreach ($langValue in $langValues) {
                      $langCulture = [globalization.cultureinfo]::GetCultures("allCultures") | where {$_.LCID -eq $langValue}  
                   } 
                }

                if ($virtualInstallPath) {

                } else {
                  $clickToRunPath = join-path $regKey "ClickToRun\Configuration"  
                  $virtualInstallPath = $regProv.GetStringValue($HKLM, $clickToRunPath, "InstallationPath").sValue  
                }

                if ($virtualInstallPath) {
                   if (!$ClickToRunPathList.Contains($virtualInstallPath.ToUpper())) {
                      $AddItem = $ClickToRunPathList.Add($virtualInstallPath.ToUpper())
                   }

                   $cltr.InstallPath = $virtualInstallPath
                   $cltr.StreamingFinished = $regProv.GetStringValue($HKLM, $clickToRunPath, "StreamingFinished").sValue  
                   $cltr.UpdatesEnabled = $regProv.GetStringValue($HKLM, $clickToRunPath, "UpdatesEnabled").sValue  
                   $cltr.UpdateUrl = $regProv.GetStringValue($HKLM, $clickToRunPath, "UpdateUrl").sValue  
                   $cltr.Platform = $regProv.GetStringValue($HKLM, $clickToRunPath, "Platform").sValue  
                   $cltr.ClientCulture = $regProv.GetStringValue($HKLM, $clickToRunPath, "ClientCulture").sValue  
                   $ClickToRunList += $cltr
                }

                $packageItems = $regProv.EnumKey($HKLM, $packagePath)
                $officeItems = $regProv.EnumKey($HKLM, $path)

                foreach ($itemKey in $officeItems.sNames) {
                  $itemPath = join-path $path $itemKey
                  $installRootPath = join-path $itemPath "InstallRoot"  

                  $filePath = $regProv.GetStringValue($HKLM, $installRootPath, "Path").sValue  
                  if (!$PathList.Contains($filePath)) {
                      $AddItem = $PathList.Add($filePath)
                  }
                }

                foreach ($packageGuid in $packageItems.sNames) {
                  $packageItemPath = join-path $packagePath $packageGuid
                  $packageName = $regProv.GetStringValue($HKLM, $packageItemPath, "").sValue  
            
                  if (!$PackageList.Contains($packageName)) {
                    if ($packageName) {
                       $AddItem = $PackageList.Add($packageName.Replace(' ', '').ToLower())  
                    }
                  }
                }

              }
           }
        }

    

        foreach ($regKey in $installKeys) {
            $keyList = new-object System.Collections.ArrayList
            $keys = $regProv.EnumKey($HKLM, $regKey)

            foreach ($key in $keys.sNames) {
               $path = join-path $regKey $key
               $installPath = $regProv.GetStringValue($HKLM, $path, "InstallLocation").sValue  
               if (!($installPath)) { continue }
               if ($installPath.Length -eq 0) { continue }

               $buildType = "64-Bit"  
               if ($osArchitecture -eq "32-bit") {  
                  $buildType = "32-Bit"  
               }

               if ($regKey.ToUpper().Contains("Wow6432Node".ToUpper())) {  
                  $buildType = "32-Bit"  
               }

               if ($key -match "{.{8}-.{4}-.{4}-1000-0000000FF1CE}") {  
                  $buildType = "64-Bit"   
               }

               if ($key -match "{.{8}-.{4}-.{4}-0000-0000000FF1CE}") {  
                  $buildType = "32-Bit"   
               }

               if ($modifyPath) {
                   if ($modifyPath.ToLower().Contains("platform=x86")) {  
                      $buildType = "32-Bit"  
                   }

                   if ($modifyPath.ToLower().Contains("platform=x64")) {  
                      $buildType = "64-Bit"  
                   }
               }

               $primaryOfficeProduct = $false
               $officeProduct = $false
               foreach ($officeInstallPath in $PathList) {
                 if ($officeInstallPath) {
                    $installReg = "^" + $installPath.Replace('\', '\\')  
                    $installReg = $installReg.Replace('(', '\(')  
                    $installReg = $installReg.Replace(')', '\)')  
                    if ($officeInstallPath -match $installReg) { $officeProduct = $true }
                 }
               }

               if (!$officeProduct) { continue };
           
               $name = $regProv.GetStringValue($HKLM, $path, "DisplayName").sValue            

               if ($ConfigItemList.Contains($key.ToUpper()) -and $name.ToUpper().Contains("MICROSOFT OFFICE") -and $name.ToUpper() -notlike "*MUI*" -and $name.ToUpper() -notlike "*VISIO*" -and $name.ToUpper() -notlike "*PROJECT*") {  
                  $primaryOfficeProduct = $true
               }

               $clickToRunComponent = $regProv.GetDWORDValue($HKLM, $path, "ClickToRunComponent").uValue  
               $uninstallString = $regProv.GetStringValue($HKLM, $path, "UninstallString").sValue  
               if (!($clickToRunComponent)) {
                  if ($uninstallString) {
                     if ($uninstallString.Contains("OfficeClickToRun")) {  
                         $clickToRunComponent = $true
                     }
                  }
               }

               $modifyPath = $regProv.GetStringValue($HKLM, $path, "ModifyPath").sValue   
               $version = $regProv.GetStringValue($HKLM, $path, "DisplayVersion").sValue  

               $cltrUpdatedEnabled = $NULL
               $cltrUpdateUrl = $NULL
               $clientCulture = $NULL;

               [string]$clickToRun = $false

               if ($clickToRunComponent) {
                   $clickToRun = $true
                   if ($name.ToUpper().Contains("MICROSOFT OFFICE")) {  
                      $primaryOfficeProduct = $true
                   }

                   foreach ($cltr in $ClickToRunList) {
                     if ($cltr.InstallPath) {
                       if ($cltr.InstallPath.ToUpper() -eq $installPath.ToUpper()) {
                           $cltrUpdatedEnabled = $cltr.UpdatesEnabled
                           $cltrUpdateUrl = $cltr.UpdateUrl
                           if ($cltr.Platform -eq 'x64') {  
                               $buildType = "64-Bit"   
                           }
                           if ($cltr.Platform -eq 'x86') {  
                               $buildType = "32-Bit"   
                           }
                           $clientCulture = $cltr.ClientCulture
                       }
                     }
                   }
               }
           
               if (!$primaryOfficeProduct) {
                  if (!$ShowAllInstalledProducts) {
                      continue
                  }
               }

               $object = New-Object PSObject -Property @{DisplayName = $name; Version = $version; InstallPath = $installPath; ClickToRun = $clickToRun; 
                         Bitness=$buildType; ComputerName=$computer; ClickToRunUpdatesEnabled=$cltrUpdatedEnabled; ClickToRunUpdateUrl=$cltrUpdateUrl;
                         ClientCulture=$clientCulture }
               $object | Add-Member MemberSet PSStandardMembers $PSStandardMembers
               $results += $object

            }
        }

      }

      $results = Get-Unique -InputObject $results 

      return $results;
    }
}

$chassistypes = @{1 = "Other";2 = "Unknown";3 = "Desktop";4 = "Low Profile Desktop";5 = "Pizza Box";6 = "Mini Tower";7 = "Tower";8 = "Portable";9 = "Laptop";10 = "Notebook";11 = "HandHeld";12 = "Docking Station";13 = "All in One";14 = "Sub Notebook";15 = "Space-Saving";16 = "Lunch Box";17 = "Main System Chassis";18 = "Expansion Chassis";19 = "SubChassis";20 = "Bus Expansion Chassis";21 = "Peripheral Chassis";22 = "Storage Chassis";23 = "Rack Mount Chassis";24 = "Sealed-Case PC"}  
Get-ADComputer -Filter * -Properties OperatingSystem,OperatingSystemVersion,DNSHostName | select Name,OperatingSystem,OperatingSystemVersion,@{n='Type';e={(gwmi Win32_SystemEnclosure -ComputerName $_.DNSHostName -EA SilentlyContinue).ChassisTypes | %{$chassistypes[[int]$_]}}},@{n='Office-Version';e={Get-OfficeVersion $_.DNSHostname | select -Expand Version}} | ft -AutoSize  
Grüße Uwe