首页
3D照片墙
统计
留言
Search
1
1.OAuth 的简单理解
115 阅读
2
多个拦截器的执行顺序
105 阅读
3
基于Annotation方式的声明式事务
102 阅读
4
6.设计模式汇总
101 阅读
5
Unity 依赖注入
98 阅读
Java
JDBC
Spring
Spring MVC
SpringBoot
SpringCloud
MybatisPlus
Mybatis
Maven
SpringSecurity
JVM
java注解与反射
Java JUC并发编程
SSM
.NET
IdentityServer4
EF
.Net Core
AbpVNext + DDD
.NET MVC Api
前端
Jquery&JavaScript
uniapp
VUE
Echars
Vue底层原理
Python
Django
软考笔记
软件设计师
1.计算机组成与体系结构
10.面向对象技术
11.UML类图建模
12.面向对象程序设计
13.数据结构
14.算法基础
16.知识产权标准化
17.程序设计语言
2.操作系统
3.数据库
4.数据库设计
5.计算机网络
6.信息安全
7.系统开发基础
8.项目管理
9.数据流图
架构设计
CQRS架构
DDD架构
数据库技术
SQL锁
SqlServer
Oracle 主从备份
Oracle RAC集群
Mysql
云原生/容器技术
kubernetes
Docker
数据结构与算法
常用中间件
Redis
RabbitMQ 消息队列
ElasticSearch
其他
PHP
OAuth 2.0
WebSocket
ArkTs Harmony 开发
运维
Search
标签搜索
排序算法
vue
算法
遍历
docker
线性
数组
dom
synchronized
数据库
xml语言
log4j
bigint
静态函数
静态方法
哈夫曼树
const
冒泡排序
商标设计
命令模式
Bi8bo
累计撰写
304
篇文章
累计收到
6
条评论
首页
栏目
Java
JDBC
Spring
Spring MVC
SpringBoot
SpringCloud
MybatisPlus
Mybatis
Maven
SpringSecurity
JVM
java注解与反射
Java JUC并发编程
SSM
.NET
IdentityServer4
EF
.Net Core
AbpVNext + DDD
.NET MVC Api
前端
Jquery&JavaScript
uniapp
VUE
Echars
Vue底层原理
Python
Django
软考笔记
软件设计师
1.计算机组成与体系结构
10.面向对象技术
11.UML类图建模
12.面向对象程序设计
13.数据结构
14.算法基础
16.知识产权标准化
17.程序设计语言
2.操作系统
3.数据库
4.数据库设计
5.计算机网络
6.信息安全
7.系统开发基础
8.项目管理
9.数据流图
架构设计
CQRS架构
DDD架构
数据库技术
SQL锁
SqlServer
Oracle 主从备份
Oracle RAC集群
Mysql
云原生/容器技术
kubernetes
Docker
数据结构与算法
常用中间件
Redis
RabbitMQ 消息队列
ElasticSearch
其他
PHP
OAuth 2.0
WebSocket
ArkTs Harmony 开发
运维
页面
3D照片墙
统计
留言
搜索到
15
篇与
的结果
2024-03-07
自动重置windows server远程过期
## This Script is intended to be used for Querying remaining time and resetting Terminal Server (RDS) Grace Licensing Period to Default 120 Days. ## Developed by Prakash Kumar (prakash82x@gmail.com) May 28th 2016 ## www.adminthing.blogspot.com ## Disclaimer: Please test this script in your test environment before executing on any production server. ## Author will not be responsible for any misuse/damage caused by using it. #拷贝到C盘根目录 Write-Host -fore Green ====================================================== Write-Host -fore Green '开始自动拷贝到C盘' $scriptPath = $MyInvocation.MyCommand.Path Copy-Item -Path $scriptPath -Destination "C:\" Write-Host -fore Green '拷贝完毕' Write-Host -fore Green '开始注册定时重置任务' $taskName = "RemoteDesktopJob" $task = Get-ScheduledTask -TaskName $taskName -ErrorAction SilentlyContinue if ($task) { Write-Host "计划任务每天重置远程桌面期限存在,已跳过注册。" } else { $action = New-ScheduledTaskAction -Execute "PowerShell.exe" -Argument "-File 'C:\ps.ps1'" $trigger = New-ScheduledTaskTrigger -Daily -At "10:00 PM" $settings = New-ScheduledTaskSettingsSet $principal = New-ScheduledTaskPrincipal -GroupId "BUILTIN\Administrators" -RunLevel Highest Register-ScheduledTask -TaskName "RemoteDesktopJob" -Action $action -Trigger $trigger -Settings $settings -Principal $principal Write-Host -fore Green '定时重置任务注册完成,将在每天自动重置远程桌面激活期限' } $ErrorActionPreference = "SilentlyContinue" ## Display current Status of remaining days from Grace period. $GracePeriod = (Invoke-WmiMethod -PATH (gwmi -namespace root\cimv2\terminalservices -class win32_terminalservicesetting).__PATH -name GetGracePeriodDays).daysleft Write-Host -fore Green 'RDS (Terminal Server)宽限期天数为剩余天数' : $GracePeriod Write-Host -fore Green ====================================================== Write-Host $definition = @" using System; using System.Runtime.InteropServices; namespace Win32Api { public class NtDll { [DllImport("ntdll.dll", EntryPoint="RtlAdjustPrivilege")] public static extern int RtlAdjustPrivilege(ulong Privilege, bool Enable, bool CurrentThread, ref bool Enabled); } } "@ Add-Type -TypeDefinition $definition -PassThru $bEnabled = $false ## Enable SeTakeOwnershipPrivilege $res = [Win32Api.NtDll]::RtlAdjustPrivilege(9, $true, $false, [ref]$bEnabled) ## Take Ownership on the Key $key = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey("SYSTEM\CurrentControlSet\Control\Terminal Server\RCM\GracePeriod", [Microsoft.Win32.RegistryKeyPermissionCheck]::ReadWriteSubTree,[System.Security.AccessControl.RegistryRights]::takeownership) $acl = $key.GetAccessControl() $acl.SetOwner([System.Security.Principal.NTAccount]"Administrators") $key.SetAccessControl($acl) ## Assign Full Controll permissions to Administrators on the key. $rule = New-Object System.Security.AccessControl.RegistryAccessRule ("Administrators","FullControl","Allow") $acl.SetAccessRule($rule) $key.SetAccessControl($acl) ## Finally Delete the key which resets the Grace Period counter to 120 Days. Remove-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\RCM\GracePeriod' write-host Write-host -ForegroundColor Red '重置中请稍等...' Start-Sleep -Seconds 10 ## Display Remaining Days again as final status tlsbln.exe $GracePost = (Invoke-WmiMethod -PATH (gwmi -namespace root\cimv2\terminalservices -class win32_terminalservicesetting).__PATH -name GetGracePeriodDays).daysleft Write-Host -fore Yellow ===================================================== Write-Host -fore Yellow '重置成功,RDS (Terminal Server)宽限期天数为剩余天数' : $GracePost Write-Host -fore Yellow ===================================================== ## Cleanup of Variables Remove-Variable * -ErrorAction SilentlyContinue Exit
2024年03月07日
74 阅读
0 评论
65 点赞
2024-03-01
PHP开启短标签
<? ?> php.ini 改 short_open_tag = on
2024年03月01日
18 阅读
0 评论
62 点赞
2024-01-02
函数传递时需要注意
函数 子组件接收 函数内用this时,父组件需要使用绑定bind(),不然this对象在子组件发生改变
2024年01月02日
63 阅读
0 评论
47 点赞
2023-12-02
自定义组件说明@Component,@Builder,@Styles,@Extend
@Component用于自定义组件 @Builder 用于定义全局公共的构建函数,(写在组件内为局部定义构建函数,**需要把function去掉**) @Styles 定义全局公共样式,(写在组件内为局部定义公共样式,也**需要把function去掉**) 放在组件内时 注意:@Styles只能定义公共组件样式,组**件特有的样式定义需要用@Extend(value:Item)** @Extend 继承模式,定义某个组件特有的样式,比如Text,并且**不能声明在组件内**
2023年12月02日
37 阅读
0 评论
88 点赞
2023-11-10
2.OAuth 详细说明
暂无简介
2023年11月10日
3 阅读
0 评论
3 点赞
1
2
3