Sono ancora abbastanza nuovo per PowerShell e di recente lo ho letto in un post sul blog sulla creazione e l'utilizzo degli script di PowerShell.
To prevent the execution of malicious scripts, PowerShell enforces an execution policy. By default, the execution policy is set to Restricted, which means that PowerShell scripts will not run. You can determine the current execution policy by using the following cmdlet:
Get-ExecutionPolicy
The execution policies you can use are:
- Restricted - Scripts won’t run.
- RemoteSigned - Scripts created locally will run, but those downloaded from the Internet will not (unless they are digitally signed by a trusted publisher).
- AllSigned - Scripts will run only if they have been signed by a trusted publisher.
- Unrestricted - Scripts will run regardless of where they have come from and whether they are signed.
You can set PowerShell’s execution policy by using the following cmdlet:
Set-ExecutionPolicy <policy name>
Per me, la notazione di " se non sono firmati digitalmente da un editore fidato " nella descrizione di Remote Signed sembra implicare che funzioni come AllSigned. C'è una differenza che mi manca da qualche parte?