Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,21 @@ Windows IoT already comes with Windows PowerShell which we will use to deploy Po
# change the destination to however you had partitioned it with sufficient
# space for the zip and the unzipped contents
# the path should be local to the device
Copy-Item .\PowerShell-6.1.0-win-arm32.zip -Destination u:\users\administrator\Downloads -ToSession $s
Copy-Item .\PowerShell-<version>-win-<os-arch>.zip -Destination u:\users\administrator\Downloads -ToSession $s
```

3. Connect to the device and expand the archive

```powershell
Enter-PSSession $s
Set-Location u:\users\administrator\downloads
Expand-Archive .\PowerShell-6.1.0-win-arm32.zip
Expand-Archive .\PowerShell-<version>-win-<os-arch>.zip
```

4. Setup remoting to PowerShell Core 6

```powershell
Set-Location .\PowerShell-6.1.0-win-arm32
Set-Location .\PowerShell-<version>-win-<os-arch>
# Be sure to use the -PowerShellHome parameter otherwise it'll try to create a new
# endpoint with Windows PowerShell 5.1
.\Install-PowerShellRemoting.ps1 -PowerShellHome .
Expand All @@ -79,7 +79,7 @@ Windows IoT already comes with Windows PowerShell which we will use to deploy Po

```powershell
# Be sure to use the -Configuration parameter. If you omit it, you will connect to Windows PowerShell 5.1
Enter-PSSession -ComputerName <deviceIp> -Credential Administrator -Configuration powershell.6.1.0
Enter-PSSession -ComputerName <deviceIp> -Credential Administrator -Configuration powershell.<version>
```

## Deploying on Nano Server
Expand Down