[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
楼上正解,就用  -LiteralPath
对于 所有带路径的,不管是相对还是绝对,  所有遇到中括号[] 的路径,都要告诉powershell无需转义,
这个参数没学到这个程度的人不知何意.

这个参数99%该用到的地方,powershell都给相关命令加上了这个参数,但是还有些没带,或许因为powershell还不完善,或许因为开发团队觉得没必要.
脚本是写给人看的,是写给用户看的,而不是写给机子看的
用户能看懂、会修改的脚本,才是好脚本。
写易懂的powershell脚本帮人解决问题,进而让用户学会自渔,吾所愿也

TOP

那么说,我想知道,都哪些命令带有这个参数呢?
或者说
哪些 命令、操作可以,它后面跟者的参数,是更绝对的文件名,而无需转换,转义呢?
  1. GET-COMMAND * -ParameterName LiteralPath
复制代码
即可.
------------------------返回结果如下----------------------------
Function        Get-FileHash                                       Microsoft.PowerShell.Utility
Cmdlet          Add-Content                                        Microsoft.PowerShell.Management
Cmdlet          Add-Type                                           Microsoft.PowerShell.Utility
Cmdlet          Clear-Content                                      Microsoft.PowerShell.Management
Cmdlet          Clear-Item                                         Microsoft.PowerShell.Management
Cmdlet          Clear-ItemProperty                                 Microsoft.PowerShell.Management
Cmdlet          Convert-Path                                       Microsoft.PowerShell.Management
Cmdlet          Copy-Item                                          Microsoft.PowerShell.Management
Cmdlet          Copy-ItemProperty                                  Microsoft.PowerShell.Management
Cmdlet          Export-Alias                                       Microsoft.PowerShell.Utility
Cmdlet          Export-Clixml                                      Microsoft.PowerShell.Utility
Cmdlet          Export-Csv                                         Microsoft.PowerShell.Utility
Cmdlet          Export-FormatData                                  Microsoft.PowerShell.Utility
Cmdlet          Get-ChildItem                                      Microsoft.PowerShell.Management
Cmdlet          Get-Content                                        Microsoft.PowerShell.Management
Cmdlet          Get-Item                                           Microsoft.PowerShell.Management
Cmdlet          Get-ItemProperty                                   Microsoft.PowerShell.Management
Cmdlet          Import-Alias                                       Microsoft.PowerShell.Utility
Cmdlet          Import-Clixml                                      Microsoft.PowerShell.Utility
Cmdlet          Import-Csv                                         Microsoft.PowerShell.Utility
Cmdlet          Invoke-Item                                        Microsoft.PowerShell.Management
Cmdlet          Move-Item                                          Microsoft.PowerShell.Management
Cmdlet          Move-ItemProperty                                  Microsoft.PowerShell.Management
Cmdlet          New-ItemProperty                                   Microsoft.PowerShell.Management
Cmdlet          Out-File                                           Microsoft.PowerShell.Utility
Cmdlet          Push-Location                                      Microsoft.PowerShell.Management
Cmdlet          Remove-Item                                        Microsoft.PowerShell.Management
Cmdlet          Remove-ItemProperty                                Microsoft.PowerShell.Management
Cmdlet          Rename-Item                                        Microsoft.PowerShell.Management
Cmdlet          Rename-ItemProperty                                Microsoft.PowerShell.Management
Cmdlet          Resolve-Path                                       Microsoft.PowerShell.Management
Cmdlet          Save-Help                                          Microsoft.PowerShell.Core
Cmdlet          Select-String                                      Microsoft.PowerShell.Utility
Cmdlet          Select-Xml                                         Microsoft.PowerShell.Utility
Cmdlet          Set-Content                                        Microsoft.PowerShell.Management
Cmdlet          Set-Item                                           Microsoft.PowerShell.Management
Cmdlet          Set-ItemProperty                                   Microsoft.PowerShell.Management
Cmdlet          Set-Location                                       Microsoft.PowerShell.Management
Cmdlet          Split-Path                                         Microsoft.PowerShell.Management
Cmdlet          Start-Job                                          Microsoft.PowerShell.Core
Cmdlet          Tee-Object                                         Microsoft.PowerShell.Utility
Cmdlet          Test-Path                                          Microsoft.PowerShell.Management
Cmdlet          Unblock-File                                       Microsoft.PowerShell.Utility
Cmdlet          Update-Help                                        Microsoft.PowerShell.Core



命令数量=多,powershell才敢说强大.
脚本是写给人看的,是写给用户看的,而不是写给机子看的
用户能看懂、会修改的脚本,才是好脚本。
写易懂的powershell脚本帮人解决问题,进而让用户学会自渔,吾所愿也

TOP

返回列表