标题: (已解决)10元帮忙用批处理修改个json值 [打印本页]
作者: zk454138164 时间: 2022-4-17 23:19 标题: (已解决)10元帮忙用批处理修改个json值
本帖最后由 zk454138164 于 2022-4-20 19:53 编辑
为了方便学习请帮忙加下注释
1、C:\Users\administrator\AppData\Local\Google\Chrome\User Data\Default\Preferences
2、修改 Preference 文件中的 exit_type 的值为 Normal, exited_cleanly:true,
3、将Preferences 改为“只读”
目的是为了解决使用代码强制杀死谷歌进程再次打开谷歌,出现弹窗’Chrome 未正常关闭,是否恢复页面’的提示,
https://support.i-search.com.cn/article/1599017872234
文件下载地址
链接: https://pan.baidu.com/s/1ASt-WGv7T0v_7ShvsmKr5Q
提取码: s7sc
作者: zaqmlp 时间: 2022-4-18 05:50
- <# :
- cls&echo off&cd /d "%~dp0"
- powershell -NoProfile -ExecutionPolicy bypass "Get-Content -literal \"%~f0\"|Out-String|Invoke-Expression"
- pause&exit
- #>
- $file="C:\Users\administrator\AppData\Local\Google\Chrome\User Data\Default\Preferences";
- if(-not (test-path -literal $file)){write-host ('"'+$file+'" not found');exit;}
- $f=get-item -literal $file -force;
- $f.Attributes='Archive';
- $enc=New-Object System.Text.UTF8Encoding $False;
- $json=[IO.File]::ReadAllText($f.FullName, $enc);
- $json=$json -replace '(?<="exit_type":)"[^"]*?"','"Normal"';
- $json=$json -replace '(?<="exited_cleanly":)false','true';
- [IO.File]::WriteAllText($f.FullName, $json, $enc);
- $f.Attributes='Readonly','Archive';
复制代码
作者: zaqmlp 时间: 2022-4-20 11:36
题主跑路了吗
作者: zk454138164 时间: 2022-4-20 19:53
回复 2# zaqmlp
已解决,感谢
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |