`

PowerShell基础教程(9)——管理 Windows PowerShell 驱动器

阅读更多

管理 Windows PowerShell 驱动器             <o:p></o:p>

Windows PowerShell 驱动器是一种数据存储位置,您可以像访问 Windows Powershell 中的文件系统驱动器一样对其进行访问。Windows PowerShell 提供程序会为您自动创建某些驱动器,例如,文件系统驱动器(包括 C: D:)、注册表驱动器(HKCU: HKLM:)以及证书驱动器 (Cert:),您还可以创建您自己的 Windows PowerShell 驱动器。这些驱动器十分有用,但它们仅在 Windows PowerShell 中可用。无法使用其他 Windows 工具(例如,Windows 资源管理器或 Cmd.exe)来访问这些驱动器。

Windows PowerShell 使用名词 PSDrive 来表示用于处理 Windows PowerShell 驱动器的命令。若要获得会话中的 Windows PowerShell 驱动器列表,请使用 Get-PSDrive cmdlet

PS> Get-PSDrive<o:p></o:p>

<o:p> </o:p>

Name       Provider      Root                              CurrentLocation<o:p></o:p>

----       --------      ----                                   ---------------<o:p></o:p>

A          FileSystem    A:\<o:p></o:p>

Alias      Alias<o:p></o:p>

C          FileSystem    C:\                                 ...And Settings\me<o:p></o:p>

cert       Certificate   \<o:p></o:p>

D          FileSystem    D:\<o:p></o:p>

Env        Environment<o:p></o:p>

Function   Function<o:p></o:p>

HKCU       Registry      HKEY_CURRENT_USER<o:p></o:p>

HKLM       Registry      HKEY_LOCAL_MACHINE<o:p></o:p>

Variable   Variable<o:p></o:p>

<o:p> </o:p>

尽管根据您系统中驱动器的不同此处所显示的驱动器会有所不同但该列表的外观与上面显示的 Get-PSDrive 命令的输出类似。

文件系统驱动器是 Windows PowerShell 驱动器的子集。可以按 Provider 列中的 FileSystem 条目来标识文件系统驱动器。(Windows PowerShell 中的文件系统驱动器由 Windows PowerShell FileSystem 提供程序支持。)

若要查看 Get-PSDrive cmdlet 的语法,请键入 Get-Command 命令和 Syntax 参数:

PS> Get-Command -Name Get-PSDrive -Syntax<o:p></o:p>

Get-PSDrive [[-Name] <String[]>] [-Scope <String>] [-PSProvider <String[]>] [-V<o:p></o:p>

erbose] [-Debug] [-ErrorAction <ActionPreference>] [-ErrorVariable <String>] [-<o:p></o:p>

OutVariable <String>] [-OutBuffer <Int32>] <o:p></o:p>

<o:p> </o:p>

使用 PSProvider 参数您可以仅显示由特定提供程序支持的 Windows PowerShell 驱动器。例如,若要仅显示由 Windows PowerShell FileSystem 提供程序支持的 Windows PowerShell 驱动器,请键入 Get-PSDrive 命令以及 PSProvider 参数和 FileSystem 值:

PS> Get-PSDrive -PSProvider FileSystem<o:p></o:p>

<o:p> </o:p>

Name       Provider      Root                              CurrentLocation<o:p></o:p>

----       --------      ----                                   ---------------<o:p></o:p>

A          FileSystem    A:\<o:p></o:p>

C          FileSystem    C:\                           ...nd Settings\PowerUser<o:p></o:p>

D          FileSystem    D:\<o:p></o:p>

<o:p> </o:p>

若要查看表示注册表配置单元的 Windows PowerShell 驱动器请使用 PSProvider 参数以便仅显示由 Windows PowerShell Registry 提供程序支持的 Windows PowerShell 驱动器

PS> Get-PSDrive -PSProvider Registry

<o:p> </o:p>

Name       Provider      Root                              CurrentLocation

----       --------      ----                                   ---------------

HKCU       Registry      HKEY_CURRENT_USER

HKLM       Registry      HKEY_LOCAL_MACHINE

还可以将标准的位置 cmdlet 用于 Windows PowerShell 驱动器

PS> Set-Location HKLM:\SOFTWARE

PS> Push-Location .\Microsoft

PS> Get-Location

<o:p> </o:p>

Path

----

HKLM:\SOFTWARE\Microsoft

添加新的 Windows PowerShell 驱动器 (New-PSDrive)<o:p></o:p>

通过使用 New-PSDrive 命令可以添加您自己的 Windows PowerShell 驱动器。若要获取 New-PSDrive 命令的语法,请输入 Get-Command 命令和 Syntax 参数:

PS> Get-Command -Name New-PSDrive -Syntax<o:p></o:p>

New-PSDrive [-Name] <String> [-PSProvider] <String> [-Root] <String> [-Descript<o:p></o:p>

ion <String>] [-Scope <String>] [-Credential <PSCredential>] [-Verbose] [-Debug<o:p></o:p>

] [-ErrorAction <ActionPreference>] [-ErrorVariable <String>] [-OutVariable <St<o:p></o:p>

ring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]<o:p></o:p>

<o:p> </o:p>

若要创建新的 Windows PowerShell 驱动器您必须提供三个参数

·      驱动器的名称可以使用任何有效的 Windows PowerShell 名称<o:p></o:p>

·      PSProvider使用FileSystem表示文件系统位置使用Registry表示注册表位置<o:p></o:p>

·      根目录即新驱动器的根目录路径<o:p></o:p>

例如可以创建名为Office的驱动器该驱动器映射到计算机上包含 Microsoft Office 应用程序的文件夹例如C:\Program Files\Microsoft Office\OFFICE11。若要创建该驱动器,请键入以下命令:

PS> New-PSDrive -Name Office -PSProvider FileSystem -Root "C:\Program Files\Micr<o:p></o:p>

osoft Office\OFFICE11"<o:p></o:p>

<o:p> </o:p>

Name       Provider      Root                              CurrentLocation<o:p></o:p>

----       --------      ----                                   ---------------<o:p></o:p>

Office     FileSystem    C:\Program Files\Microsoft Offic...<o:p></o:p>

<o:p> </o:p>

<!----><!----><!---->请注意 <o:p></o:p>

 通常路径不区分大小写。<o:p></o:p>

<o:p> </o:p>

引用新 Windows PowerShell 驱动器的方式与引用所有 Windows PowerShell 驱动器的方式一样该驱动器的名称后跟冒号 (:)

Windows PowerShell 驱动器可以简化很多任务。例如,Windows 注册表中某些最重要的注册表项具有很长的路径,从而难以对其进行访问和记忆。关键的配置信息驻留在 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion 下。若要查看和更改 CurrentVersion 注册表项中的项目,您可以通过键入以下命令来创建一个根目录位于该注册表项中的 Windows PowerShell 驱动器:

PS> New-PSDrive -Name cvkey -PSProvider Registry -Root HKLM\Software\Microsoft\W

indows\CurrentVersion

<o:p> </o:p>

Name       Provider      Root                              CurrentLocation

----       --------      ----                                   ---------------

cvkey      Registry      HKLM\Software\Microsoft\Windows\...

然后可以像对其他任何驱动器一样将其位置更改为 cvkey: 驱动器

PS> cd cvkey:

或者:

PS> Set-Location cvkey:-PassThru

<o:p> </o:p>

Path

----

cvkey:\

New-PsDrive cmdlet 可以将新驱动器仅添加到当前控制台会话中。如果退出控制台或关闭 Windows PowerShell 窗口,则新驱动器将丢失。若要保存 Windows PowerShell 驱动器,请使用 Export-Console cmdlet 导出当前控制台,然后使用 PowerShell.exe PSConsoleFile 参数将其导入新会话中。或者,将新驱动器添加到您的 Windows PowerShell 配置文件中。

删除 Windows PowerShell 驱动器 (Remove-PSDrive)<o:p></o:p>

通过使用 Remove-PSDrive cmdlet,可以从 Windows PowerShell 中删除驱动器。Remove-PSDrive cmdlet 易于使用;若要删除特定的 Windows PowerShell 驱动器,您只需提供该 Windows PowerShell 驱动器名称。

例如,如果按 New-PSDrive 主题中所示添加了 Office: Windows PowerShell 驱动器,则可以通过键入以下命令来将其删除:

PS> Remove-PSDrive -Name Office<o:p></o:p>

<o:p> </o:p>

若要删除 New-PSDrive 主题中出现的 cvkey: Windows PowerShell 驱动器请使用以下命令

PS> Remove-PSDrive -Name cvkey<o:p></o:p>

<o:p> </o:p>

删除 Windows PowerShell 驱动器十分容易但当您位于该驱动器中时则无法将其删除。例如

PS> cd office:<o:p></o:p>

PS Office:\> remove-psdrive -name office<o:p></o:p>

Remove-PSDrive :无法删除驱动器Office”,因为它在使用中。<o:p></o:p>

所在行:1 字符:15 <o:p></o:p>

+ remove-psdrive  <<<< -name office<o:p></o:p>

<o:p> </o:p>

Windows PowerShell 外部添加和删除驱动器<o:p></o:p>

Windows PowerShell 可检测在 Windows 中添加或删除的文件系统驱动器包括映射的网络驱动器、附加的 USB 驱动器以及通过以下方式删除的驱动器使用 net use 命令或 Windows Script Host (WSH) 脚本中的 WScript.NetworkMapNetworkDrive RemoveNetworkDrive 方法。

 
分享到:
评论

相关推荐

    PowerShell基础教程.doc

    PowerShell的基础教程主要涵盖了它与传统外壳程序的区别、Cmdlet的使用、全新的脚本语言特性和与Windows命令及实用工具的集成。 1. **处理方式的不同**: PowerShell 不像传统的Cmd.exe或其他Unix外壳程序那样处理...

    Windows PowerShell教程合集

    --|PowerShell基础教程 --|WindowsPowerShelluserGuide |powershell 中文教程 --|Windows PowerShell 入门指南.pdf --|Windows PowerShell 入门.pdf --|Windows PowerShell 语言快速参考.rtf |Manning.Windows....

    卸载以前版本的 Windows PowerShell 和 Windows 远程管理

    在 Windows Server 2008 上,需要启动“服务器管理器”,并导航到“功能”,然后单击“卸载功能”,选择“Windows PowerShell”,并按照指示执行卸载。 在卸载 Windows PowerShell 的过程中,可能需要卸载 Windows ...

    精通windows server 2008 命令行与powershell电子书PDF版(第一卷)

    《精通Windows Server 2008命令行与PowerShell》的内容简介回到顶部↑ 本书全面地介绍了windows server 2008命令行、powershell和脚本的使用,包括文件和文件夹的管理、磁盘管理、系统管理、活动目录管理、网络管理...

    WindowsPowerShell v1.0

    Windows PowerShell是微软为Windows操作系统开发的一个强大的命令行脚本环境,它在Windows系统管理中扮演着重要的角色。PowerShell v1.0是该工具的早期版本,发布于2006年,它提供了比传统的CMD命令行更加强大、灵活...

    精通windows server 2008 命令行与powershell 电子书PDF单文件完整版

    本书全面地介绍了Windows Server 2008命令行、PowerShell和脚本的使用,包括文件和文件夹的管理、磁盘管理、系统管理、活动目录管理、网络管理、网络服务管理、系统诊断、故障恢复、系统安全、批处理和配置文件,...

    powershell4.0完整升级包(windows powershell升级补丁系统4.0版本)

    powershell4.0完整升级包(windows powershell升级补丁系统4.0版本) windows08R2 powershell升级到4.0的完整升级包,包含所有需要的依赖包。 注意:只适用于08R2系统; 另外:powershell4.0功能强大 可以批量添加AD域...

    精通windows server 2008 命令行与powershell 电子书PDF版(第四卷)

    《精通Windows Server 2008命令行与PowerShell》的内容简介回到顶部↑ 本书全面地介绍了windows server 2008命令行、powershell和脚本的使用,包括文件和文件夹的管理、磁盘管理、系统管理、活动目录管理、网络管理...

    Windows Powershell和Windows Terminal的区别

    PowerShell(包括Windows PowerShell和PowerShell Core)是微软公司开发的任务自动化和配置管理框架。 UNIX系统一直有强大的壳程序(shell),Windows PowerShell的诞生就是要提供功能相当于UNIX系统的命令行壳程序...

    Windows.PowerShell应用手册.pdf

    这意味着用户可以通过这份手册掌握比基础更深入的PowerShell技术,例如如何使用高级函数、cmdlets(命令元素)、脚本块以及了解如何利用PowerShell来完成系统管理、任务自动化等高级任务。 由于文件中没有实际的可...

    Windows PowerShell 实用教程

    ### Windows PowerShell 实用教程 #### Windows PowerShell 概览 Windows PowerShell 是由微软开发的一款强大的交互式命令行界面和脚本语言环境,专为系统管理和自动化设计。它首次出现在 Windows XP 和 Windows ...

    精通windows server 2008 命令行与powershell电子书PDF版(第三卷)

    《精通Windows Server 2008命令行与PowerShell》的内容简介回到顶部↑ 本书全面地介绍了windows server 2008命令行、powershell和脚本的使用,包括文件和文件夹的管理、磁盘管理、系统管理、活动目录管理、网络管理...

    Windows PowerShell 1.0

    **Windows PowerShell 1.0** 是微软为Windows操作系统推出的一个强大的命令行脚本环境,它在管理和自动化任务方面提供了极大的便利。在安装SQL Server 2008时,Windows PowerShell 1.0作为一项先决条件,是确保SQL ...

    PowerShell脚本:Windows系统管理的瑞士军刀

    在Windows系统管理中,PowerShell脚本扮演着至关重要的角色。它不仅提供了一种强大的自动化工具,还允许管理员执行复杂的任务,提高工作效率,确保操作的一致性和准确性。本文将详细介绍PowerShell脚本在Windows系统...

    经典PowerShell入门教程.docx

    总的来说,PowerShell提供了比传统命令行工具更高效、更面向对象的管理体验,通过其Cmdlet和对象模型,简化了对Windows环境的管理,并且能够与.NET框架无缝集成,极大地提高了IT专业人员的生产力。学习和掌握...

    Windows PowerShell 2.0

    9. **提供WMI和 CIM 支持**:PowerShell 2.0可以直接访问Windows Management Instrumentation (WMI) 和 Common Information Model (CIM),使得管理员可以轻松地查询和修改系统设置。 10. **安全性增强**:...

    精通windows server 2008 命令行与powershell电子书PDF版(第二卷)

    《精通Windows Server 2008命令行与PowerShell》的内容简介回到顶部↑ 本书全面地介绍了windows server 2008命令行、powershell和脚本的使用,包括文件和文件夹的管理、磁盘管理、系统管理、活动目录管理、网络管理...

    PowerShell教程

    4. **远程管理**: 通过WinRM(Windows Remote Management),PowerShell可以远程管理其他计算机,执行跨服务器的任务。 5. **PowerShell Gallery**: 这是微软官方维护的在线资源库,用户可以在这里找到并下载社区...

    PowerShell基础教程

    【PowerShell基础教程】 PowerShell是一种专为管理和自动化Windows操作系统设计的强大脚本语言,自Windows XP/Server 2003起,它逐渐成为Vista、Server 2008及后续版本的标准组件。PowerShell旨在提升系统管理员的...

Global site tag (gtag.js) - Google Analytics