摘要: python新建虚拟环境: https://www.cnblogs.com/liuqingzheng/p/9508851.html vs code使用虚拟环境: https://www.jianshu.com/p/1189760675d0 vs code 创建虚拟环境并使用 https://blog 阅读全文
posted @ 2020-05-07 14:17 JPinsz 阅读(3503) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/0f2fb935a9a1 https://blog.csdn.net/yh0503/article/details/89851899 阅读全文
posted @ 2020-05-07 13:20 JPinsz 阅读(417) 评论(0) 推荐(0) 编辑
摘要: Mysql 8 windows版mysql8.0安装详解 创建用户 create user 'test1'@'localhost' identified by '‘密码'; flush privileges;刷新权限 其中localhost指本地才可连接 可以将其换成%指任意ip都能连接 也可以指定 阅读全文
posted @ 2020-04-30 11:27 JPinsz 阅读(93) 评论(0) 推荐(0) 编辑
摘要: https://www.piis.cn/zhishi/web1018.asp bat的实例: @echo @echo y | icacls D:\Users /grant[:r] users:(D,WDAC) /T pause 说明:由于修改文件夹或者文件权限,系统都是会询问的,所以命令前面加了“@ 阅读全文
posted @ 2020-04-23 18:14 JPinsz 阅读(1877) 评论(0) 推荐(1) 编辑
摘要: 参考:https://social.technet.microsoft.com/wiki/contents/articles/18661.sharepoint-2010-update-a-permission-level-using-powershell.aspx $sites = get-spsi 阅读全文
posted @ 2020-03-28 15:59 JPinsz 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 尝试了很多办法,几乎都失败了。 有一个办法很简单,但是成功了,记录下: 那就是windows task schedule。 唯一的一个重点就是选中“无论用户在不在线都运行” 其他就没有特殊的,使用powershell 运行那个ps1文件就行 阅读全文
posted @ 2020-03-28 11:28 JPinsz 阅读(3024) 评论(0) 推荐(0) 编辑
摘要: 使用PowerShell 创建标准站点,可以定制其站点模板、站点配额、语言、管理员、Site Collections Group、站点名、站点简介等。。 function New-SiteCollection { param ( $url, $name, $language, $descriptio 阅读全文
posted @ 2020-03-28 11:22 JPinsz 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 参考网址: https://www.sharepointdiary.com/2013/08/add-site-collection-administrator-programmatically.html 阅读全文
posted @ 2020-03-28 11:19 JPinsz 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 找了几天,终于找到一个简单一点的办法,虽然公式有点复杂,让人看不懂,但是效果很好,月份不一样也可以。 I was able to find a product that I used to resolve the "delta" = the difference between dates. The 阅读全文
posted @ 2020-03-10 12:42 JPinsz 阅读(312) 评论(0) 推荐(0) 编辑
摘要: def Email(to, content): urllib3.disable_warnings() creds = Credentials( username='algex\spsaccount', password='Spsaccount' ) config = Configuration(se 阅读全文
posted @ 2020-03-05 16:33 JPinsz 阅读(530) 评论(0) 推荐(0) 编辑