Remove-PSDrive - Powershell 1.0 CmdLet
Microsoft Windows PowerShell is a command-line shell and scripting tool based on the Microsoft .NET Framework. It is designed for system administrators, engineers and developers to control and automate the administration of Windows and applications.
More than hundred command-line tools (so called "cmdlets") can be used to perform system administration tasks and Windows Management Instrumentation (WMI). These cmdlets are easy to use, with standard naming conventions and common parameters, and standard tools for piping, sorting, filtering, and formatting data and objects.
Remove-PSDrive
Description Remove a provider/drive from its location Usage Options -name string[] The PowerShell drive name(s), separate multiple names with commas. -literalName string[] The Drive name which will be used exactly as typed. No characters are interpreted as wildcards. If the name includes escape characters, enclose it in single quotation marks. -pSProvider Remove all of the drives exposed by the specified PowerShell provider. e.g. FileSystem, Registry or Certificate. -scope The scope within which to search for the specified PowerShell drive. -force Override restrictions that prevent the command from succeeding, apart from security settings. e.g. -force will override a files read-only attribute, but will not change file permissions. -whatIf Describe what would happen if you executed the command without actually executing the command. -confirm Prompt for confirmation before executing the command. CommonParameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutVariable. Example(s) Remove a PowerShell drive named S: PS C:\>remove-psdrive -name s