首页
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照片墙
统计
留言
搜索到
2
篇与
的结果
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 点赞
2022-11-08
windows server 2016 standard evaluation标准评估版
windows server 2016 standard evaluation标准评估版 1、命令行窗口输入: DISM /online /Get-CurrentEdition 2、找一个standard版本的productkey DISM /online /Get-TargetEditions -- 标准版 DISM /online /Set-Edition:ServerStandard /ProductKey:WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY /AcceptEula --数据中心版 DISM /online /Set-Edition:ServerDatacenter /ProductKey:CB7KF-BWN84-R7R2Y-793K2-8XDDG /AcceptEula 3、激活2016(上面会显示已激活可省略,下次激活用) 命令行输入: slmgr /skms kms.03k.org slmgr /ato ———————————————— 版权声明:本文为CSDN博主「来一杯Java☕」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/weixin_45095396/article/details/131458846
2022年11月08日
32 阅读
0 评论
66 点赞