Hi,
I am updating Bios through the collection, create a collection with query.
query looks like:
select SMS_R_System.NetbiosName, SMS_G_System_COMPUTER_SYSTEM.Model, SMS_G_System_PC_BIOS.SMBIOSBIOSVersion from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId
inner join SMS_G_System_PC_BIOS on SMS_G_System_PC_BIOS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_PC_BIOS.SMBIOSBIOSVersion < "1.18.5" and SMS_G_System_COMPUTER_SYSTEM.Model = "Latitude E7470" or SMS_G_System_COMPUTER_SYSTEM.Model
= "Latitude E7270"
If the Bios is less then 1.18.5 and computer model is E7270 or E7470 get the computers to the collections.
It is working fine BUTafter the bios is updated successfully, Machine is not removing from the collection.
Any idea why the computers are not removing from collection after the bios is up to date (1.18.5)?
Thank you.