Differences
This shows you the differences between the selected revisions of the page.
| 2016-12-25 | 2016-12-25 | ||
| no summary (70.195.10.161) (hidden) | no summary (70.195.10.161) (hidden) | ||
| Line 13: | Line 13: | ||
| The ''powershell.exe'' is located in '' | The ''powershell.exe'' is located in '' | ||
| - | "/Device/Internal Storage/My Documents." Typically you run ''powershell.exe'' with ''-File'' argument followed by path to your PowerShell script | + | "Device Storage/My Files> Documents." Typically you run ''powershell.exe'' with ''-File'' argument followed by path to your PowerShell script |
| <code> | <code> | ||
| - | powershell.exe -File /Device/Internal Storage/My Documents | + | powershell.exe -File Device Storage/My Files> Documents |
| </code> | </code> | ||
| - | Note that by default, executing PowerShell scripts is disabled. To override that, lift the restriction by ''[[ps>microsoft.powershell.security/set-executionpolicy|Set-ExecutionPolicy]]'' cmdlet on PowerShell Administator console((Run ''powershell.exe'' as Administrator to get PowerShell console in /Device/Internal Storage/My Documents.)): | + | Note that by default, executing PowerShell scripts is disabled. To override that, lift the restriction by ''[[ps>microsoft.powershell.security/set-executionpolicy|Set-ExecutionPolicy]]'' cmdlet on PowerShell Administator console((Run ''powershell.exe'' as Administrator to get PowerShell console in Device Storage/My Files> Documents.)): |
| <code powershell> | <code powershell> | ||
| Line 28: | Line 28: | ||
| <code> | <code> | ||
| - | powershell.exe -ExecutionPolicy Unrestricted -File My Documents | + | powershell.exe -ExecutionPolicy Unrestricted -File Device Storage/My Files> Documents |
| </code> | </code> | ||