When I execute a powershell script file from Command Prompt Window, the file just disappears.  The CMD window does not show any error messages, it just goes to the next line immediately after executing the command.  I restore the file from a backup.  
When I execute the powershell script file from Power Shell Window, the process completes successfully.  
I initially noticed the file had disappeared when I tried to using the Execute Process Task in SSIS, as seen in the posted on SQL Server Central: execute+process+task and MSDN Blog Article: run-powershell-scripts-in-ssis.  
What is causing the file to disappear?
The .PS1 file refreshes an excel file with data connections and saves the file.
Power Shell, commands tested (only the first one fails, the other 3 work)
PS H:\> "PowerShell.exe" "-F C:\SVN\BusinessAnalysts\ExcelTools\DatabaseSSAS_UsageStats.xlsx_ExcelRefresh.ps1"
Unexpected token '-F C:\SVN\BusinessAnalysts\ExcelTools\DatabaseSSAS_UsageStats.xlsx_ExcelRefresh.ps1' in expression
 statement.
At line:1 char:103
+ "PowerShell.exe" "-F C:\SVN\BusinessAnalysts\ExcelTools\DatabaseSSAS_UsageStats.xlsx_ExcelRefresh.ps1" <<<<
    + CategoryInfo          : ParserError: (-F C:\SVN\Busin...xcelRefresh.ps1:String) [], ParentContainsErrorRecordEx
   eption
    + FullyQualifiedErrorId : UnexpectedToken
PS H:\> powershell -noexit C:\SVN\BusinessAnalysts\ExcelTools\DatabaseSSAS_UsageStats.xlsx_ExcelRefresh.ps1
PS H:\> PowerShell.exe -F C:\SVN\BusinessAnalysts\ExcelTools\DatabaseSSAS_UsageStats.xlsx_ExcelRefresh.ps1
PS H:\> PowerShell.exe -File C:\SVN\BusinessAnalysts\ExcelTools\DatabaseSSAS_UsageStats.xlsx_ExcelRefresh.ps1
PS H:\>
Command Prompt, commands tested (file disapears)
PowerShell.exe -File C:\SVN\BusinessAnalysts\ExcelTools\DatabaseSSAS_UsageStats.xlsx_ExcelRefresh.ps1
PowerShell_Exec_FileDisappears.png
