码迷,mamicode.com
首页 >  
搜索关键字:powershell core    ( 20546个结果
【O365 PowerShell Script】隔离邮件报告
#O365的隔离报告https://protection.office.com/quarantine可以在365的网址上拿到,但是却无法导出,以下脚本可以将隔离的邮件导出,并使用while循环解决单条命令的1000个数据的限制#O365‘squarantinereporthttps://protection.office.com/quarantinecanbeobtainedonthe36
分类:系统相关   时间:2020-08-03 18:41:58    阅读次数:82
【O365 PowerShell Script】邮箱及OneDrive使用报告
#以下脚本可以导出邮箱及OneDrive目前使用大小#Thebelowpartsneedstobemodified#(需要更改)这里需要根据您的tenant进行更改$adminUPN="tonylin@tonysoft.onmicrosoft.com"#(需要更改)orgName是您onmicrosoft.com域名前面的那个字段,E.g我的是tonysoft.onmicrosoft.com$or
分类:系统相关   时间:2020-08-03 18:41:47    阅读次数:86
【O365 PowerShell Script】安全与合规中心审核日志
#安全与合规中心审核日志,常用于分析用户账号被盗用的情况。可以根据IP地址,账号查询用户AzureAD,ExchangeOnline,Teams,OneDrive,Sharepoint的所有操作日志#Securityandcompliancecenterauditlog,oftenusedtoanalyzethesituationofuseraccounttheft.Youcanqueryallo
分类:系统相关   时间:2020-08-03 18:41:25    阅读次数:79
.net core还原packages包到指定目录
默认.net core项目是将nuget包还原到全局目录中:C:\Users\Administrator\.nuget\packages\ 修改*.csproj文件,加上这行代码,可将nuget包还原到本地 <RestorePackagesPath>..\packages</RestorePacka ...
分类:Web程序   时间:2020-08-03 18:39:40    阅读次数:139
Asp.Net Core 获取配置系统的链接字符串
IConfiguration configuration = new ConfigurationBuilder() .SetBasePath(Environment.CurrentDirectory) .AddJsonFile("AppSettings.json", true, true) .Add ...
分类:Web程序   时间:2020-08-03 17:18:37    阅读次数:149
Asp.net Core启动流程讲解(一)
asp.net core默认项目包括 项目根目录级的Startup.cs、Program.cs、appsettings.json(appsettings.Development.json) launchSettings.json Controllers文件夹下面的ValuesController.c ...
分类:Web程序   时间:2020-08-03 14:53:53    阅读次数:101
windows10 部署 netcore 应用程序
1.运行powershell,在运行窗口中输入:powershell。如下图: 2.安装choco,在打开的powershell窗口中输入:Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.We ...
分类:Windows程序   时间:2020-08-03 12:16:56    阅读次数:95
GORM关联查询
conf appname = beegogorm httpport = 8080 runmode = dev mysqladmin="root" mysqlpwd="123456" mysqldb="itying" models core.go package models import ( "gi ...
分类:其他好文   时间:2020-08-02 16:11:46    阅读次数:85
asp.net core 3.1 自定义中间件实现jwt token认证
话不多讲,也不知道咋讲!直接上代码 认证信息承载对象【user】 /// <summary> /// 认证用户信息 /// </summary> public class DyUser { /// <summary> /// 用户ID /// </summary> public int UserId ...
分类:Web程序   时间:2020-08-01 21:32:30    阅读次数:138
Linux 生成 core dump的方法及设置
A core dump is the recorded state of the working memory of a computer program at a specific time, generally when the program has terminated abnormally ...
分类:系统相关   时间:2020-08-01 21:26:59    阅读次数:103
20546条   上一页 1 ... 63 64 65 66 67 ... 2055 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!