2021年4月19日 星期一

Adobe Acrobat Reader DC 的msi檔案

 是這樣的,Adobe Acrobat Reader官方下載的MSI檔案通常都不是最新的(或是久久才會更新一次),中間有著大大小小的MSP更新包,這對於軟體派送管理上多多少少就面臨了一些些的挑戰。

期間也拜讀網路上大神的文章,大部分都隨著Adobe更新之後而失效(明明就是自己失敗)

直到拜讀到一位大神的"製作 Adobe Acrobat Reader DC 的msi檔案並利用GPO派發(2020後版本)"

才又燃起一線希望,果然照著抄可以順利的打包XD,真是非常感謝呢。

事前準備:下載Adobe Reader DC離線版本以及MSP更新檔案(DC Release Notes — Release Notes for Acrobat DC Products)

Adobe官方提供的FTP MSP檔似乎沒有在更新?建議可以透過上方連結下載MSP檔案,

大致的步驟如下(有興趣的鄉民可以參考該位大神的連結)

1. 把下載的MSI檔案用7-zip解壓縮到特定資料夾內(1)。

2. 執行特定資料夾內(1) msiexec /a AcroRead.msi 將檔案安裝到特定資料夾內(2)。

3.  執行特定資料夾內(2)  msiexec /a AcroRead.msi  /p AcroRdrDCUpd2100120149.msp  安裝到特定資料夾(3)

4.將特定資料夾內(2)的AcroRead.msi 複製到特定資料夾(3)。


Reference

製作 Adobe Acrobat Reader DC 的msi檔案並利用GPO派發(2020後版本)

2021年4月15日 星期四

一波多折的WSUS (Win 2012R2)

 事情是這樣的:

環境中的WSUS,隨著時間的增長,不知不覺長成一個回不去的月半子。

只能不停地擴充空間搭配伺服器清理精靈,一直撐著。

終於該來的還是來了,伺服器清理精靈也罷工了(每次在不需要更新的檔案清理都會造成服務連線逾時),接著展開一段漫長的WSUS減月巴之旅,

舉凡網路上的各種偏方(調整DB、IIS、PS....)能嘗試的都試過了,大概就只剩下WSUSUtil RESET還沒做了

就在已經做好打掉重練,原地重建的時候。

皇天不負苦心人,讓我爬到這篇Deleting Updates from WSUS

裡面提到了,還很貼心的附上參考連結

To prevent the next WSUS sites from inheriting unnecessary updates, there's a script to delete the updates that the Server Wizard is not removing after declining

結果該參考連結網誌已經移除了(天啊~~真是晴天霹靂)

不過還好谷歌大神有網頁快取的功能,趕快去爬那篇連結,順利抄作業,就當我信心滿滿以為可以順利解決的時候,還是出現連線逾時.............(當下內心真的是又一次的晴天霹靂)

所幸皇天不負苦心人,在該篇網誌下方有位熱心的鄉民Alexey Petrenko留下了一段珍貴的解決方法


You can stop time out by narrow down list of updates or drivers. I resolved it like this:
[reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") | out-null
$wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($UpdateServer, $UseSSL, $Port);
$updatescope = New-Object Microsoft.UpdateServices.Administration.UpdateScope
# you can choose one of these attributes:
#$updatescope.ApprovedStates = [Microsoft.UpdateServices.Administration.ApprovedStates]::NotApproved
#$updatescope.IncludedInstallationStates = [Microsoft.UpdateServices.Administration.UpdateInstallationStates]::NotInstalled
#$updatescope.FromArrivalDate = [datetime]”03/11/2020"
#$updatescope.ToArrivalDate = [datetime]”04/02/2020"

$updatescope.UpdateTypes = [Microsoft.UpdateServices.Administration.UpdateTypes]::Driver
#$updatescope.UpdateTypes = [Microsoft.UpdateServices.Administration.UpdateTypes]::SoftwareUpdate

Then you can remove your updates
$wsus.getupdates($updatescope) | Where {$_.UpdateClassificationTitle -eq 'Drivers'} | ForEach-Object { $wsus.DeleteUpdate($_.Id.UpdateID); Write-Host $_.Title removed }
Check for classification 'Drivers' second time is abundant in that case but you can leave it. It will work anyway.

加入了限縮條件之後就可以順利的減月巴了,看著慢慢瘦下來的WSUS,真的很欣慰。

希望能幫到一起在WSUS減肥之路上的小夥伴們。


以下為參考範例,自己修改後存成PowerShell後執行(有哪些條件可以參考下方微軟提供的連結)

[reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") | out-null

$wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($UpdateServer, $UseSSL, $Port);

$updatescope = New-Object Microsoft.UpdateServices.Administration.UpdateScope

# you can choose one of these attributes:

$updatescope.ApprovedStates = [Microsoft.UpdateServices.Administration.ApprovedStates]::Declined

#$updatescope.IncludedInstallationStates = [Microsoft.UpdateServices.Administration.UpdateInstallationStates]::NotInstalled

$updatescope.FromArrivalDate = [datetime]”04/01/2021"

$updatescope.ToArrivalDate = [datetime]”04/16/2020"


$updatescope.UpdateTypes = [Microsoft.UpdateServices.Administration.UpdateTypes]::Driver

#$updatescope.UpdateTypes = [Microsoft.UpdateServices.Administration.UpdateTypes]::SoftwareUpdate


#Then you can remove your updates

$wsus.getupdates($updatescope) | Where {$_.UpdateClassificationTitle -eq 'Drivers'} | ForEach-Object { $wsus.DeleteUpdate($_.Id.UpdateID); Write-Host $_.Title removed }


Deploy中的無法直接刪除,此時可以先Decline 在做刪除的動作,作法也很簡單,僅列出差異,詳情可以參考下方第二個連結。

$updatescope.ApprovedStates = [Microsoft.UpdateServices.Administration.ApprovedStates]::Any
$updates=$wsus.getupdates($updatescope) | Where {$_.UpdateClassificationTitle -eq 'Drivers'}
$updates.decline()
$updates| ForEach-Object { $wsus.DeleteUpdate($_.Id.UpdateID); Write-Host $_.Title removed }
)

Reference

Deleting Updates from WSUS

WSUS and PowerShell: Declining and Deleting updates based on keywords

Microsoft.UpdateServices.Administration Namespace

Edge Preview window opens and hangs up

近日有許多人反映 透過Edge 點選列印之後,預覽列印視窗會不停的轉圈圈,導致無法列印,非常困擾。 透過Google大神爬了一下,發現有許多鄉民都有此問題,試過之後都無法解決(有停用DLP、關閉UAC、重設瀏覽器、重設使用者(X)),大概就只差沒重新安裝作業系統了。 還有鄉民說 ...