Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
That's correct. I added some RAM to a Dell recently and on re-booting the change was logged in BIOS. I think it did show the date and time. I just hit exit and save and never gave it a second thought.The BIOS on some of the older PCs (I've seen it with Dell and Compaq) have a setting where it would tell you when the case had been removed but I don't remember it keeping a date or a time
'==========================================================================
'
' NAME: InventoryInstalledMemoryLoginScript.vbs
'
' AUTHOR: Mark D. MacLachlan , The Spider's Parlor
' URL: [URL unfurl="true"]http://www.TheSpidersParlor.com[/URL]
' COPYWRITE (c) 2006 All Rights Reserved
' DATE : 4/11/2006
'
' COMMENT:
'
'==========================================================================
On Error Resume Next
Dim WshNetwork, strComputer, objWMIService, colItems, Report, objFSO,ReportFile
Set WshNetwork = CreateObject("Wscript.Network")
Set objFSO = CreateObject("Scripting.FileSystemObject")
strComputer = WshNetwork.ComputerName
Report = strComputer & vbCrLf
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_PhysicalMemory",,48)
For Each objItem in colItems
Report = Report & vbTab & "BankLabel: " & objItem.BankLabel & vbCrLf
Report = Report & vbTab & "Capacity: " & objItem.Capacity/1024\1024 & "MB" & vbCrLf
Next
'Uncomment the next line if you just want to see the report
'wscript.echo Report
'Delete or comment out the rest of the script
' if you just want to see the report
Set ReportFile = oFSO.OpenTextFile("\\<server>\<share>\MemoryInventory.txt", 8, True)
ReportFile.Write Report
ReportFile.close