Fixed broken link in create-powershell-scripts.md (#3171)

* Changed broken link to a working blog post

"run-ps" isn't a linkable document, so I changed the "Running PowerShell Scripts Is as Easy as 1-2-3" to link to an external article on Windows IT Pro with the same name.
This commit is contained in:
noahleigh 2017-02-19 20:02:29 -05:00 committed by Sergei Vorobev
parent e10cbff354
commit 69841d5c57

View file

@ -29,7 +29,7 @@ Get-NetIPAddress | Where-Object {$_.AddressFamily -eq 'IPv4'} | ForEach-Object I
```
As before, save the file as .\NetIP.ps1 and execute within a PowerShell environment.
Note: If you are using Windows, make sure you set the PowerShell's execution policy to "RemoteSigned" in this case.
See [Running PowerShell Scripts Is as Easy as 1-2-3](run-ps) for more details.
See [Running PowerShell Scripts Is as Easy as 1-2-3][run-ps] for more details.
```PowerShell
PS C:\> NetIP.ps1