Powershell script doesn't work when called from Matlab
조회 수: 7 (최근 30일)
이전 댓글 표시
I have a Powershell script that works when called from the command line (Windows 7) but not when called using the system command within Matlab. The script searches the registry for version information from a specific vendor's software install. When I call it from the command line it generates a file containing the correct version information. When I run it using the system command in Matlab it does generate the file, but it has zero bytes (verified by opening with a hex editor).
What might be causing this?
Here is the script:
Get-ChildItem HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\ -rec -ea SilentlyContinue | ForEach-Object {
$CurrentKey = (Get-ItemProperty -Path $_.PSPath)
if ($CurrentKey -match 'Vendor') {
if ($_.PSChildName -match 'InstallProperties') {
$CurrentKey.DisplayVersion
}
}
} | out-File Vendor.txt -Encoding ascii
Here is how I call it from the command line:
C:\...\Analysis>powershell -ExecutionPolicy RemoteSigned -inputformat none -file VersionFile
.ps1
Here is how I call it from Matlab:
[s,r] = system('powershell -ExecutionPolicy RemoteSigned -inputformat none -file VersionFile.ps1')
Note: the return values are s = 0 and r = ''.
I have tried removing the pipe to out-File. On the command line, I get the version number displayed in the command window. When calling from Matlab, I get the same return values shown above.
I am using Matlab R2013b.
Thank you
댓글 수: 0
답변 (1개)
Rahul Goel
2015년 9월 28일
Les,
The script you mentioned created an output file "Vendor.txt" but did not write any values to it even when ran from powershell. Same is the case when I executed it in MATLAB.
However, when I executed following, it gave me correct status and return values:
>> [s,r] = system('powershell -inputformat none 2*10; echo ''This is a line''')
s =
0
r =
20
This is a line
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!