Powershell n00b здесь. Я хочу смонтировать ISO-образ с помощью PowerShell. Я успешно сделал это вот так:
PS C:\> PowerShell Mount-DiskImage C:\3D_Ultra_Pinball_Thrillride\pinball-disc.iso
Attached : True
BlockSize : 0
DevicePath : \\.\CDROM2
FileSize : 214403072
ImagePath : C:\3D_Ultra_Pinball_Thrillride\pinball-disc.iso
LogicalSectorSize : 2048
Number : 2
Size : 214403072
StorageType : 1
PSComputerName :
Но теперь я хочу сделать тот, у которого есть круглые скобки в имени файла, например:
PS C:\> PowerShell Mount-DiskImage "C:\Program Files (x86)\Warcraft III\warcraft-disc.iso"
x86 : The term 'x86' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:35
+ Mount-DiskImage C:\Program Files (x86)\Warcraft III\warcraft-disc.iso
+ ~~~
+ CategoryInfo : ObjectNotFound: (x86:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Как мне избежать скобок? Обратные кавычки не работают, равно как и цитирование пути в одинарных или двойных кавычках.