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, 2731🔥, 0💬
Popular Posts:
How much does Windows Media Player 11 cost Windows Media Player 11 is a free update to the Windows M...
How to download and install HiJackThis? If you want to download and install HiJackThis to your Windo...
What are wbxtra_*.wbt Temporary Files on my Windows 7 computer? Can I remove them? wbxtra_*.wbt Temp...
What is the "User Access Logging Service (UALSVC)" system service on Windows Server 2012? Can I disa...
What is "Interactive Services Detection" in my Windows 7 service list? And how is "Interactive Servi...