11.6版驅動已解決此問題
遇到相同問題的直接點這裡下載就好了:IAStorDataMgrSvc Restarter
筆記本是HM76芯片組支持RAID,SATA3接口,就裝了英特爾快速存儲服務工具。
無奈開着uT用久之後內存無緣無故少了好多,用性能監視器一看,這貨內存佔用奇大無比,總是會到1G多,噁心死了。
正好裝了VS2012,練習下VB.NET嘛,包裝了一下net命令,如下所示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
Sub Main() Dim mem, premem, totalmem As Long mem = My.Computer.Info.AvailablePhysicalMemory / 1024 / 1024 totalmem = My.Computer.Info.TotalPhysicalMemory / 1024 / 1024 premem = mem Console.WriteLine("當前可用內存 " + premem.ToString + "M/" + totalmem.ToString + "M " + Int((premem / totalmem * 100)).ToString + "%可用") Shell("c:\windows\system32\net.exe stop IAStorDataMgrSvc", , True) Console.Clear() mem = My.Computer.Info.AvailablePhysicalMemory / 1024 / 1024 Console.WriteLine("當前可用內存 " + mem.ToString + "M/" + totalmem.ToString + "M " + Int((premem / totalmem * 100)).ToString + "%可用" + vbCrLf + vbCrLf + "釋放內存 " + (mem - premem).ToString + " M") Shell("c:\windows\system32\net.exe start IAStorDataMgrSvc") Threading.Thread.Sleep(5000) End Sub |
app.manifest中修改
1 |
<requestedExecutionLevel level="requireAdministrator" uiAccess="false"> |
很沒勁的,單純只是想懷念一下VB君罷了