我在VB.net中使用Power Shell連接到Office 365實例。此工作正常,但運行此服務的服務的內存使用量不斷增加。我正在使用以下代碼啓動和關閉電源shell。close方法等工作不正常。使用PowerShell時發生內存泄漏
Private Function initRunSpace(ByVal user_name As String, ByVal password_user As String) As String
Dim StringBuilder As New StringBuilder
Dim liveIdconnectionUri As String = "https://ps.outlook.com/powershell"
Dim password As New SecureString()
Dim str_password As String = password_user
Dim username As String = user_name
Dim credential As New PSCredential(username, password)
Dim iss As InitialSessionState = Nothing
Dim psSession As New PSCommand()
Dim setVar As New PSCommand()
Dim importSession As New PSCommand()
Try
For Each x As Char In str_password
password.AppendChar(x)
Next
iss = InitialSessionState.CreateDefault
iss.ImportPSModule(New String() {"MSOnline"})
runspace = RunspaceFactory.CreateRunspace(iss)
runspace.Open()
powershell = System.Management.Automation.PowerShell.Create()
powershell.Runspace = runspace
REM connect to exchange server in the cloud
psSession.AddCommand("New-PSSession")
psSession.AddParameter("ConfigurationName", "Microsoft.Exchange")
psSession.AddParameter("ConnectionUri", New Uri(liveIdconnectionUri))
psSession.AddParameter("Credential", credential)
psSession.AddParameter("Authentication", "Basic")
psSession.AddParameter("AllowRedirection")
powershell.Commands = psSession
Dim result = powershell.Invoke()
Dim errors As Collection(Of ErrorRecord) = Nothing
errors = powershell.Streams.Error.ReadAll()
If errors.Count > 0 Then
REM Save the order or action for later execution
For Each obj As Object In errors
If obj IsNot Nothing Then StringBuilder.AppendLine(obj.ToString)
Next
powershell.Stop()
powershell.Dispose()
runspace.Close()
runspace.Dispose()
Return "Import-PSSession:" & StringBuilder.ToString
End If
Catch ex As Exception
Throw ex
Finally
StringBuilder = Nothing
liveIdconnectionUri = Nothing
password = Nothing
str_password = Nothing
username = Nothing
credential = Nothing
iss = Nothing
psSession = Nothing
setVar = Nothing
importSession = Nothing
End Try
Return ""
End Function
Public Sub CloseRunspace()
Dim removesession As New PSCommand()
Try
If powershell IsNot Nothing Then
removesession.Commands.AddScript("Remove-PSSession $sa;Remove-Variable $sa;Remove-Module -Name MSOnline;")
powershell.Commands = removesession
powershell.Runspace = runspace
Dim results As Collection(Of PSObject) = powershell.Invoke()
End If
Catch ex As Exception
Finally
removesession = Nothing
powershell.Stop()
powershell.Dispose()
runspace.Close()
runspace.Dispose()
GC.Collect()
Thread.Sleep(100)
End Try
End Sub
你曾經調用'CloseRunspace()'嗎?我在這段代碼中沒有看到它。如果你有*錯誤,你會處置所有的事情,但如果沒有錯誤,你就不會這樣做。 – alroc
是的,我打電話給它。問題是,即使調用它,它也不會完全釋放內存,每次調用initrunspace()時都會繼續增長。 – agupta