在myBase.ini 同级目录创建powershell脚本,执行脚本后自动延长试用期30天.
$file = Get-Content myBase.ini
$file |Where-Object {$_ -notmatch [regex]::escape("App.UserLic.FirstUseOn")}|Set-Content myBase.ini
在myBase.ini 同级目录创建powershell脚本,执行脚本后自动延长试用期30天.
$file = Get-Content myBase.ini
$file |Where-Object {$_ -notmatch [regex]::escape("App.UserLic.FirstUseOn")}|Set-Content myBase.ini