常用玩具
1.关机测试
.bat文件的使用如下,建立.bat文件
shutdown /r /c "关机测试"
2 如何不重启电脑刷新环境变量
set path
echo %G:\SSTap-beta%
3.解决不能复制的问题
使用Chrome或者Edge时按F12进入开发者工具,然后点击控制台,在控制台页面输入:
/ 开启右键菜单
document.oncontextmenu = function(){ return true; };
// 开启文字选择
document.onselectstart = function(){ return true; };
// 开启复制
document.oncopy = function(){ return true; };
// 开启剪切
document.oncut = function(){ return true; };
// 开启粘贴
``
![`如下图所示](https://img-blog.csdnimg.cn/20201210120246777.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzQxOTg1NDE0,size_16,color_FFFFFF,t_70#pic_center)
4.如何打包安装Python程序:
命令如下:
pyinstaller -F 文件名.py
若没有安装pyinstaller,则执行如下安装命令进行安装:
pip install pyinstaller