In this answer, Sam states that in order to get Windows to trust my Powershell profile for execution, every time that I open a PowerShell shell, I should be able to and click "Properties." At the bottom of the dialogue box click "Unblock"
; when I do so, I don't see any unblock checkbox at all.
I also don't want to just be able to run any old script by setting Set-ExecutionPolicy Unrestricted
. I want to just have the functions in my PowerShell profile loaded automatically when I open a PowerShell prompt on select machines on the network.
Instead when I load it I get the following error:
. : File \\redirected.domain.org\Redirected\yy-xxx\My Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 cannot
be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at
http://go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:3
+ . '\\redirected.domain.org\Redirected\yy-xxx\My Documents\WindowsPowerShell\Microsof ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : SecurityError: (:) [], PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
It seems to be Microsofts way of preventing you from knowing that you're using a computer and not some glorified piece of paper.
Is there a way to have my powershell profile load up by simply opening Powershell without opening myself to other vulnerabilities?