From 69841d5c57a29269e1e1488424eafaf75e08955e Mon Sep 17 00:00:00 2001 From: noahleigh Date: Sun, 19 Feb 2017 20:02:29 -0500 Subject: [PATCH] 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. --- docs/learning-powershell/create-powershell-scripts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learning-powershell/create-powershell-scripts.md b/docs/learning-powershell/create-powershell-scripts.md index a530eba79..f707d6112 100644 --- a/docs/learning-powershell/create-powershell-scripts.md +++ b/docs/learning-powershell/create-powershell-scripts.md @@ -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