January 10th, 2014

PowerTip: Use PowerShell to Remove a File Share

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to remove SMB file shares.

Hey, Scripting Guy! Question How can I use Windows PowerShell to delete an SMB file share that is no longer used on
          my computer running Windows 8?

Hey, Scripting Guy! Answer Open the Windows PowerShell console with Admin rights, locate the file share, and pipe it to the 
          Remove-SMBShare function (to avoid confirmation messages, set the confirmation level to $false):

Get-SmbShare -Name fso | Remove-SmbShare -Confirm:$false

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.