@@ -166,12 +166,19 @@ steps:
166166 $cpu=Get-WmiObject Win32_Processor;
167167 echo "CPU: $($cpu.Name), $([System.Environment]::ProcessorCount) Cores" | tee "System Info.log" -Append
168168
169- get-wmiobject win32_product |
170- sort -Property Vendor, Name, Version |
171- ft Version, Name, Vendor, InstallState, IdentifyingNumber -AutoSize |
172- Out-File -Width 512 "Preintalled Software.log"
173169
174- $true
170+ # get-wmiobject win32_product |
171+ # sort -Property Vendor, Name, Version |
172+ # ft Version, Name, Vendor, InstallState, IdentifyingNumber -AutoSize |
173+ # Out-File -Width 512 "Preintalled Software.log"
174+ iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/devizer/Universe.SqlServerJam/master/SqlServer-Version-Management/Install-SqlServer-Version-Management.ps1'))
175+ Get-Speedy-Software-Product-List |
176+ sort -Property Vendor, Name, Version, Origin |
177+ ft IdentifyingNumber, Vendor, Name, Version, Origin -AutoSize |
178+ Out-File -Width 2048 "Preintalled Software.log"
179+
180+
181+ # $true
175182 condition: eq(variables['OS'], 'Windows')
176183 displayName: 'About Windows'
177184
0 commit comments