Collections:
Other Resources:
"Remove-PSSession" Cmdlet in Windows PowerShell
What is the "Remove-PSSession" cmdlet in Windows PowerShell?
✍: FYIcenter.com
You can use the "Remove-PSSession" cmdlet to remove one or more existing PSSessions
in Windows PowerShell by using the "-id n" or "-name xxx" to specify the PSSession.
Here is an example of using the "Remove-PSSession" cmdlet:
PS C:\fyicenter> New-PSSession office-server Id Name ComputerName State ConfigurationName Availability -- ---- ------------ ----- ----------------- ------------ 1 Session1 office-server Opened Microsoft.PowerShell Available PS C:\fyicenter> new-pssession mail-server Id Name ComputerName State ConfigurationName Availability -- ---- ------------ ----- ----------------- ------------ 2 Session2 mail-server Opened Microsoft.PowerShell Available PS C:\fyicenter> get-pssession Id Name ComputerName State ConfigurationName Availability -- ---- ------------ ----- ----------------- ------------ 1 Session1 office-server Opened Microsoft.PowerShell Available 2 Session2 mail-server Opened Microsoft.PowerShell Available PS C:\fyicenter> Remove-PSSession -id 2 PS C:\fyicenter> get-pssession Id Name ComputerName State ConfigurationName Availability -- ---- ------------ ----- ----------------- ------------ 1 Session1 office-server Opened Microsoft.PowerShell Available
⇒ Example of PowerShell Session on Remote Computer
⇐ Connect to Existing PSSession in Windows PowerShell
2016-10-13, ∼3332🔥, 0💬
Popular Posts:
What is "Net.Pipe Listener Adapter" in my Windows 7 service list? And how is "Net.Pipe Listener Adap...
How to select system language during the Windows 7 initial set up process? If you bought your comput...
How to download Windows 7 Service Pack 1 (SP1)? Windows 7 Service Pack 1 (SP1) is an update for all ...
How to view services with the System Configuration tool "msconfig.exe" on Windows 7? System Configur...
What is CLI.exe - Process - ATI CLI Application (Command Line Interface)? Process CLI.exe is the ATI...