Thursday, June 26, 2014

FAQ: Why is the self-service portal so slow? - System Center: Service Manager Engineering Team Blog - Site Home - TechNet Blogs

FAQ: Why is the self-service portal so slow? - System Center: Service Manager Engineering Team Blog - Site Home - TechNet Blogs:

I recently had this issue. I would access the self service portal only to have to wait 3 minutes for it to start. The page above will show you how to fix the slow service portal issue when someone hasn't used the website for a while.

'via Blog this'

If you find this article useful please leave me a comment.

How to get the BIOS version using Powershell

You can use Powerhell to get information about your BIOS.

Get-WmiObject win32_bios

and if you want the actual version

Get-WmiObject win32_bios | Select-Object SMBIOSBIOSVersion


Want to see all the BIOS information available?

Get-WmiObject win32_bios | Select-Object *
and finally the shortest way  I know how to do this.
GWMI Win32_bios | select * 


Source
http://technet.microsoft.com/en-us/library/ee176860.aspx

If you find this article useful please leave me a comment.