Superfetch is a Windows service that is intended to make your applications launch faster and improve your system respond speed. It does so by pre-loading programs you frequently use into RAM so that they don’t have to be called from the hard drive every time you run them. If this service is affecting your computer performance, […]
How to list Windows 10 Upgrades
Do you need to know when a particular upgrade for windows 10 was done? Open Powershell Open Windows PowerShell and run the following two cmdlets PS > $AllBuilds = $(gci “HKLM:\System\Setup” | ? {$_.Name -match “\Source\s”}) | % { $_ | Select @{n=”UpdateTime”;e={if ($_.Name -match “Updated\son\s(\d{1,2}\/\d{1,2}\/\d{4}\s\d{2}:\d{2}:\d{2}))$”) {[dateTime]::Parse($Matches[1],([Globalization.CultureInfo]::CreateSpecificCulture(‘en-US’)))}}}, @{n=”ReleaseID”;e={$_.GetValue(“ReleaseID”)}},@{n=”Branch”;e={$_.GetValue(“BuildBranch”)}},@{n=”Build”;e={$_.GetValue(“CurrentBuild”)}},@{n=”ProductName”;e={$_.GetValue(“ProductName”)}},@{n=”InstallTime”;e={[datetime]::FromFileTime($_.GetValue(“InstallTime”))}} }; PS > $AllBuilds | Sort UpdateTime […]
We can’t sign into your account Windows 10
The most common reason that cause the “We can’t sign into your account” problem , is the installation of a critical Windows 10 Update. To fix a corrupted profile in Windows 10, 8 & 8.1 Open Command Prompt as Administrator. To do that: At the search box type: command prompt or cmd Right-click at Command Prompt result and select Run As Administrator. […]