码迷,mamicode.com
首页 >  
搜索关键字:remote powershell    ( 7279个结果
nginx TCP 代理& windows傻瓜式安装
要放在http之前 #tcp_proxy stream { upstream tcp_proxy{ hash $remote_addr consistent; server 192.168.8.56:4809; #需代理的IP+PORT } server { listen 4111; proxy_c ...
分类:Windows程序   时间:2020-06-05 21:22:13    阅读次数:89
在windows中执行某命令,报:因为在此系统中禁止执行脚本
1、问题如下,在新建的python虚拟环境中执行 activate 命令时报错; 2、解决方式; 1)、在powershell中执行 “set-ExecutionPolicy”; 2)、在提示中输入“RemoteSigned” 3)、在提示中输入“Y” 3、再次执行“activate”时,成功了,问 ...
分类:Windows程序   时间:2020-06-04 19:41:46    阅读次数:122
误删 Win10 应用商店应该如何恢复?
Powershell命令: 2、输入命令"Get-AppxPackage -allusers | Select Name, PackageFullName",获取当前系统安装的所有应用。 3、add-appxpackage -register "C:\Program Files\WindowsApp... ...
分类:Windows程序   时间:2020-06-04 19:31:04    阅读次数:133
GIT的方法,重要
git remote 命令用来管理远程仓库 git remote add 添加远程仓库(实质上是添加远程仓库 URL 的别名) git remote add origin https://github.com/xiaohigh/test2.git origin 就是别名(小名) https://gi ...
分类:其他好文   时间:2020-06-04 15:44:39    阅读次数:85
个人使用Git开发的步骤
一、开始工作前的步骤 1、首先在需要查看的项目中右键选择 “Git Bash Here”,弹出命令框。 2、输入“git remote -v”查看项目远程地址,是否是自己的地址。 3、输入“git branch -a”查看远程项目所有分支,红颜色分支代表当前所在分支,其他的所列的就是所有分支了。 4 ...
分类:其他好文   时间:2020-06-04 15:21:01    阅读次数:74
macOS微软远程连接工具
Mac上有没有好用的远程连接工具?remote desktop mac是一款适用于Mac操作系统的远程连接软件,可以帮助您快速连接到基于Windows的计算机,以便使用其程序和文件,访问数据等。配置连接时,Microsoft微软远程连接工具允许您决定应使用的分辨率,颜色质量,全屏模式,是否要全屏启动 ...
分类:系统相关   时间:2020-06-04 10:45:36    阅读次数:105
Powershell 检测设备管理器
Powershell 检查设备管理器 Get-WmiObject -Class Win32_PNPEntity 获取设备信息 Name存在且 PNPClass 为 $Null 的设备为其他设备(Other Devices) Status 为 "Error" 的设备为未正常工作设备(Yellow Ba ...
分类:系统相关   时间:2020-06-03 20:14:07    阅读次数:99
本地项目上传到gitlab
cd project git init git remote add origin http://gitlab.xxx.com/group/project.git (删除本地origin:git remote rm origin) git add . git branch master (删除本地分 ...
分类:Web程序   时间:2020-06-03 10:44:44    阅读次数:79
初次快速使用git
git全局设置 git config --global user.name ‘非池中物’ git cinfig --global user.email '103058 @qq.com' 创建git仓库 在码云创建仓库 在本地创建文件夹 右键打开Git Bush Here 初始化仓库 git init ...
分类:其他好文   时间:2020-06-02 18:50:03    阅读次数:81
React-简单通用的抛物线动画
一个简单通用的 React 抛物线动画demo Usage import { parabola } from "./parabola" ... onAnimate = () => { const config = { ballWrapper: this.$wrapper, //小球的父容器 orig ...
分类:其他好文   时间:2020-06-02 09:19:53    阅读次数:54
7279条   上一页 1 ... 40 41 42 43 44 ... 728 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!