[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[问题求助] 怎样用powershell静默格式化操作

在下面链接看到一个文章, 调用的系统API实现了静默格式化, 我把代码用gpt转成了powershell, 但是不成功
https://blog.csdn.net/dpsying/article/details/18195835
  1. function FormatDisk
  2. {
  3. param (
  4. [char]$Disk
  5. )
  6. $hDll = Add-Type -Name SHFormatDrive -MemberDefinition @"
  7.         [DllImport("Shell32.dll")]
  8.         public static extern int SHFormatDrive(IntPtr hWnd, uint drive, uint fmtID, uint options);
  9. "@
  10. if ($hDll -eq $null)
  11. {
  12. return
  13. }
  14. $drive = [System.Char]::ToLower($Disk) - [System.Char]::ToLower('A')
  15. $result = $hDll::SHFormatDrive([IntPtr]::Zero, $drive, 0, 0)
  16. if ($result -eq 0)
  17. {
  18. Write-Host "格式化成功"
  19. }
  20. elseif ($result -eq 1)
  21. {
  22. Write-Host "用户取消了格式化操作"
  23. }
  24. elseif ($result -eq 2)
  25. {
  26. Write-Host "指定驱动器无法格式化"
  27. }
  28. }
  29. FormatDisk "G"
复制代码

看下面的
https://learn.microsoft.com/zh-c ... _core-shformatdrive

用format命令不行么?

TOP

返回列表