如何在Windows中从命令提示符或powershell更改驱动器号

时间:2015-09-23 18:05:51

标签: windows powershell command-prompt disk drive

我想从命令提示符或powershell将我的计算机磁盘D:\更改为E:\。有什么方法除了' diskpart'?

1 个答案:

答案 0 :(得分:6)

假设当你说'#34;计算机磁盘"你意味着系统/启动盘,这是一个使用PowerShell的解决方案。注意变量。您可以将它们替换为实际的Drive Letters,也可以提前设置它们。

 TypeError: undefined is not a function 

请注意,Get-Partition -DriveLetter $old | Set-Partition -NewDriveLetter $new $old 包含$new字符。因此,在您的特定情况下(从D更改为E),您可以使用以下内容。

:

另请注意,您需要管理员权限。因此,以管理员身份运行PowerShell。