คุณสามารถใช้ได้ wusa.exe ซึ่งเป็นส่วนหนึ่งของ Windows 7 
 ผมต้องการที่จะ  ลบไอคอน Windows 10 Update  จากทาสก์บาร์ดังนั้นฉันจึงเขียนสิ่งนี้  AutoHotkey  สคริปต์ที่เรียกใช้  WUSA . 
wusa := "c:\windows\system32\wusa.exe"
runwait %wusa%  /uninstall /kb:2952664 /norestart
runwait %wusa%  /uninstall /kb:3021917    /norestart
runwait, %wusa%  /uninstall /kb:3035583 /norestart
msgbox, okay, all done!`rDon't forget to -hide- the updates now.
 ดังนั้นคุณสามารถใช้ wusa.exe เพื่อจัดการอัพเดต Windows และติดตั้ง .msu ไฟล์ 
 นี่คือพารามิเตอร์ commandline สำหรับ wusa:  https://support.microsoft.com/en-us/kb/262841 
wusa.exe /uninstall /kb:123456 /quiet /norestart
wusa.exe Windows6.1-KB123456-x86.msu /quiet /norestart
 นี้  หน้ามีการเก็บรวบรวมวิธีอื่น ๆ  เพื่อจัดการการอัปเดตจากบรรทัดคำสั่ง 
 หน้านี้อธิบายวิธีการใช้งาน wusa.exe . 
 หากต้องการดูว่ามีการติดตั้งการปรับปรุงใดบ้าง (ผ่านทางบรรทัดคำสั่ง): 
systeminfo | find ": KB"