Чомусь я вирішив спробувати Windows 8 на своїй машині розвитку. Поки що так добре, поки я не спробую запустити Powershell, який має деякі налаштування, включаючи витягнення PATH
змін vcvars32.bat
, тому я маю доступ до всіх різних інструментів розробки.
Спочатку скрипт був витягнутий звідси https://stackoverflow.com/questions/138144/whats-in-your-powershell-profile-ps1file з деякими змінами, щоб він міг запускатись в екземплярі Powershell x64, тож він переглянув подобається це:
function Get-Batchfile($file)
{
$theCmd = "`"$file`" & set"
cmd /c $theCmd | Foreach-Object {
$thePath, $theValue = $_.split('=')
Set-Item -path env:$thePath -value $theValue
}
}
function VsVars32($version = "10.0")
{
$theKey = "HKLM:SOFTWARE\Wow6432Node\Microsoft\VisualStudio\" + $version
$theVsKey = get-ItemProperty $theKey
$theVsInstallPath = [System.IO.Path]::GetDirectoryName($theVsKey.InstallDir)
$theVsToolsDir = [System.IO.Path]::GetDirectoryName($theVsInstallPath)
$theVsToolsDir = [System.IO.Path]::Combine($theVsToolsDir, "Tools")
$theBatchFile = [System.IO.Path]::Combine($theVsToolsDir, "vsvars32.bat")
write-host $theBatchFile
Get-Batchfile $theBatchFile
[System.Console]::Title = "Visual Studio " + $version + " Windows Powershell"
}
VsVars32
І він працював чудово в Windows 7. Тепер, під Windows 8, я отримую наступне:
'C:\Program' is not recognized as an internal or external command, operable program or batch file.
Після подальшого огляду виявляється, що щось змінилося в тому, як cmd /c
працює. Оскільки тільки запуск cmd
рядка самостійно, це призводить до цього:
PS> cmd /c "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\vsvars32.bat"
'C:\Program' is not recognized as an internal or external command, operable program or batch file.
Хтось стикався з подібним питанням, і, сподіваємось, вирішенням?
Редагувати:
Як зазначено у відповіді нижче, може виникнути проблема цитування. Я зробив спробу ще до публікації, і це отримав для своєї проблеми:
PS> cmd /c ""C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\vsvars32.bat""
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:28
+ cmd /c ""C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\vsvar ...
+ ~~~
+ CategoryInfo : ObjectNotFound: (x86:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Кілька різних перестановок цитування:
Подвійне загорнуте в одинарні лапки:
PS> echo '"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\vsvars32.bat"'
"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\vsvars32.bat"
PS> cmd /c '"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\vsvars32.bat"'
'C:\Program' is not recognized as an internal or external command,
operable program or batch file.
Подвійні котирування:
PS> echo "`"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\vsvars32.bat`""
"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\vsvars32.bat"
PS> cmd /c "`"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\vsvars32.bat`""
'C:\Program' is not recognized as an internal or external command,
operable program or batch file.
Ще раз: Точний той самий сценарій працював під Windows 7.