The fileSyncDll.ps1 is not digitally signed. You cannot run this script on the current system.

https://www.opentechguides.com/how-to/article/powershell/105/powershel-security-error.html

Set-ExecutionPolicy

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

Unblocking a File that was downloaded

When the execution policy is RemoteSigned, the files that are downloaded from the internet (or from emails) are blocked to protect your running unsafe scripts. If you trust the contents of the script are safe then you can unblock it to run on your session using the Unblock-File cmdlet

PS C:\> Unblock-File -Path C:\Downloads\script1.ps1

Once you have changed the Execution policy permanently or temporarily for a session or a particular script you can continue to run the script but before you do that make sure the contents of the script does not harm your computer

 

default execute policy

Default

  • Sets the default execution policy.
  • Restricted for Windows clients.
  • RemoteSigned for Windows servers.

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(1274)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2017-11-01 web security
2017-11-01 Making ViewState More Secure
2017-11-01 What is the difference between Web Farm and Web Garden?
2017-11-01 dotnet core test with NUnit
2016-11-01 DevExpress Crack
2016-11-01 GitHub如何在自己的Stars中进行搜索
点击右上角即可分享
微信分享提示